|
@@ -434,6 +434,42 @@ public class AMScontroller{
|
|
return amsFeign.getAmsContractTransportPrice1(mapValue, pageNum, pageSize, apiId, con,deleted);
|
|
return amsFeign.getAmsContractTransportPrice1(mapValue, pageNum, pageSize, apiId, con,deleted);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @PostMapping("/deleteSalelPrice")
|
|
|
|
+ @ApiOperation(value = "删除单价")
|
|
|
|
+ public Map<String,Object> deleteSalelPrice(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
|
+ return amsFeign.deleteSalelPrice(mapValue);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @PostMapping("/getCarrierListByPrice")
|
|
|
|
+ @ApiOperation(value = "获取所有承运商")
|
|
|
|
+ public Map<String,Object> getCarrierListByPrice(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
|
+ return amsFeign.getCarrierListByPrice(mapValue);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @PostMapping("/updatePriceValue")
|
|
|
|
+ @ApiOperation(value = "更新单价")
|
|
|
|
+ public Map<String,Object> updatePriceValue(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
|
+ return amsFeign.updatePriceValue(mapValue);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @PostMapping("/updateaddressDeliveryAddress")
|
|
|
|
+ @ApiOperation(value = "更新卸货地址")
|
|
|
|
+ public Map<String,Object> updateaddressDeliveryAddress(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
|
+ return amsFeign.updateaddressDeliveryAddress(mapValue);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @PostMapping("/getCarrierListByAddress")
|
|
|
|
+ @ApiOperation(value = "获取数据")
|
|
|
|
+ public Map<String,Object> getCarrierListByAddress(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
|
+ return amsFeign.getCarrierListByAddress(mapValue);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @PostMapping("/updateCarrierName")
|
|
|
|
+ @ApiOperation(value = "批量更新或者新增承运商")
|
|
|
|
+ public Map<String,Object> updateCarrierName(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
|
|
+ return amsFeign.updateCarrierName(mapValue);
|
|
|
|
+ }
|
|
|
|
+
|
|
@PostMapping("/getAmsContractTransportPriceForDetail")
|
|
@PostMapping("/getAmsContractTransportPriceForDetail")
|
|
@ApiOperation(value = "查询汽运单价信息(计费详单专用)")
|
|
@ApiOperation(value = "查询汽运单价信息(计费详单专用)")
|
|
public Map<String, Object> getAmsContractTransportPriceForDetail(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
public Map<String, Object> getAmsContractTransportPriceForDetail(@RequestBody(required = false) Map<String, Object> mapValue,
|