|
@@ -1148,11 +1148,12 @@ public class AMScontroller{
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
Integer requirementStatus,
|
|
|
- String orgCode) {
|
|
|
+ String orgCode,
|
|
|
+ String index) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return amsFeign.getTruckRequirementList(mapValue, pageNum, pageSize, apiId,requirementStatus,orgCode);
|
|
|
+ return amsFeign.getTruckRequirementList(mapValue, pageNum, pageSize, apiId,requirementStatus,orgCode,index);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/getPurRequirementList")
|
|
@@ -1886,9 +1887,10 @@ public class AMScontroller{
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
- String con
|
|
|
+ String con,
|
|
|
+ Integer deleted
|
|
|
) {
|
|
|
- return amsFeign.getFuSaleOrderList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ return amsFeign.getFuSaleOrderList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con,new BigDecimal(deleted));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "修改销售订单中的物资")
|
|
@@ -1896,7 +1898,7 @@ public class AMScontroller{
|
|
|
@ApiImplicitParam(name = "map", value = "修改销售订单中的物资", required = false, dataType = "java.util.Map")
|
|
|
})
|
|
|
@PostMapping(value = "/updateAllMaterialInSale")
|
|
|
- public RESTfulResult updateAllMaterialInSale(@RequestBody Map<String, Object> mapValue) {
|
|
|
+ public Map<String,Object> updateAllMaterialInSale(@RequestBody Map<String, Object> mapValue) {
|
|
|
return amsFeign.updateAllMaterialInSale(mapValue);
|
|
|
}
|
|
|
|
|
@@ -1908,4 +1910,26 @@ public class AMScontroller{
|
|
|
public Map<String,Object> deleteSaleOrderSame(@RequestBody Map<String, Object> mapValue) {
|
|
|
return amsFeign.deleteSaleOrderSame(mapValue);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "修改收货地址")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "map", value = "修改收货地址", required = false, dataType = "java.util.Map")
|
|
|
+ })
|
|
|
+ @PostMapping(value = "/updateCarAddress")
|
|
|
+ public Map<String,Object> updateCarAddress(@RequestBody Map<String, Object> mapValue) {
|
|
|
+ return amsFeign.updateCarAddress(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "展示反审批的钢材订单")
|
|
|
+ @PostMapping("/getSteelOrderDeletedList")
|
|
|
+ public Map<String, Object> getSteelOrderDeletedList(@RequestBody(required = false) Map<String,Object> mapValue,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer apiId,
|
|
|
+ String con,
|
|
|
+ String consigneeSsoId
|
|
|
+ ) {
|
|
|
+ return amsFeign.getSteelOrderDeletedList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con,consigneeSsoId);
|
|
|
+ }
|
|
|
+
|
|
|
}
|