using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Common.LocationEnum; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_IOutboundRepository; using WIDESEA_Model.Models; namespace WIDESEA_IOutboundService { public interface IMesPPOutboundOrderDetailService : IService { IMesPPOutboundOrderDetailRepository Repository { get; } (List, List, List, List, Dt_MesPPOutboundOrder mesPPOutboundOrder) AssignStockOutbound(List mesOutboundOrder); /// /// 锁定出库库存(修改数据) /// /// 库存明细集合 /// 出库单明细集合 /// 出库锁定明细集合 /// 货位结合 /// 货位状态修改的值 /// 任务信息 /// WebResponseContent LockOutboundStockDataUpdate(Dt_MesPPOutboundOrder mesPPOutboundOrder,List stockInfos, List outboundOrderDetails, List outStockLockInfos, List locationInfos, LocationStatusEnum locationStatus = LocationStatusEnum.Lock, List? tasks = null); } }