| 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<Dt_MesPPOutboundOrderDetail> | 
|     { | 
|         IMesPPOutboundOrderDetailRepository Repository { get; } | 
|   | 
|         (List<Dt_StockInfo>, List<Dt_MesPPOutboundOrderDetail>, List<Dt_OutStockLockInfo>, List<Dt_LocationInfo>, Dt_MesPPOutboundOrder mesPPOutboundOrder) AssignStockOutbound(List<Dt_MesPPOutboundOrderDetail> mesOutboundOrder); | 
|   | 
|         /// <summary> | 
|         /// 锁定出库库存(修改数据) | 
|         /// </summary> | 
|         /// <param name="stockInfos">库存明细集合</param> | 
|         /// <param name="outboundOrderDetails">出库单明细集合</param> | 
|         /// <param name="outStockLockInfos">出库锁定明细集合</param> | 
|         /// <param name="locationInfos">货位结合</param> | 
|         /// <param name="locationStatus">货位状态修改的值</param> | 
|         /// <param name="tasks">任务信息</param> | 
|         /// <returns></returns> | 
|         WebResponseContent LockOutboundStockDataUpdate(Dt_MesPPOutboundOrder mesPPOutboundOrder,List<Dt_StockInfo> stockInfos, List<Dt_MesPPOutboundOrderDetail> outboundOrderDetails, List<Dt_OutStockLockInfo> outStockLockInfos, List<Dt_LocationInfo> locationInfos, LocationStatusEnum locationStatus = LocationStatusEnum.Lock, List<Dt_Task>? tasks = null); | 
|   | 
|   | 
|     } | 
| } |