| | |
| | | import com.core.common.R; |
| | | import com.zy.asrs.entity.AgvLocDetl; |
| | | import com.zy.asrs.entity.AgvLocMast; |
| | | import com.zy.asrs.entity.param.EmptyPlateOutParam; |
| | | import com.zy.asrs.entity.param.StockOutParam; |
| | | import com.zy.asrs.service.AgvBasDevpService; |
| | | import com.zy.asrs.service.AgvLocDetlService; |
| | |
| | | return R.ok().add(agvBasDevpService.getAvailableEmptyInSite()); |
| | | } |
| | | |
| | | @RequestMapping("/empty/plate/in/start") |
| | | @ManagerAuth(memo = "空板入库") |
| | | public R emptyPlateInStart(@RequestParam String sourceStaNo) { |
| | | return R.ok("入库启动成功").add(agvWorkService.emptyPlateIn(sourceStaNo, getUserId())); |
| | | } |
| | | // @RequestMapping("/empty/plate/in/start") |
| | | // @ManagerAuth(memo = "空板入库") |
| | | // public R emptyPlateInStart(@RequestParam String sourceStaNo, String containerCode) { |
| | | // return R.ok("入库启动成功").add(agvWorkService.emptyPlateIn(sourceStaNo,containerCode,getUserId())); |
| | | // } |
| | | |
| | | @RequestMapping("/empty/plate/out/start") |
| | | @ManagerAuth(memo = "空板出库") |
| | | public R emptyPlateOutStart(EmptyPlateOutParam param) { |
| | | agvWorkService.emptyPlateOut(param, getUserId()); |
| | | return R.ok("出库启动成功"); |
| | | } |
| | | // @RequestMapping("/empty/plate/out/start") |
| | | // @ManagerAuth(memo = "空板出库") |
| | | // public R emptyPlateOutStart(EmptyPlateOutParam param) { |
| | | // agvWorkService.emptyPlateOut(param, getUserId()); |
| | | // return R.ok("出库启动成功"); |
| | | // } |
| | | |
| | | private <T> void convert(Map<String, Object> map, EntityWrapper<T> wrapper){ |
| | | for (Map.Entry<String, Object> entry : map.entrySet()){ |