wangxinhui
4 天以前 a0a0df2e824b6fe7e5a3c0afce78127fecf84fc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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);
    }
}