1
heshaofeng
2026-03-25 37454e625df68d40897112b2e8c2e3cf4d7163e3
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
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_DTO.Inbound;
 
namespace WIDESEA_IInboundService
{
    public interface IInboundService : IDependency
    {
        IInboundOrderDetailService InboundOrderDetailService { get; }
 
        IInboundOrderService InbounOrderService { get; }
 
        /// <summary>
        /// 组盘
        /// </summary>
        /// <param name="palletDto"></param>
        /// <returns></returns>
        Task<WebResponseContent> GroupPallet(GroupPalletDto palletDto);
 
 
        /// <summary>
        /// 调拨组盘
        /// </summary>
        /// <param name="palletDto"></param>
        /// <returns></returns>
        Task<WebResponseContent> AllcatedGroupPallet(GroupPalletDto palletDto);
 
        /// <summary>
        /// 盘点组盘
        /// </summary>
        /// <param name="palletDto"></param>
        /// <returns></returns>
        Task<WebResponseContent> StockTakeGroupPallet(GroupPalletDto palletDto);
 
        /// <summary>
        /// 重检组盘
        /// </summary>
        /// <param name="palletDto"></param>
        /// <returns></returns>
        Task<WebResponseContent> ReCheckGroupPallet(GroupPalletDto palletDto);
 
        /// <summary>
        /// 入库分批回传
        /// </summary>
        /// <param name="OrderNo"></param>
        /// <returns></returns>
        WebResponseContent BatchInOrderFeedbackToMes(int id);
 
    }
}