From d08523ef10664d4e375eebc0734e79d903aa8b17 Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期三, 19 二月 2025 08:58:46 +0800
Subject: [PATCH] 采购退货申请

---
 DevApp/Gs.DevApp/DevFrm/User/User.cs |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/DevApp/Gs.DevApp/DevFrm/User/User.cs b/DevApp/Gs.DevApp/DevFrm/User/User.cs
index e2e4119..0e23d0e 100644
--- a/DevApp/Gs.DevApp/DevFrm/User/User.cs
+++ b/DevApp/Gs.DevApp/DevFrm/User/User.cs
@@ -25,7 +25,7 @@
             toolBarMenu1.btnDelClick += ToolBarMenu1_btnDelClick1;
             toolBarMenu1.btnEscClick += ToolBarMenu1_btnEscClick;
             toolBarMenu1.btnQueryClick += ToolBarMenu1_btnQueryClick;
-            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, "", "", (value) =>
+            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(this.GetType().FullName, gridView1, null, null, "", "", (value) =>
             {
                 Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0);
             });
@@ -221,7 +221,7 @@
 
             var _obj = new
             {
-                guid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), //涓诲缓
+                Guid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), //涓诲缓
                 account = txt_account.Text.Trim(),
                 password = txt_password.Text.Trim(),
                 userName = txt_userName.Text.Trim(),
@@ -230,7 +230,8 @@
                 email = txt_email.Text.Trim(),
                 isStatus = txt_isStatus.Checked,
                 remark = txt_remark.Text.Trim(),
-                isSys = 0
+                isSys = 0,
+                staffId= txt_staffId.GetId()
             };
             try
             {
@@ -258,7 +259,7 @@
         private   void getPageList(int curPage)
         {
             var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList);
-            var pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "ACCOUNT asc ,CREATE_TIME",
+            var pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "a.ACCOUNT asc ,a.CREATE_TIME",
                 "desc", "", _sbSqlWhere.ToString());
             var json = JsonConvert.SerializeObject(pgq);
             try

--
Gitblit v1.9.3