DevApp/Gs.DevApp/UserControl/UcLookCk.Designer.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/UserControl/UcLookCk.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/UserControl/UcLookCk.resx | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
DevApp/Gs.DevApp/UserControl/UcLookCk.Designer.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,118 @@ namespace Gs.DevApp.UserControl { partial class UcLookCk { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.lookSearchSupplier = new DevExpress.XtraEditors.SearchLookUpEdit(); this.searchLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); ((System.ComponentModel.ISupportInitialize)(this.lookSearchSupplier.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit1View)).BeginInit(); this.SuspendLayout(); // // lookSearchSupplier // this.lookSearchSupplier.Location = new System.Drawing.Point(0, 3); this.lookSearchSupplier.Name = "lookSearchSupplier"; this.lookSearchSupplier.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F); this.lookSearchSupplier.Properties.Appearance.Options.UseFont = true; this.lookSearchSupplier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.lookSearchSupplier.Properties.PopupView = this.searchLookUpEdit1View; this.lookSearchSupplier.Size = new System.Drawing.Size(207, 28); this.lookSearchSupplier.TabIndex = 8; // // searchLookUpEdit1View // this.searchLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn2, this.gridColumn3, this.gridColumn1, this.gridColumn4}); this.searchLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus; this.searchLookUpEdit1View.Name = "searchLookUpEdit1View"; this.searchLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false; this.searchLookUpEdit1View.OptionsView.ShowGroupPanel = false; // // gridColumn2 // this.gridColumn2.Caption = "ä»åºç¼å·"; this.gridColumn2.FieldName = "depotCode"; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 1; // // gridColumn3 // this.gridColumn3.Caption = "ä¾åºååç§°"; this.gridColumn3.FieldName = "depotName"; this.gridColumn3.Name = "gridColumn3"; this.gridColumn3.Visible = true; this.gridColumn3.VisibleIndex = 2; // // gridColumn1 // this.gridColumn1.Caption = "id"; this.gridColumn1.FieldName = "depotId"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.UnboundDataType = typeof(short); this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 0; // // gridColumn4 // this.gridColumn4.Caption = "guid"; this.gridColumn4.FieldName = "guid"; this.gridColumn4.Name = "gridColumn4"; // // UcLookCk // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.lookSearchSupplier); this.Name = "UcLookCk"; this.Size = new System.Drawing.Size(219, 37); ((System.ComponentModel.ISupportInitialize)(this.lookSearchSupplier.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit1View)).EndInit(); this.ResumeLayout(false); } #endregion private DevExpress.XtraEditors.SearchLookUpEdit lookSearchSupplier; private DevExpress.XtraGrid.Views.Grid.GridView searchLookUpEdit1View; private DevExpress.XtraGrid.Columns.GridColumn gridColumn2; private DevExpress.XtraGrid.Columns.GridColumn gridColumn3; private DevExpress.XtraGrid.Columns.GridColumn gridColumn1; private DevExpress.XtraGrid.Columns.GridColumn gridColumn4; } } DevApp/Gs.DevApp/UserControl/UcLookCk.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,81 @@ using DevExpress.XtraEditors; using Gs.DevApp.Entity; using Gs.DevApp.ToolBox; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Gs.DevApp.UserControl { public partial class UcLookCk : DevExpress.XtraEditors.XtraUserControl { /// <summary> /// æ¹åäºä»¶ /// </summary> public event EventHandler EditChanged; public UcLookCk() { InitializeComponent(); this.lookSearchSupplier.EditValueChanged += LookSearchSupplier_EditValueChanged; getSuppler(); } private void LookSearchSupplier_EditValueChanged(object sender, EventArgs e) { if (EditChanged != null) { EditChanged(this, e); } } private void getSuppler() { PageQueryModel pgq = new PageQueryModel(1, 999999, "depot_code", "asc", "", " and is_ng='A'"); string json = JsonConvert.SerializeObject(pgq); try { string strReturn = UtilityHelper.HttpPost("", "MesDepotsManager/GetListPage", json); ReturnModel<PageListModel> rtn = UtilityHelper.ReturnToTablePage(strReturn); DataTable dt = rtn.rtnData.list; lookSearchSupplier.Properties.DataSource = dt; lookSearchSupplier.Properties.DisplayMember = "depotName"; lookSearchSupplier.Properties.ValueMember = "depotId"; } catch (Exception ex) { ToolBox.MsgHelper.Warning("æç¤ºï¼" + ex.Message); } } /// <summary> /// åæ§ä»¶çå¼ /// </summary> /// <return>Object</return> public string[] GetValue() { string id = this.lookSearchSupplier.EditValue.ToString(); string name = this.lookSearchSupplier.Text.Trim(); string code = ""; DataRowView row = this.lookSearchSupplier.GetSelectedDataRow() as DataRowView; if (row != null) { code = row["depotCode"].ToString(); } string[] _ary = { id, name, code }; return _ary; } public void SetId(string id) { lookSearchSupplier.EditValue = Int64.Parse(id); } } } DevApp/Gs.DevApp/UserControl/UcLookCk.resx
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,120 @@ <?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> </root> DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
@@ -78,6 +78,16 @@ /// </summary> public event EventHandler btnFChkClick; /// <summary> /// æ£éª /// </summary> public event EventHandler btnJianYanClick; /// <summary> /// åæ£éª /// </summary> public event EventHandler btnFjianYanClick; #endregion #region å ¬å ±å±æ§ @@ -135,6 +145,8 @@ this.btnIn.ItemClick += BtnIn_ItemClick; this.btnChk.ItemClick += BtnChk_ItemClick; this.btnFchk.ItemClick += BtnFchk_ItemClick; this.btnJianYan.ItemClick += BtnJianYan_ItemClick; this.btnFjianYan.ItemClick += BtnFjianYan_ItemClick; List<string> lst = new List<string>(); foreach (BarItem item in barManager1.Items) { @@ -146,6 +158,7 @@ } this.actions = lst; } /// <summary> /// åå§åæé®ç¶æ @@ -195,8 +208,6 @@ ToolBox.MsgHelper.Warning("æç¤ºï¼" + _rtn.rtnMsg); } } private void BtnChk_ItemClick(object sender, ItemClickEventArgs e) { if (btnChkClick != null) @@ -234,6 +245,83 @@ ToolBox.MsgHelper.Warning("æç¤ºï¼" + _rtn.rtnMsg); } } private void BtnFjianYan_ItemClick(object sender, ItemClickEventArgs e) { if (btnFjianYanClick != null) { btnFjianYanClick(this, e); } else return; if (string.IsNullOrEmpty(this.guidKey)) { ToolBox.MsgHelper.Warning("请å éæ©ä½ è¦æä½çè¡ï¼"); return; } if (string.IsNullOrEmpty(this.chkParameter)) { ToolBox.MsgHelper.ShowError("没ææå®æ£éªåæ°ï¼è¯·èç³»å¼å人åè·åæ¯æï¼"); return; } if (!MsgHelper.AskQuestion("ä½ éæ©äº1æ¡æ°æ®ï¼ç¡®å®åæ£éªåï¼")) return; var _obj = new { guid = this.guidKey, parameter = this.chkParameter }; string strJson = UtilityHelper.HttpPost("", "General/GeneralFCheck", JsonConvert.SerializeObject(_obj)); ReturnModel<dynamic> _rtn = ToolBox.UtilityHelper.ReturnToDynamic(strJson); if (_rtn.rtnCode > 0) { ToolBox.MsgHelper.Warning("æç¤ºï¼" + _rtn.rtnData["outMsg"].ToString()); } else { ToolBox.MsgHelper.Warning("æç¤ºï¼" + _rtn.rtnMsg); } } private void BtnJianYan_ItemClick(object sender, ItemClickEventArgs e) { if (btnJianYanClick != null) { btnJianYanClick(this, e); } else return; if (string.IsNullOrEmpty(this.guidKey)) { ToolBox.MsgHelper.Warning("请å éæ©ä½ è¦æä½çè¡ï¼"); return; } if (string.IsNullOrEmpty(this.chkParameter)) { ToolBox.MsgHelper.ShowError("没ææå®æ£éªåæ°ï¼è¯·èç³»å¼å人åè·åæ¯æï¼"); return; } if (!MsgHelper.AskQuestion("ä½ éæ©äº1æ¡æ°æ®ï¼ç¡®å®æäº¤æ£éªåï¼")) return; var _obj = new { guid = this.guidKey, parameter = this.chkParameter }; string strJson = UtilityHelper.HttpPost("", "General/GeneralCheck", JsonConvert.SerializeObject(_obj)); ReturnModel<dynamic> _rtn = ToolBox.UtilityHelper.ReturnToDynamic(strJson); if (_rtn.rtnCode > 0) { ToolBox.MsgHelper.Warning("æç¤ºï¼" + _rtn.rtnData["outMsg"].ToString()); } else { ToolBox.MsgHelper.Warning("æç¤ºï¼" + _rtn.rtnMsg); } } private async void BtnIn_ItemClick(object sender, ItemClickEventArgs e) { if (string.IsNullOrEmpty(this.xlsInService))