using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_DTO.ERP; using WIDESEA_IOutboundRepository; using WIDESEA_Model.Models; namespace WIDESEA_IOutboundService { public interface IProOutOrderService : IService { IProOutOrderRepository Repository { get; } /// /// 接收成品出库单 /// /// WebResponseContent ProductDeliveryOrder(ErpProOutOrderDTO outOrderDTO); /// /// 成品出待发货区(平库)+同步ERP出库(已绑定出库单库存) /// /// WebResponseContent OutProductPK(SaveModel saveModel, string ProOutNo); /// /// 成品出待发货区(平库)+同步ERP出库(未绑定出库单库存) /// /// WebResponseContent OutProductNoPK(string[] OutPKCodes, string ProOutNo); WebResponseContent GetProOutOrders(SaveModel saveModel); /// /// 获取明细 /// /// /// WebResponseContent GetOrderDetails(int keyId); } }