/* *所有关于Dt_outboundorder_detail类的业务代码接口应在此处编写 */ using WIDESEA.Core.BaseProvider; using WIDESEA.Entity.DomainModels; using WIDESEA.Core.Utilities; using System.Linq.Expressions; using System.Collections.Generic; using WIDESEA.Common.CustomModels; namespace WIDESEA.Services.IServices { public partial interface IDt_outboundorder_detailService { /// /// 分配库存 /// /// public WebResponseContent AllocateInventory(List containers, decimal outneedQty); public WebResponseContent AllocateInventorys(List containers, decimal outneedQty); public List numGroupRows(List arr, decimal sum, int start = 0); /// /// 货车分配 /// /// /// public List MC_combination(List myarray, decimal sum); /// /// 集装箱分配 /// /// /// /// public List MC_combinationJ(List args, decimal argsum); public List MC_Hcombination(List containers, List totalContainers, decimal outneedQty, bool flag); } }