| | |
| | | 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> |
| | | /// 娣诲姞浜屾湡鐗╂枡 |
| | |
| | | |
| | | public WebResponseContent ProDeliveryOrder([FromBody] ERPRoot<ERPProDeliveryDTO> eRPRoot) |
| | | { |
| | | return _outboundService.ProDeliveryOrderService.ReceiveProDeliveryOrder(eRPRoot.Content); |
| | | return _proDeliveryOrderService.ReceiveProDeliveryOrder(eRPRoot.Content); |
| | | } |
| | | |
| | | /// <summary> |