| | |
| | | @RequestMapping("/plate/out/start") |
| | | @ManagerAuth(memo = "出库作业") |
| | | public R fullStoreTakeStart(@RequestBody StockOutParam param) { |
| | | //workService.startupFullTakeStore(param, getUserId()); |
| | | workService.startupFullTakeStore(param, getUserId()); |
| | | return R.ok("出库启动成功"); |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | @RequestMapping("/locDdetl/adjust/start") |
| | | @ManagerAuth(memo = "库存调整") |
| | | @ManagerAuth(memo = "库存调整1") |
| | | public R locDetlAdjustStart(@RequestBody LocDetlAdjustParam param) { |
| | | workService.adjustLocDetl(param, getUserId()); |
| | | return R.ok("库存调整成功"); |
| | |
| | | @RequestMapping("/deal/steNo/empty") |
| | | @ManagerAuth(memo = "清除小车") |
| | | public R dealSteNoEmpty(@RequestParam Integer wrkNo) { |
| | | return wrkMastService.setSteEmpty(wrkNo)?R.ok():R.error(); |
| | | return wrkMastService.setSteEmpty(wrkNo)?R.ok():R.error("清除失败"); |
| | | } |
| | | |
| | | } |