| | |
| | | @RequestMapping("/full/store/put/start") |
| | | @ManagerAuth(memo = "全板入库") |
| | | public R fullStorePutStart(@RequestBody FullStoreParam fullStoreParam) { |
| | | workService.startupFullStore(fullStoreParam,getUserId()); |
| | | workService.startupFullPutStore(fullStoreParam,getUserId()); |
| | | return R.ok("入库成功"); |
| | | } |
| | | |
| | |
| | | @ManagerAuth(memo = "手动处理工作档") |
| | | public R handControlWrkMast(@RequestParam String workNo, |
| | | @RequestParam Integer type){ |
| | | |
| | | if (type == 1) { |
| | | workService.completeWrkMast(workNo, getUserId()); |
| | | } else if (type == 2) { |
| | | workService.cancelWrkMast(workNo, getUserId()); |
| | | } |
| | | return R.ok(); |
| | | } |
| | | |