This commit is contained in:
2025-07-16 17:27:36 +08:00
parent a65c8f87f9
commit 1c5df7829a

View File

@@ -758,7 +758,7 @@ namespace WMS.Web.Domain.Services
//.ThenByDescending(s => s.Method)
//.ThenByDescending(s => s.BoxBillNo).ThenBy(s => s.BoxLength)
.ThenByDescending(s => s.Qty).ThenByDescending(s => s.BoxBillNo).ThenByDescending(s => s.Method).ToList();
.ThenByDescending(s => s.BoxBillNo).ThenByDescending(s => s.Method).ThenByDescending(s => s.Qty).ToList();
detailsA.AddRange(detailsB);
response.Details=detailsA;