This commit is contained in:
linfso 2024-12-22 22:00:54 +08:00
parent 0d05d9e06a
commit 6a9fe978e7

View File

@ -155,6 +155,21 @@ public class Oms2cWaybillController extends BaseController
}
@Log(title = "计算体积重量", businessType = BusinessType.OTHER)
@PostMapping(value = "/calcVolumeWeight")
public AjaxResult calcVolumeWeight(@RequestBody WaybillOrder waybillOrder)
{
return this.iRpcWaybillSvc.calcVolumeWeight(waybillOrder);
}
@Log(title = "计算结算重量", businessType = BusinessType.OTHER)
@PostMapping(value = "/calcSetteldWeight")
public AjaxResult calcSetteldWeight(@RequestBody WaybillOrder waybillOrder)
{
return this.iRpcWaybillSvc.calcSetteldWeight(waybillOrder);
}
@GetMapping("/list")
public TableDataInfo list(EmisWaybill emisWaybill)