From 0f8f046d23efc73146a5245d3edc55285c3219b1 Mon Sep 17 00:00:00 2001
From: lg <123456>
Date: 星期三, 24 十二月 2025 11:00:20 +0800
Subject: [PATCH] 条码交易加上汇总

---
 DevApp/Gs.DevApp/DevFrm/Rpt/BTDetails.cs |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/DevApp/Gs.DevApp/DevFrm/Rpt/BTDetails.cs b/DevApp/Gs.DevApp/DevFrm/Rpt/BTDetails.cs
index 46ee421..fbdf48d 100644
--- a/DevApp/Gs.DevApp/DevFrm/Rpt/BTDetails.cs
+++ b/DevApp/Gs.DevApp/DevFrm/Rpt/BTDetails.cs
@@ -25,7 +25,7 @@
             Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, this, "", "", (value) =>
             {
                 Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0);
-            });
+            }, tips);
             Gs.DevApp.ToolBox.UtilityHelper.SetTabParameter(gridView1, xtraTabControl1, pageBar1, (value) =>
             {
                 getModel(value);
@@ -35,6 +35,10 @@
             }, lbGuid);
             getPageList(1);
             pageBar1.PagerEvent += PageBar1_PagerEvent;
+
+            this.gridView1.OptionsView.ShowFooter = true;
+            this.quantity.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
+            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "quantity", "SUM={0:0.##}")});
         }
         private async void GridView1_ColumnFilterChanged(object sender, EventArgs e)
         {
@@ -172,5 +176,8 @@
                 MsgHelper.Warning("鎻愮ず锛�" + ex.Message);
             }
         }
+
+
+     
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3