diff --git a/src/WMS.Web.Domain/Services/OutStockTaskService.cs b/src/WMS.Web.Domain/Services/OutStockTaskService.cs index 9eadcd94..aac826ad 100644 --- a/src/WMS.Web.Domain/Services/OutStockTaskService.cs +++ b/src/WMS.Web.Domain/Services/OutStockTaskService.cs @@ -670,7 +670,8 @@ namespace WMS.Web.Domain.Services //排序和加序号值以下为最先的 - response.Details = response.Details.OrderByDescending(s => s.Specifications).ThenByDescending(s => s.Method) + response.Details = response.Details.OrderByDescending(s => s.Specifications) + //.ThenByDescending(s => s.Method) //.ThenByDescending(s => s.BoxBillNo).ThenBy(s => s.BoxLength) .ThenByDescending(s => s.Qty).ToList();