|
@@ -1223,8 +1223,9 @@ public class AMScontroller{
|
|
|
Integer pageSize,
|
|
|
Integer orderType,
|
|
|
Integer issueStatus,
|
|
|
- String con) {
|
|
|
- return amsFeign.getSporadicOrdersList(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, orderType, issueStatus, con);
|
|
|
+ String con,
|
|
|
+ Integer dispatchStatus) {
|
|
|
+ return amsFeign.getSporadicOrdersList(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, orderType, issueStatus, con,dispatchStatus);
|
|
|
}
|
|
|
|
|
|
@ApiModelProperty(value = "查看物资详情")
|
|
@@ -1261,6 +1262,12 @@ public class AMScontroller{
|
|
|
return amsFeign.addSporadicOrders(mapValue);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value="零星一车多趟新增订单")
|
|
|
+ @PostMapping("/addSporadicOrderTimes")
|
|
|
+ public Map<String, Object> addSporadicOrderTimes(@RequestBody Map<String,Object> mapValue) {
|
|
|
+ return amsFeign.addSporadicOrderTimes(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value="查询修改渲染")
|
|
|
@PostMapping("/selectSporadicOrder")
|
|
|
public RESTfulResult selectSporadicOrder(@RequestParam Integer sporadicOrderId) {
|