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(string OrderNo);
|
|
}
|
}
|