1
huangxiaoqiang
2025-12-19 34799689a93e311c22909a9be24a4ac284133db6
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
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="OrderNo"></param>
        /// <returns></returns>
        WebResponseContent BatchInOrderFeedbackToMes(int id);
 
    }
}