| | |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 查询生产工单列表 |
| | | */ |
| | | @GetMapping("/listLoopLine") |
| | | public TableDataInfo listLoopLine(OmProductionOrdeInfo omProductionOrdeInfo) |
| | | { |
| | | startPage(); |
| | | List<OmProductionOrdeInfo> list = omProductionOrdeInfoService.listLoopLine(omProductionOrdeInfo); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | @GetMapping("/checkCarCode") |
| | | public AjaxResult checkCarCode(OmProductionOrdeInfo omProductionOrdeInfo) |
| | | { |
| | |
| | | return success(omProductionOrdeInfoService.selectOmProductionOrdeInfoById(id)); |
| | | } |
| | | |
| | | @PostMapping("/supplementaryReportingWork") |
| | | public AjaxResult supplementaryReportingWork(@RequestBody OmProductionOrdeInfo omProductionOrdeInfo) |
| | | { |
| | | String workReportResultFeedback = RestfulService.getWorkReportResultFeedback(omProductionOrdeInfo.getProductNum(), omProductionOrdeInfo.getStationCode(), omProductionOrdeInfo.getConfirmTime()); |
| | | return AjaxResult.success(workReportResultFeedback); |
| | | } |
| | | |
| | | /** |
| | | * 新增生产工单 |
| | | */ |