From 96624a17cedfb046fcdec8b1f80d1ddaedfed6f4 Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Thu, 29 Jun 2023 16:30:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=9B=9E=E5=8E=BB=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Balances/BalanceValidateExtension.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/be/Modules/Inventory/src/Win_in.Sfs.Wms.Inventory.Domain/Balances/BalanceValidateExtension.cs b/be/Modules/Inventory/src/Win_in.Sfs.Wms.Inventory.Domain/Balances/BalanceValidateExtension.cs index 85dc6083d..a512067eb 100644 --- a/be/Modules/Inventory/src/Win_in.Sfs.Wms.Inventory.Domain/Balances/BalanceValidateExtension.cs +++ b/be/Modules/Inventory/src/Win_in.Sfs.Wms.Inventory.Domain/Balances/BalanceValidateExtension.cs @@ -110,10 +110,10 @@ public static class BalanceValidateExtension { return balances .OrderBy(p => p.Lot) - //.ThenBy(p => p.ArriveDate) - //.ThenByDescending(p => p.Qty) - //.ThenBy(p => p.LocationCode) - //.ThenBy(p => p.PackingCode) + .ThenBy(p => p.ArriveDate) + .ThenByDescending(p => p.Qty) + .ThenBy(p => p.LocationCode) + .ThenBy(p => p.PackingCode) .ToList(); }