From 4bc0e18b94a2bf17c1b7277910d63ef82fbe616a Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期五, 10 一月 2025 09:39:51 +0800
Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/MeiRuiAn/HuaiAn

---
 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs |   44 +++++++++++++++++++++++---------------------
 1 files changed, 23 insertions(+), 21 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs"
index 660d379..98dacb1 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/ERP/ErpController.cs"
@@ -12,10 +12,12 @@
 using WIDESEA_DTO.Basic;
 using WIDESEA_DTO.ERP;
 using WIDESEA_External.ERPService;
+using WIDESEA_External.Model;
 using WIDESEA_IBasicRepository;
 using WIDESEA_IBasicService;
 using WIDESEA_IInboundRepository;
 using WIDESEA_IInboundService;
+using WIDESEA_InboundService;
 using WIDESEA_IOutboundService;
 using WIDESEA_Model.Models;
 using static WIDESEA_DTO.ErpResponseContent;
@@ -29,23 +31,18 @@
     [ApiController]
     public class ErpController : ControllerBase
     {
-        private readonly IPurchaseOrderRepository _purchaseOrderRepository;
-        private readonly IPurchaseOrderService _purchaseOrderService;
-        private readonly ISupplierInfoService _supplierInfoService;
-        private readonly IMaterielInfoService _materielInfoService;
-        private readonly IOutboundOrderService _outboundOrderService;
-        private readonly ICustomerInfoService _customerInfoService;
-        private readonly IUserInfoService _userInfoService;
+        private readonly IBasicService _basicService;
+        private readonly IOutboundService _outboundService;
+        private readonly IInboundService _inboundService;
+        private readonly IInvokeERPService _invokeERPService;
 
-        public ErpController(IPurchaseOrderRepository purchaseOrderRepository, IPurchaseOrderService purchaseOrderService, ISupplierInfoService supplierInfoService, IMaterielInfoService materielInfoService, IOutboundOrderService outboundOrderService,ICustomerInfoService customerInfoService, IUserInfoService userInfoService)
+        public ErpController(IBasicService basicService, IOutboundService outboundService, IInboundService inboundService,
+            IInvokeERPService invokeERPService)
         {
-            _purchaseOrderRepository = purchaseOrderRepository;
-            _purchaseOrderService = purchaseOrderService;
-            _supplierInfoService = supplierInfoService;
-            _materielInfoService = materielInfoService;
-            _outboundOrderService = outboundOrderService;
-            _customerInfoService = customerInfoService;
-            _userInfoService = userInfoService;
+            _basicService = basicService;
+            _outboundService = outboundService;
+            _inboundService = inboundService;
+            _invokeERPService = invokeERPService;
         }
 
         /// <summary>
@@ -56,7 +53,7 @@
         [HttpPost, Route("ReceivePurchaseOrder"), AllowAnonymous, MethodParamsValidate]
         public ErpResponseContent ReceivePurchaseOrder([FromBody] Root<PurchaseOrderModel> model)
         {
-            WebResponseContent content = _purchaseOrderService.ReceivePurchaseOrder(model.Content);
+            WebResponseContent content = _inboundService.PurchaseOrderService.ReceivePurchaseOrder(model.Content);
             if (content.Status) return Instance.OK();
             else return Instance.Error(content.Message);
         }
@@ -69,7 +66,7 @@
         [HttpPost, Route("ReceiveUser"), AllowAnonymous, MethodParamsValidate]
         public ErpResponseContent ReceiveUser([FromBody] Root<UserInfoDTO> model)
         {
-            WebResponseContent content = _userInfoService.ReceiveUser(model.Content);
+            WebResponseContent content = _basicService.UserInfoService.ReceiveUser(model.Content);
             if (content.Status) return Instance.OK();
             else return Instance.Error(content.Message);
         }
@@ -82,7 +79,7 @@
         [HttpPost, Route("ReceiveSupplier"), AllowAnonymous, MethodParamsValidate]
         public ErpResponseContent ReceiveSupplier([FromBody] Root<SupplierDTO> model)
         {
-            WebResponseContent content = _supplierInfoService.ReceiveSupplier(model.Content);
+            WebResponseContent content = _basicService.SupplierInfoService.ReceiveSupplier(model.Content);
             if (content.Status) return Instance.OK();
             else return Instance.Error(content.Message);
         }
@@ -95,7 +92,7 @@
         [HttpPost, Route("ReceiveMaterial"), AllowAnonymous, MethodParamsValidate]
         public ErpResponseContent ReceiveMaterial([FromBody] Root<MaterielInfoDTO> model)
         {
-            WebResponseContent content = _materielInfoService.ReceiveMaterial(model.Content);
+            WebResponseContent content = _basicService.MaterielInfoService.ReceiveMaterial(model.Content);
             if (content.Status) return Instance.OK();
             else return Instance.Error(content.Message);
         }
@@ -108,7 +105,7 @@
         [HttpPost, Route("ReceiveCustomer"), AllowAnonymous, MethodParamsValidate]
         public ErpResponseContent ReceiveCustomer([FromBody] Root<CustomerInfoDTO> model)
         {
-            WebResponseContent content = _customerInfoService.ReceiveCustomer(model.Content);
+            WebResponseContent content = _basicService.CustomerInfoService.ReceiveCustomer(model.Content);
             if (content.Status) return Instance.OK();
             else return Instance.Error(content.Message);
         }
@@ -121,9 +118,14 @@
         [HttpPost, Route("ReceiveOutOrder"), AllowAnonymous, MethodParamsValidate]
         public ErpResponseContent ReceiveOutOrder([FromBody] Root<ErpOutOrderDTO> erpOutOrder)
         {
-            WebResponseContent content = _outboundOrderService.ReceiveOutOrder(erpOutOrder.Content);
+            WebResponseContent content = _outboundService.OutboundOrderService.ReceiveOutOrder(erpOutOrder.Content);
             if (content.Status) return Instance.OK();
             else return Instance.Error(content.Message);
         }
+        [HttpPost, Route("InvokeOutStandardsApi"), AllowAnonymous]
+        public string InvokeOutStandardsApi(ERPIssueModel issueModel)
+        {
+            return _invokeERPService.InvokeOutStandardsApi(issueModel);
+        }
     }
 }

--
Gitblit v1.9.3