From ac3d4563b35f38ced8513318457de4af5ffca4fe Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期六, 14 三月 2026 11:09:14 +0800
Subject: [PATCH] 优化出库任务逻辑

---
 代码管理/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/TrackloginfoService.cs |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/TrackloginfoService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/TrackloginfoService.cs"
index a5b1345..45481a2 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/TrackloginfoService.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/TrackloginfoService.cs"
@@ -68,7 +68,16 @@
 
         public override PageGridData<Dt_trackloginfo> GetPageData(PageDataOptions options)
         {
-            return base.GetPageData(options);
+            PageGridData<Dt_trackloginfo> car = null;
+            try
+            {
+                car = base.GetPageData(options);
+            }
+            catch (Exception ex)
+            {
+
+            }
+            return car;
         }
 
 

--
Gitblit v1.9.3