| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @RequestMapping(value = "/hand/control/complete1") |
| | | @ManagerAuth |
| | | @Transactional |
| | | public R complete(@RequestParam String zpallet){ |
| | | WaitPakin waitPakin = waitPakinService.selectOne(new EntityWrapper<WaitPakin>().eq("zpallet", zpallet)); |
| | | if (Cools.isEmpty(waitPakin)){ |
| | | return R.error("没有找到该托盘码="+zpallet+"对应的组托档"); |
| | | } |
| | | waitPakin.setBeBatch(0);//从1--》0重新下发agv搬运任务 |
| | | waitPakinService.update(waitPakin,new EntityWrapper<WaitPakin>().eq("zpallet", zpallet)); |
| | | return R.ok(); |
| | | } |
| | | |
| | | @RequestMapping(value = "/waitPakin/export/auth") |
| | | @ManagerAuth |
| | | public R export(@RequestBody JSONObject param){ |