| | |
| | | public Result getSelectPrint( @RequestBody Map<String, Object> object){ |
| | | return Result.seccess(finishedGoodsInventoryService.getSelectPrintSv(object)); |
| | | } |
| | | |
| | | /*装箱打印查询*/ |
| | | @ApiOperation("装箱打印内容查询接口") |
| | | @SaCheckPermission("storageRecordPint.search") |
| | | @PostMapping("/getSelectPrints") |
| | | public Result getSelectPrints( @RequestBody Map<String, Object> object){ |
| | | return Result.seccess(finishedGoodsInventoryService.getSelectPrintSvs(object)); |
| | | } |
| | | /*装箱打印查询*/ |
| | | @ApiOperation("库存装箱打印内容查询接口") |
| | | @SaCheckPermission("createProductStock.search") |
| | | @PostMapping("/getInventoryPrints") |
| | | public Result getInventoryPrints( @RequestBody List<FinishedGoodsInventory> finishedGoodsInventories){ |
| | | return Result.seccess(finishedGoodsInventoryService.getInventoryPrints(finishedGoodsInventories)); |
| | | } |
| | | |
| | | @ApiOperation("成品装箱调架") |
| | | @SaCheckPermission("createProductStock.add") |
| | | @PostMapping("/changeRack/{user}") |
| | | public Result changeRack( @RequestBody FinishedGoodsInventory finishedGoodsInventory,@PathVariable String user){ |
| | | return Result.seccess(finishedGoodsInventoryService.changeRack(finishedGoodsInventory,user)); |
| | | |
| | | } |
| | | } |