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;
|
using WIDESEA_DTO.ERP;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_IInboundService
|
{
|
public interface IPurchaseOrderService : IService<Dt_PurchaseOrder>
|
{
|
/// <summary>
|
/// 接收ERP采购入库信息
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent ReceivePurchaseOrder(ERPPurchaseOrderDTO model);
|
/// <summary>
|
/// 接收ERP采购退货信息
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent ReceivePurchaseReturn(ERPReturnOrderDTO eRPReturnOrderDTO);
|
/// <summary>
|
/// 接收ERP成品销售出库信息
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent ReceiveProDeliveryOrder(ERPProDeliveryDTO eRPProDeliveryDTO);
|
/// <summary>
|
/// 接收ERP非生产领料信息
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent ReceiveOutOrder(ERPPickOutOrderDTO eRPPickOutOrderDTO);
|
/// <summary>
|
/// 接收ERP成品销售退货信息
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent ReceiveProDeliveryBackOrder(ERPProDeliverBackDTO eRPProDeliverBackDTO);
|
}
|
}
|