非通宇 保税仓入口订单推送;
This commit is contained in:
+8
@@ -199,5 +199,13 @@ public class StockInOrderApi extends BaseController {
|
||||
result.put("detailList", detailList == null ? Collections.emptyList() : detailList);
|
||||
return AjaxResult.success(result);
|
||||
}
|
||||
@ApiOperation("通宇-进口订单推送")
|
||||
@PostMapping("/batchPush")
|
||||
public AjaxResult batchPush(@RequestBody List<Long> idList){
|
||||
if(idList == null || idList.isEmpty()){
|
||||
return AjaxResult.error("没有数据需要推送");
|
||||
}
|
||||
return stockInOrderApplicationService.batchPush(idList);
|
||||
}
|
||||
|
||||
}
|
||||
+8
-1
@@ -464,5 +464,12 @@ public class StockOutOrderApi extends BaseController {
|
||||
fillNoticePrintTitle(result, stockOutOrderDTO);
|
||||
return result;
|
||||
}
|
||||
|
||||
@ApiOperation("通宇-出口订单推送")
|
||||
@PostMapping("/batchPush")
|
||||
public AjaxResult batchPush(@RequestBody List<Long> idList){
|
||||
if(idList == null || idList.isEmpty()){
|
||||
return AjaxResult.error("没有数据需要推送");
|
||||
}
|
||||
return stockOutOrderApplicationService.batchPush(idList);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user