|
|
@ -142,5 +142,14 @@ public class TransactionController { |
|
|
|
return success(ItemConvert.INSTANCE.convertPage(pageResult)); |
|
|
|
} |
|
|
|
|
|
|
|
@PostMapping("/warningSenior") |
|
|
|
@Operation(summary = "高级搜索获得账期日历分页") |
|
|
|
// @PreAuthorize("@ss.hasPermission('wms:item:query')")
|
|
|
|
public CommonResult<PageResult<ItemRespVO>> getItemWarningSenior(@Valid @RequestBody CustomConditions conditions) { |
|
|
|
PageResult<ItemDO> pageResult = itemService.getItemWarningSenior(conditions); |
|
|
|
PageResult<ItemRespVO> result = ItemConvert.INSTANCE.convertPage(pageResult); |
|
|
|
return success(result); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|