From 8d341db9d2d5699d527c88c935f0c4ce255a57a4 Mon Sep 17 00:00:00 2001 From: hutongqing <hutongqing@hnkhzn.com> Date: 星期二, 10 十二月 2024 16:38:12 +0800 Subject: [PATCH] 代码提交 --- 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_External/ERPService/ERPInvokeService.cs | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_External/ERPService/ERPInvokeService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_External/ERPService/ERPInvokeService.cs" index 21ba432..48a6530 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_External/ERPService/ERPInvokeService.cs" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_External/ERPService/ERPInvokeService.cs" @@ -5,7 +5,8 @@ using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.Attributes; -using WIDESEA_External.Model; +using WIDESEA_DTO; +using WIDESEA_IInboundService; namespace WIDESEA_External.ERPService { @@ -14,12 +15,10 @@ /// </summary> public class ERPInvokeService : IERPInvokeService { - - public WebResponseContent ReceivePurchaseOrder(PurchaseOrderModel model) + private readonly IInboundOrderService _inboundOrderService; + public ERPInvokeService(IInboundOrderService inboundOrderService) { - return WebResponseContent.Instance.OK(); + _inboundOrderService = inboundOrderService; } - - } } -- Gitblit v1.9.3