This commit is contained in:
2025-07-16 11:33:54 +08:00
parent 41b2b6454a
commit 2783556ca3

View File

@@ -640,11 +640,11 @@ namespace WMS.Web.Domain.Services
response.Details.Add(infoDetail);
}
//排序和加序号值
response.Details = response.Details.OrderByDescending(s => s.Specifications)
response.Details = response.Details.OrderByDescending(s => s.BoxBillNo).ThenBy(s => s.BoxLength)
// .ThenByDescending(s => s.Method).ThenByDescending(s => s.Qty)
// response.Details.ForEach(f => f.IndexNumber = response.Details.IndexOf(f) + 1);
//response.Details = response.Details.OrderByDescending(s => s.Method).ThenBy(s => s.Specifications).ThenByDescending(s => s.BoxBillNo).ThenByDescending(s=>s.Qty)
.ThenByDescending(s => s.BoxBillNo).ThenBy(s => s.BoxLength).ThenByDescending(s => s.Qty)
.ThenByDescending(s => s.Specifications).ThenByDescending(s => s.Qty)
.ToList();
//alter by yzh 20250715 加了:.OrderByDescending(y=>y.Specifications)