From 3638646b8d5ff90e174d63d33f51bfe6270425dd Mon Sep 17 00:00:00 2001 From: 18923810322 <1666941798@qq.com> Date: Wed, 16 Jul 2025 14:16:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/WMS.Web.Domain/Services/OutStockTaskService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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();