From 39d468b76e60c05ffcdf749f7ed1d3c443d542f8 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期四, 30 四月 2026 17:13:05 +0800
Subject: [PATCH] 一堆需要求新增及更改
---
项目代码/WMS/WMSServices/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs"
index 06ef6ec..f253bc0 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs"
@@ -31,14 +31,14 @@
private readonly IBasicService _basicService;
private readonly IInvokeERPService _invokeERPService;
private readonly IInboundService _inboundService;
- private readonly IOutboundService _outboundService;
+ private readonly IProDeliveryOrderService _proDeliveryOrderService;
- public ErpController(IBasicService basicService,IInvokeERPService invokeERPService, IInboundService inboundService, IOutboundService outboundService)
+ public ErpController(IBasicService basicService,IInvokeERPService invokeERPService, IInboundService inboundService, IProDeliveryOrderService proDeliveryOrderService)
{
_basicService = basicService;
_invokeERPService = invokeERPService;
_inboundService = inboundService;
- _outboundService = outboundService;
+ _proDeliveryOrderService = proDeliveryOrderService;
}
/// <summary>
/// 娣诲姞浜屾湡鐗╂枡
@@ -112,7 +112,7 @@
public WebResponseContent ProDeliveryOrder([FromBody] ERPRoot<ERPProDeliveryDTO> eRPRoot)
{
- return _outboundService.ProDeliveryOrderService.ReceiveProDeliveryOrder(eRPRoot.Content);
+ return _proDeliveryOrderService.ReceiveProDeliveryOrder(eRPRoot.Content);
}
/// <summary>
--
Gitblit v1.9.3