From 0f379ab5099aea1a88d2a1cc5170f0f5a54c1389 Mon Sep 17 00:00:00 2001 From: jianghaiqing Date: Tue, 5 Nov 2024 10:57:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=94=B9=E6=89=A3=E8=B4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/SeaExportController.cs | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/ds-wms-service/DS.WMS.OpApi/Controllers/SeaExportController.cs b/ds-wms-service/DS.WMS.OpApi/Controllers/SeaExportController.cs index 9256ce60..b417dcd3 100644 --- a/ds-wms-service/DS.WMS.OpApi/Controllers/SeaExportController.cs +++ b/ds-wms-service/DS.WMS.OpApi/Controllers/SeaExportController.cs @@ -31,16 +31,19 @@ public class SeaExportController : ApiController private readonly ISeaExportService _invokeService; private readonly ISeaExportCommonService _commonService; private readonly ICargooService _cargooService; + private readonly IDJYChargeFeeService _chargeFeeService; /// /// 构造函数 /// /// - public SeaExportController(ISeaExportService invokeService, ISeaExportCommonService commonService, ICargooService cargooService) + public SeaExportController(ISeaExportService invokeService, ISeaExportCommonService commonService, ICargooService cargooService, + IDJYChargeFeeService chargeFeeService) { _invokeService = invokeService; _commonService = commonService; _cargooService = cargooService; + _chargeFeeService = chargeFeeService; } /// @@ -568,4 +571,16 @@ public class SeaExportController : ApiController return res; } + /// + /// 手工补扣费用 + /// + /// 请求详情 + /// + [HttpPost] + [Route("ManualDJYChargeFee")] + public async Task> SendCargoo([FromBody] DJYChargeFeeRequestDto model) + { + return await _chargeFeeService.ChargeFee(model); + } + } \ No newline at end of file