|
@@ -114,6 +114,14 @@ public class BMSController extends BaseRESTfulController {
|
|
|
return bmsshipFeign.deletePortHandlingFeeSecond(feeId);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @PostMapping("addwaterStatement")
|
|
|
+ @ApiOperation(value = "修改港口装卸费信息")
|
|
|
+ Map<String,Object> addwaterStatement(@RequestBody Map<String, Object> map) {
|
|
|
+ return bmsshipFeign.addwaterStatement(map);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@PostMapping("getUncomplateDetailsOrderList")
|
|
|
@ApiOperation(value = "展示未生成账单的详单信息")
|
|
|
public RESTfulResult getUncomplateDetailsOrderList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
@@ -718,8 +726,6 @@ public class BMSController extends BaseRESTfulController {
|
|
|
return bmsshipFeign.getTruckDetailsByBatch(batchId);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* 根据批次查询装船作业
|
|
|
* @param
|