| | |
| | | import com.vincent.rsf.server.manager.controller.params.AsnOrderAndItemsParams; |
| | | import com.vincent.rsf.server.manager.entity.excel.AsnOrderTemplate; |
| | | import com.vincent.rsf.server.manager.enums.AsnExceStatus; |
| | | import com.vincent.rsf.server.manager.service.CloudWmsNotifyLogService; |
| | | import com.vincent.rsf.server.manager.service.OutStockItemService; |
| | | import com.vincent.rsf.server.manager.service.OutStockService; |
| | | import com.vincent.rsf.server.system.constant.SerialRuleCode; |
| | |
| | | private OutStockService outStockService; |
| | | @Autowired |
| | | private OutStockItemService outStockItemService; |
| | | @Autowired |
| | | private CloudWmsNotifyLogService cloudWmsNotifyLogService; |
| | | |
| | | @ApiOperation("手动触发云仓回馈(出库通知单,放行暂缓上报)") |
| | | @PostMapping("/outStock/cloudWmsReport/submit") |
| | | @PreAuthorize("hasAuthority('manager:outStock:list')") |
| | | public R submitCloudWmsReportOutbound(@RequestBody(required = false) Map<String, Object> body) { |
| | | String code = body != null && body.get("code") != null ? String.valueOf(body.get("code")).trim() : null; |
| | | return cloudWmsNotifyLogService.manualFlushToNotifyByOrderCode(code, false); |
| | | } |
| | | |
| | | @PreAuthorize("hasAuthority('manager:outStock:list')") |
| | | @PostMapping("/outStock/page") |