| | |
| | | |
| | | @ApiOperation("可入库的成品查询接口") |
| | | @PostMapping("/getSelectWarehousingList") |
| | | @SaCheckPermission("createProductStock.search") |
| | | public Result getSelectWarehousingList(@RequestBody Map<String,String> map){ |
| | | return Result.success(finishedGoodsInventoryService.getSelectWarehousingApp(map.get("processId"))); |
| | | } |
| | | |
| | | @ApiOperation("成品入库接口") |
| | | @PostMapping("/addSelectWarehousing") |
| | | @SaCheckPermission("createProductStock.add") |
| | | public Result addSelectWarehousing( @RequestBody Map<String,Object> object){ |
| | | return Result.success(finishedGoodsInventoryService.addSelectWarehousing(object)); |
| | | |
| | |
| | | |
| | | @ApiOperation("可发货的成品查询接口") |
| | | @PostMapping("/getSelectDeliveryDetailList") |
| | | @SaCheckPermission("finishedProductOut.search") |
| | | public Result getSelectDeliveryDetailList(){ |
| | | return Result.success(finishedGoodsInventoryService.getSelectDeliveryDetailApp()); |
| | | } |
| | | |
| | | @ApiOperation("成品出库接口") |
| | | @PostMapping("/addDeliveryDetail") |
| | | @SaCheckPermission("finishedProductOut.add") |
| | | public Result addDeliveryDetail( @RequestBody Map<String,Object> object){ |
| | | return Result.success(finishedGoodsInventoryService.addDeliveryDetail(object)); |
| | | } |