|  |  |  | 
|---|
|  |  |  | using System.Linq; | 
|---|
|  |  |  | using System.Text; | 
|---|
|  |  |  | using System.Threading.Tasks; | 
|---|
|  |  |  | using Microsoft.AspNetCore.Hosting.Server; | 
|---|
|  |  |  | using WIDESEA_Common.LocationEnum; | 
|---|
|  |  |  | using WIDESEA_Core; | 
|---|
|  |  |  | using WIDESEA_Core.BaseServices; | 
|---|
|  |  |  | using WIDESEA_IOutboundRepository; | 
|---|
|  |  |  | using WIDESEA_Model.Models; | 
|---|
|  |  |  | using WIDESEA_Model.Models.Outbound; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 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); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|