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; }
///
/// 组盘
///
///
///
Task GroupPallet(GroupPalletDto palletDto);
///
/// 调拨组盘
///
///
///
Task AllcatedGroupPallet(GroupPalletDto palletDto);
///
/// 盘点组盘
///
///
///
Task StockTakeGroupPallet(GroupPalletDto palletDto);
///
/// 重检组盘
///
///
///
Task ReCheckGroupPallet(GroupPalletDto palletDto);
///
/// 入库分批回传
///
///
///
WebResponseContent BatchInOrderFeedbackToMes(int id);
}
}