From 88f69448fd3fb65d437c0b258ea93a3055017abd Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期四, 27 二月 2025 13:39:26 +0800
Subject: [PATCH] 退货申请
---
DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs | 88 ++++++++++++++++++++++++++++++++++++-------
1 files changed, 73 insertions(+), 15 deletions(-)
diff --git a/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs b/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
index dee8dcd..00a0424 100644
--- a/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
+++ b/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
@@ -4,14 +4,21 @@
using System.Data;
using System.Linq;
using System.Net;
+using System.Windows.Controls.Primitives;
using System.Windows.Forms;
using DevExpress.XtraBars;
+using DevExpress.XtraBars.Commands;
using DevExpress.XtraEditors;
+using DevExpress.XtraGrid;
+using DevExpress.XtraGrid.Columns;
+using DevExpress.XtraGrid.Menu;
+using DevExpress.XtraGrid.Views.Grid;
using Gs.DevApp.DevFrm.Rpt;
using Gs.DevApp.DevFrm.Sys;
using Gs.DevApp.Entity;
using Gs.DevApp.ToolBox;
using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
namespace Gs.DevApp.UserControl
{
@@ -49,6 +56,7 @@
btnZhongTai.ItemClick += BtnbZhongTai_ItemClick;
btnWg.ItemClick += BtnWg_ItemClick;
btnHelp.ItemClick += BtnHelp_ItemClick;
+ btnLayout.ItemClick += BtnLayout_ItemClick;
var lst = new List<string>();
foreach (BarItem item in barManager1.Items)
if (item is BarLargeButtonItem largeButtonItem)
@@ -67,17 +75,36 @@
if (Parent != null) getNamespace();
}
- private bool _isCk() {
+ private bool _isCk(int _type)
+ {
Form parentForm = this.FindForm();
if (parentForm != null)
{
PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
- if (specificControl != null)
+ if (specificControl == null)
+ return false;
+ if (specificControl.Tag == null)
+ return false;
+ if (_type == 1)
{
- if (specificControl.Tag.ToString() == "宸插鏍�")
+ if (specificControl != null)
{
- Gs.DevApp.ToolBox.MsgHelper.ShowInformation("璇ュ崟鎹凡琚鏍革紝鏃犳硶杩涜鎿嶄綔锛�");
- return true;
+ if (specificControl.Tag.ToString() == "宸插鏍�")
+ {
+ Gs.DevApp.ToolBox.MsgHelper.ShowInformation("璇ュ崟鎹凡琚鏍革紝鏃犳硶杩涜鎿嶄綔锛�");
+ return true;
+ }
+ }
+ }
+ if (_type == 0)
+ {
+ if (specificControl != null)
+ {
+ if (specificControl.Tag.ToString() == "鏈鏍�")
+ {
+ Gs.DevApp.ToolBox.MsgHelper.ShowInformation("璇ュ崟鎹湭琚鏍革紝鏃犳硶杩涜鎿嶄綔锛�");
+ return true;
+ }
}
}
}
@@ -190,6 +217,8 @@
private void BtnFchk_ItemClick(object sender, ItemClickEventArgs e)
{
+ bool bl = _isCk(0);
+ if (bl) return;
if (btnFChkClick != null)
{
btnFChkClick(this, e);
@@ -199,7 +228,7 @@
private void BtnChk_ItemClick(object sender, ItemClickEventArgs e)
{
- bool bl = _isCk();
+ bool bl = _isCk(1);
if (bl) return;
if (btnChkClick != null)
{
@@ -245,6 +274,8 @@
private void BtnFjianYan_ItemClick(object sender, ItemClickEventArgs e)
{
+ bool bl = _isCk(0);
+ if (bl) return;
if (btnFjianYanClick != null)
btnFjianYanClick(this, e);
else
@@ -268,7 +299,7 @@
private void BtnJianYan_ItemClick(object sender, ItemClickEventArgs e)
{
- bool bl = _isCk();
+ bool bl = _isCk(1);
if (bl) return;
if (btnJianYanClick != null)
btnJianYanClick(this, e);
@@ -459,7 +490,12 @@
lst.Add(btnLog.Name);
lst.Add(btnPiZhun.Name);
lst.Add(btnHelp.Name);
+ lst.Add(btnLayout.Name);
lst.Add(btnBoHui.Name);
+ lst.Add(btnTzbl.Name);
+ lst.Add(btnKg.Name);
+ lst.Add(btnWg.Name);
+ lst.Add(btnZhongTai.Name);
_enabledBtn(lst);
this.currentAction = "esc";
if (btnEscClick != null) btnEscClick(this, e);
@@ -496,7 +532,9 @@
lst.Add(btnWg.Name);
lst.Add(btnZhongTai.Name);
lst.Add(btnHelp.Name);
+ lst.Add(btnLayout.Name);
lst.Add(btnLoad.Name);
+ lst.Add(btnTzbl.Name);
_enabledBtn(lst);
}
}
@@ -513,25 +551,25 @@
private void BtnEdit_ItemClick(object sender, ItemClickEventArgs e)
{
- bool bl = _isCk();
+ bool bl = _isCk(1);
if (bl) return;
var lst = new List<string>();
lst.Add(btnSave.Name);
lst.Add(btnEsc.Name);
lst.Add(btnHelp.Name);
+ lst.Add(btnLayout.Name);
_enabledBtn(lst);
this.currentAction = "edit";
if (btnEdtClick != null) btnEdtClick(this, e);
-
}
private void BtnDel_ItemClick(object sender, ItemClickEventArgs e)
{
- bool bl = _isCk();
+ bool bl = _isCk(1);
if (bl) return;
if (btnDelClick != null) btnDelClick(this, e);
- // btnEsc.Enabled = false;
+ // btnEsc.Enabled = false;
this.currentAction = "";
}
@@ -545,13 +583,14 @@
lst.Add(btnSave.Name);
lst.Add(btnEsc.Name);
lst.Add(btnHelp.Name);
+ lst.Add(btnLayout.Name);
_enabledBtn(lst);
this.currentAction = "add";
if (btnAddClick != null) btnAddClick(this, e);
Form parentForm = this.FindForm();
if (parentForm != null)
{
- PictureBox specificControl =(PictureBox) parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
+ PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
if (specificControl != null)
{
specificControl.Image = global::Gs.DevApp.Properties.Resources.ico_noCheck;
@@ -617,10 +656,28 @@
return;
}
Gs.DevApp.ToolBox.MsgHelper.ShowInformation(_rtnJson.rtnMsg);
-
}
-
+ private void BtnLayout_ItemClick(object sender, ItemClickEventArgs ee)
+ {
+ Form parentForm = this.Parent as Form;
+ string _formNamespace = parentForm.GetType().FullName;
+ if (parentForm != null)
+ {
+ List<DevExpress.XtraGrid.Views.Grid.GridView> gvList = new List<DevExpress.XtraGrid.Views.Grid.GridView>();
+ GridControl gcMain = parentForm.Controls.Find("gcMain", true).OfType<GridControl>().FirstOrDefault();
+ if (gcMain != null) {
+ GridView gv1 = gcMain.MainView as GridView;
+ if (gv1 != null)
+ {
+ gvList.Add(gv1);
+ }
+ }
+ Gs.DevApp.UserControl.showLayOut DevFrm = new showLayOut(_formNamespace, gvList);
+ DevFrm.ShowDialog();
+ }
+ if (btnLayoutClick != null) btnLayoutClick(this, ee);
+ }
private void _enabledBtn(List<string> lstBtn)
{
foreach (BarItem item in barManager1.Items)
@@ -654,7 +711,6 @@
var _obj = new
{
userGuid = LoginInfoModel.CurrentUser.LoginUserGuid,
- orgGuid = LoginInfoModel.CurrentUser.LoginOrgGuid,
formNamespace = _formNamespace
};
var strReturn = "";
@@ -940,6 +996,8 @@
public event EventHandler btnWgClick;
+ public event EventHandler btnLayoutClick;
+
#endregion
#region 鍏叡灞炴��
--
Gitblit v1.9.3