|
@@ -378,11 +378,11 @@ public class BMSController extends BaseRESTfulController {
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
Integer orderType,
|
|
|
- String con) {
|
|
|
+ String carrierSsoId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return bmstruckFeign.getTruckDetailsOrderList(mapValue, pageNum, pageSize, apiId, orderType, con);
|
|
|
+ return bmstruckFeign.getTruckDetailsOrderList(mapValue, pageNum, pageSize, apiId, orderType,carrierSsoId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getTruckResultList")
|
|
@@ -403,12 +403,11 @@ public class BMSController extends BaseRESTfulController {
|
|
|
public RESTfulResult getTruckStatementList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con) {
|
|
|
+ Integer apiId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return bmstruckFeign.getTruckStatementList(mapValue, pageNum, pageSize, apiId, con);
|
|
|
+ return bmstruckFeign.getTruckStatementList(mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getInvoiceList")
|
|
@@ -430,12 +429,11 @@ public class BMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
- Integer statementId,
|
|
|
- String con) {
|
|
|
+ Integer statementId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return bmstruckFeign.getSaleTruckStatementDetailsOrderList(mapValue, pageNum, pageSize, apiId, new BigDecimal(statementId), con);
|
|
|
+ return bmstruckFeign.getSaleTruckStatementDetailsOrderList(mapValue, pageNum, pageSize, apiId, new BigDecimal(statementId));
|
|
|
}
|
|
|
|
|
|
@PostMapping("getUnFinishedTruckDetailsOrderList")
|
|
@@ -445,11 +443,11 @@ public class BMSController extends BaseRESTfulController {
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
Integer orderType,
|
|
|
- String con) {
|
|
|
+ String carrierSsoId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return bmstruckFeign.getUnFinishedTruckDetailsOrderList(mapValue, pageNum, pageSize, apiId, orderType, con);
|
|
|
+ return bmstruckFeign.getUnFinishedTruckDetailsOrderList(mapValue, pageNum, pageSize, apiId, orderType,carrierSsoId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("addBmstruckInvoice")
|
|
@@ -551,4 +549,16 @@ public class BMSController extends BaseRESTfulController {
|
|
|
return bmstruckFeign.update(statementId);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/updateDetailsOrder")
|
|
|
+ @ApiOperation(value = "修改详单")
|
|
|
+ public RESTfulResult updateDetailsOrder(@RequestBody Map<String, Object> mapValue) {
|
|
|
+ return bmstruckFeign.updateDetailsOrder(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/addLossFeeOfCoke")
|
|
|
+ @ApiOperation(value = "增加焦炭途损费")
|
|
|
+ public RESTfulResult addLossFeeOfCoke(@RequestBody Map<String, Object> map) {
|
|
|
+ return bmstruckFeign.addLossFeeOfCoke(map);
|
|
|
+ }
|
|
|
+
|
|
|
}
|