提交单据管理和修改密码功能
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
*.zip
|
||||
*.rar
|
||||
*.7z
|
||||
*.r[0-9]*
|
||||
|
||||
# Confirmed unnecessary large files.
|
||||
/其他程序/工作部署记录/Smart X1 SDK V1.0.zip
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -293,6 +293,27 @@ namespace Lskj.Business.Impl
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 记录修改后的密码
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <param name="afterPass"></param>
|
||||
/// <returns></returns>
|
||||
public static bool RecordPassword(string afterPass,string text)
|
||||
{
|
||||
try
|
||||
{
|
||||
//加密密码
|
||||
afterPass = AESUtil.Encrypt(afterPass);
|
||||
LogUtil.WriteDebug("", text, afterPass, "");
|
||||
return true;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@ using System.Text;
|
||||
using System.Data.SqlClient;
|
||||
using Lskj.Util;
|
||||
using Lskj.Model;
|
||||
using Lskj.Core;
|
||||
|
||||
namespace Lskj.Business.Impl
|
||||
{
|
||||
@@ -202,6 +203,26 @@ namespace Lskj.Business.Impl
|
||||
public static bool SaveRoleOperDate(string OperId, string OperName, string departemnt, string readdate, string editdate)
|
||||
{
|
||||
string sqlValue = string.Format(" if exists (select * from p_systemRoleOperSetTab s where s.operatorid='{0}' and roleId='0' ) update p_systemRoleOperSetTab set ReadPurview='{4}',EditPurview='{5}' where operatorid = '{0}' and roleId='0' ELSE insert into p_systemRoleOperSetTab (roleId,roleOperatorId,operatorid,operatorname,operatedate,department,ReadPurview,EditPurview) values ('0','{0}','{0}','{1}','{2}','{3}','{4}','{5}')", OperId, OperName, DateTime.Now, departemnt, readdate, editdate);
|
||||
|
||||
if (SqlHelper.ConnectionType == ConnectionType.DmServer)
|
||||
{
|
||||
string dmOperId = (OperId ?? string.Empty).Replace("'", "''");
|
||||
string dmOperName = (OperName ?? string.Empty).Replace("'", "''");
|
||||
string dmDepartment = (departemnt ?? string.Empty).Replace("'", "''");
|
||||
string dmReadDate = (readdate ?? string.Empty).Replace("'", "''");
|
||||
string dmEditDate = (editdate ?? string.Empty).Replace("'", "''");
|
||||
|
||||
sqlValue = string.Format(@"
|
||||
MERGE INTO p_systemRoleOperSetTab t
|
||||
USING (SELECT '{0}' operatorid, '0' roleId FROM DUAL) s
|
||||
ON (t.operatorid = s.operatorid AND t.roleId = s.roleId)
|
||||
WHEN MATCHED THEN
|
||||
UPDATE SET ReadPurview = '{3}', EditPurview = '{4}'
|
||||
WHEN NOT MATCHED THEN
|
||||
INSERT (roleId, roleOperatorId, operatorid, operatorname, operatedate, department, ReadPurview, EditPurview)
|
||||
VALUES ('0', '{0}', '{0}', '{1}', SYSDATE, '{2}', '{3}', '{4}')",
|
||||
dmOperId, dmOperName, dmDepartment, dmReadDate, dmEditDate);
|
||||
}
|
||||
return ExecSqlValue(sqlValue) > 0;
|
||||
|
||||
}
|
||||
|
||||
@@ -16,6 +16,7 @@ using System.Xml;
|
||||
using Lskj.Business.Impl;
|
||||
using Lskj.Core;
|
||||
using Lskj.Model;
|
||||
using Lskj.Data;
|
||||
|
||||
namespace Lskj.Business
|
||||
{
|
||||
@@ -330,6 +331,11 @@ namespace Lskj.Business
|
||||
Instance.LoginUsername = item.Table.Columns.Contains("LoginUsername") && !string.IsNullOrEmpty(item["LoginUsername"] + "") ? item["LoginUsername"] + "" : "";
|
||||
Instance.MainLeftShowMode = item.Table.Columns.Contains("MainLeftShowMode") && !string.IsNullOrEmpty(item["MainLeftShowMode"] + "") ? item["MainLeftShowMode"] + "" : "";
|
||||
Instance.DeadlockPrompt = item.Table.Columns.Contains("DeadlockPrompt") && !string.IsNullOrEmpty(item["DeadlockPrompt"] + "") ? item["DeadlockPrompt"] + "" : "";
|
||||
Instance.SpecialAttachmentBrowser = item.Table.Columns.Contains("SpecialAttachmentBrowser") && !string.IsNullOrEmpty(item["SpecialAttachmentBrowser"] + "") ? "1".Equals(item["SpecialAttachmentBrowser"] + "") : false;
|
||||
if (Instance.SpecialAttachmentBrowser)
|
||||
{
|
||||
ResourceDynamic.PubBrower = System.Environment.OSVersion.Version.Major == 5 && (System.Environment.OSVersion.Version.Minor == 1 || System.Environment.OSVersion.Version.Minor == 2) ? "Lskj.PubBrowerXp.dll" : "Lskj.PubBrower2.dll";
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 高拍仪AccessKey
|
||||
@@ -1154,6 +1160,10 @@ namespace Lskj.Business
|
||||
/// 死锁提示
|
||||
/// </summary>
|
||||
public string DeadlockPrompt;
|
||||
/// <summary>
|
||||
/// 附件浏览器自带逻辑
|
||||
/// </summary>
|
||||
public bool SpecialAttachmentBrowser;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
+26
-16
@@ -28,7 +28,6 @@
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.tabMain = new DevExpress.XtraTab.XtraTabControl();
|
||||
this.tabpage_finish = new DevExpress.XtraTab.XtraTabPage();
|
||||
this.gridFinish = new Lskj.Control.GridControlEx();
|
||||
@@ -51,8 +50,8 @@
|
||||
this.btnReverseSelection = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnSelectAll = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.dpb_Tools = new DevExpress.XtraEditors.DropDownButton();
|
||||
this.p_menu = new DevExpress.XtraBars.PopupMenu(this.components);
|
||||
this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
|
||||
this.p_menu = new DevExpress.XtraBars.PopupMenu();
|
||||
this.barManager1 = new DevExpress.XtraBars.BarManager();
|
||||
this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
|
||||
this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
|
||||
this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
|
||||
@@ -85,7 +84,7 @@
|
||||
this.tabMain.Location = new System.Drawing.Point(0, 0);
|
||||
this.tabMain.Name = "tabMain";
|
||||
this.tabMain.SelectedTabPage = this.tabpage_finish;
|
||||
this.tabMain.Size = new System.Drawing.Size(1051, 683);
|
||||
this.tabMain.Size = new System.Drawing.Size(1051, 701);
|
||||
this.tabMain.TabIndex = 20;
|
||||
this.tabMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
|
||||
this.tabpage_finish});
|
||||
@@ -96,7 +95,7 @@
|
||||
this.tabpage_finish.Controls.Add(this.splitBelow);
|
||||
this.tabpage_finish.Controls.Add(this.pl_top);
|
||||
this.tabpage_finish.Name = "tabpage_finish";
|
||||
this.tabpage_finish.Size = new System.Drawing.Size(1045, 654);
|
||||
this.tabpage_finish.Size = new System.Drawing.Size(1045, 672);
|
||||
this.tabpage_finish.Text = "已完成单据";
|
||||
//
|
||||
// gridFinish
|
||||
@@ -108,13 +107,14 @@
|
||||
this.gridFinish.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.gridFinish.Name = "gridFinish";
|
||||
this.gridFinish.SiftEnumObj = Lskj.Control.GridControlEx.HeaderSiftEnum.Sum;
|
||||
this.gridFinish.Size = new System.Drawing.Size(1045, 322);
|
||||
this.gridFinish.Size = new System.Drawing.Size(1045, 340);
|
||||
this.gridFinish.SysModel = null;
|
||||
this.gridFinish.TabIndex = 29;
|
||||
//
|
||||
// splitBelow
|
||||
//
|
||||
this.splitBelow.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.splitBelow.Location = new System.Drawing.Point(0, 361);
|
||||
this.splitBelow.Location = new System.Drawing.Point(0, 379);
|
||||
this.splitBelow.Name = "splitBelow";
|
||||
this.splitBelow.Panel1.Controls.Add(this.gridFlow);
|
||||
this.splitBelow.Panel1.Text = "Panel1";
|
||||
@@ -134,6 +134,7 @@
|
||||
this.gridFlow.Name = "gridFlow";
|
||||
this.gridFlow.SiftEnumObj = Lskj.Control.GridControlEx.HeaderSiftEnum.Sum;
|
||||
this.gridFlow.Size = new System.Drawing.Size(453, 293);
|
||||
this.gridFlow.SysModel = null;
|
||||
this.gridFlow.TabIndex = 19;
|
||||
//
|
||||
// gridDetail
|
||||
@@ -145,6 +146,7 @@
|
||||
this.gridDetail.Name = "gridDetail";
|
||||
this.gridDetail.SiftEnumObj = Lskj.Control.GridControlEx.HeaderSiftEnum.Sum;
|
||||
this.gridDetail.Size = new System.Drawing.Size(587, 293);
|
||||
this.gridDetail.SysModel = null;
|
||||
this.gridDetail.TabIndex = 20;
|
||||
//
|
||||
// pl_top
|
||||
@@ -174,6 +176,8 @@
|
||||
// labeldate_start
|
||||
//
|
||||
this.labeldate_start.BackColor = System.Drawing.Color.Transparent;
|
||||
this.labeldate_start.BackgroundColor = System.Drawing.Color.Empty;
|
||||
this.labeldate_start.ContentBold = false;
|
||||
this.labeldate_start.EditText = null;
|
||||
this.labeldate_start.FontSize = 0F;
|
||||
this.labeldate_start.LabelText = "终审时间起";
|
||||
@@ -190,6 +194,8 @@
|
||||
// labelcheck_finalAuditor
|
||||
//
|
||||
this.labelcheck_finalAuditor.BackColor = System.Drawing.Color.Transparent;
|
||||
this.labelcheck_finalAuditor.BackgroundColor = System.Drawing.Color.Empty;
|
||||
this.labelcheck_finalAuditor.ContentBold = false;
|
||||
this.labelcheck_finalAuditor.EditText = null;
|
||||
this.labelcheck_finalAuditor.FontSize = 0F;
|
||||
this.labelcheck_finalAuditor.LabelText = "终审人";
|
||||
@@ -206,6 +212,8 @@
|
||||
// labeltxt_dataFlag
|
||||
//
|
||||
this.labeltxt_dataFlag.BackColor = System.Drawing.Color.Transparent;
|
||||
this.labeltxt_dataFlag.BackgroundColor = System.Drawing.Color.Empty;
|
||||
this.labeltxt_dataFlag.ContentBold = false;
|
||||
this.labeltxt_dataFlag.EditText = "";
|
||||
this.labeltxt_dataFlag.FontSize = 0F;
|
||||
this.labeltxt_dataFlag.LabelText = "数据标识号";
|
||||
@@ -233,6 +241,8 @@
|
||||
// labeldate_end
|
||||
//
|
||||
this.labeldate_end.BackColor = System.Drawing.Color.Transparent;
|
||||
this.labeldate_end.BackgroundColor = System.Drawing.Color.Empty;
|
||||
this.labeldate_end.ContentBold = false;
|
||||
this.labeldate_end.EditText = null;
|
||||
this.labeldate_end.FontSize = 0F;
|
||||
this.labeldate_end.LabelText = "终审时间止";
|
||||
@@ -313,9 +323,9 @@
|
||||
this.pl_bottom.Controls.Add(this.label_tips);
|
||||
this.pl_bottom.Controls.Add(this.label_date);
|
||||
this.pl_bottom.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.pl_bottom.Location = new System.Drawing.Point(0, 683);
|
||||
this.pl_bottom.Location = new System.Drawing.Point(0, 693);
|
||||
this.pl_bottom.Name = "pl_bottom";
|
||||
this.pl_bottom.Size = new System.Drawing.Size(1051, 32);
|
||||
this.pl_bottom.Size = new System.Drawing.Size(1051, 21);
|
||||
this.pl_bottom.TabIndex = 21;
|
||||
//
|
||||
// btnReverseSelection
|
||||
@@ -323,7 +333,7 @@
|
||||
this.btnReverseSelection.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnReverseSelection.Appearance.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.btnReverseSelection.Appearance.Options.UseFont = true;
|
||||
this.btnReverseSelection.Location = new System.Drawing.Point(586, 3);
|
||||
this.btnReverseSelection.Location = new System.Drawing.Point(586, -8);
|
||||
this.btnReverseSelection.Name = "btnReverseSelection";
|
||||
this.btnReverseSelection.Size = new System.Drawing.Size(55, 26);
|
||||
this.btnReverseSelection.TabIndex = 13;
|
||||
@@ -336,7 +346,7 @@
|
||||
this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnSelectAll.Appearance.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.btnSelectAll.Appearance.Options.UseFont = true;
|
||||
this.btnSelectAll.Location = new System.Drawing.Point(647, 3);
|
||||
this.btnSelectAll.Location = new System.Drawing.Point(647, -8);
|
||||
this.btnSelectAll.Name = "btnSelectAll";
|
||||
this.btnSelectAll.Size = new System.Drawing.Size(55, 26);
|
||||
this.btnSelectAll.TabIndex = 12;
|
||||
@@ -351,7 +361,7 @@
|
||||
this.dpb_Tools.Appearance.Options.UseFont = true;
|
||||
this.dpb_Tools.DropDownArrowStyle = DevExpress.XtraEditors.DropDownArrowStyle.Show;
|
||||
this.dpb_Tools.DropDownControl = this.p_menu;
|
||||
this.dpb_Tools.Location = new System.Drawing.Point(888, 3);
|
||||
this.dpb_Tools.Location = new System.Drawing.Point(888, -8);
|
||||
this.dpb_Tools.Name = "dpb_Tools";
|
||||
this.dpb_Tools.Size = new System.Drawing.Size(80, 26);
|
||||
this.dpb_Tools.TabIndex = 11;
|
||||
@@ -405,7 +415,7 @@
|
||||
this.btnOkAudit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnOkAudit.Appearance.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.btnOkAudit.Appearance.Options.UseFont = true;
|
||||
this.btnOkAudit.Location = new System.Drawing.Point(708, 3);
|
||||
this.btnOkAudit.Location = new System.Drawing.Point(708, -8);
|
||||
this.btnOkAudit.Name = "btnOkAudit";
|
||||
this.btnOkAudit.Size = new System.Drawing.Size(82, 26);
|
||||
this.btnOkAudit.TabIndex = 7;
|
||||
@@ -418,7 +428,7 @@
|
||||
this.btnBackAudit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnBackAudit.Appearance.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.btnBackAudit.Appearance.Options.UseFont = true;
|
||||
this.btnBackAudit.Location = new System.Drawing.Point(796, 3);
|
||||
this.btnBackAudit.Location = new System.Drawing.Point(796, -8);
|
||||
this.btnBackAudit.Name = "btnBackAudit";
|
||||
this.btnBackAudit.Size = new System.Drawing.Size(86, 26);
|
||||
this.btnBackAudit.TabIndex = 6;
|
||||
@@ -431,7 +441,7 @@
|
||||
this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnRefresh.Appearance.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.btnRefresh.Appearance.Options.UseFont = true;
|
||||
this.btnRefresh.Location = new System.Drawing.Point(974, 3);
|
||||
this.btnRefresh.Location = new System.Drawing.Point(974, -8);
|
||||
this.btnRefresh.Name = "btnRefresh";
|
||||
this.btnRefresh.Size = new System.Drawing.Size(72, 26);
|
||||
this.btnRefresh.TabIndex = 5;
|
||||
@@ -448,7 +458,7 @@
|
||||
this.Controls.Add(this.barDockControlBottom);
|
||||
this.Controls.Add(this.barDockControlTop);
|
||||
this.Name = "AuditPanelEx";
|
||||
this.Size = new System.Drawing.Size(1051, 715);
|
||||
this.Size = new System.Drawing.Size(1576, 1072);
|
||||
((System.ComponentModel.ISupportInitialize)(this.tabMain)).EndInit();
|
||||
this.tabMain.ResumeLayout(false);
|
||||
this.tabpage_finish.ResumeLayout(false);
|
||||
|
||||
@@ -25,6 +25,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
@@ -36,6 +37,11 @@ namespace Lskj.Control
|
||||
/// </summary>
|
||||
public partial class FrmExport : Form
|
||||
{
|
||||
/// <summary>
|
||||
/// 临时导出表无法执行原表的自定义汇总逻辑,保存原表已经计算完成的总计值。
|
||||
/// </summary>
|
||||
private readonly Dictionary<string, object> _exportCustomSummaryValues = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
|
||||
|
||||
public FrmExport()
|
||||
{
|
||||
InitializeComponent();
|
||||
@@ -45,8 +51,57 @@ namespace Lskj.Control
|
||||
gridView1.Appearance.Row.Font = new Font("宋体", 9);
|
||||
gridView1.OptionsView.RowAutoHeight = true;
|
||||
gridView1.RowCellStyle += new RowCellStyleEventHandler(OnGridViewRowCellStyle);
|
||||
gridView1.CustomSummaryCalculate += OnExportCustomSummaryCalculate;
|
||||
Lskj.Control.Model.AutoSizeChange.ControllInitializeSize(this);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 将原表已经计算完成的自定义总计回填到临时导出表。
|
||||
/// </summary>
|
||||
private void OnExportCustomSummaryCalculate(object sender, DevExpress.Data.CustomSummaryEventArgs e)
|
||||
{
|
||||
if (!e.IsTotalSummary || e.SummaryProcess != DevExpress.Data.CustomSummaryProcess.Finalize)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
GridSummaryItem summaryItem = e.Item as GridSummaryItem;
|
||||
object summaryValue;
|
||||
if (summaryItem != null && !string.IsNullOrEmpty(summaryItem.FieldName) &&
|
||||
_exportCustomSummaryValues.TryGetValue(summaryItem.FieldName, out summaryValue))
|
||||
{
|
||||
e.TotalValue = summaryValue;
|
||||
e.TotalValueReady = true;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 百分率自定义汇总在原表中可能已经格式化为字符串,导出前还原为数值。
|
||||
/// </summary>
|
||||
private static object GetExportSummaryValue(GridColumn column, GridSummaryItem summaryItem)
|
||||
{
|
||||
object summaryValue = summaryItem.SummaryValue;
|
||||
string valueText = summaryValue as string;
|
||||
string summaryFormat = summaryItem.DisplayFormat ?? string.Empty;
|
||||
string columnFormat = column == null ? string.Empty : column.DisplayFormat.FormatString;
|
||||
|
||||
if (string.IsNullOrWhiteSpace(valueText) ||
|
||||
(!summaryFormat.Contains("%") && !columnFormat.Contains("%")))
|
||||
{
|
||||
return summaryValue;
|
||||
}
|
||||
|
||||
string percentSymbol = CultureInfo.CurrentCulture.NumberFormat.PercentSymbol;
|
||||
string numericText = valueText.Replace(percentSymbol, string.Empty).Replace("%", string.Empty).Trim();
|
||||
decimal percentageValue;
|
||||
if (decimal.TryParse(numericText, NumberStyles.Any, CultureInfo.CurrentCulture, out percentageValue) ||
|
||||
decimal.TryParse(numericText, NumberStyles.Any, CultureInfo.InvariantCulture, out percentageValue))
|
||||
{
|
||||
return percentageValue / 100m;
|
||||
}
|
||||
|
||||
return summaryValue;
|
||||
}
|
||||
/// <summary>
|
||||
/// DataTable转换成Excel文档流(导出数据量超出65535条,分sheet)
|
||||
/// </summary>
|
||||
@@ -105,10 +160,12 @@ namespace Lskj.Control
|
||||
/// <returns>GridControl.</returns>
|
||||
public BandedGridControlEx ReplaceBitColumn(BandedGridControlEx bandGridControlEx, bool IsCustomColumn = false)
|
||||
{
|
||||
_exportCustomSummaryValues.Clear();
|
||||
bool hasBoolean = false;
|
||||
BandedGridView gridView = bandGridControlEx.GridView as BandedGridView;
|
||||
BandedGridControlEx NewBandedGridControlEx = new BandedGridControlEx();
|
||||
BandedGridView gridView2 = NewBandedGridControlEx.GridView as BandedGridView;
|
||||
gridView2.CustomSummaryCalculate += OnExportCustomSummaryCalculate;
|
||||
gridView2.Columns.Clear();//默认有2个列
|
||||
List<string> boolList = new List<string>();
|
||||
List<string> datetimeList = new List<string>();
|
||||
@@ -164,6 +221,8 @@ namespace Lskj.Control
|
||||
newCol.Width = col.Width;
|
||||
newCol.OptionsColumn.AllowEdit = col.OptionsColumn.AllowEdit;
|
||||
newCol.ColumnEdit = boolList.Contains(col.FieldName) || datetimeList.Contains(col.FieldName) ? null : col.ColumnEdit;
|
||||
newCol.DisplayFormat.FormatType = col.DisplayFormat.FormatType;
|
||||
newCol.DisplayFormat.FormatString = col.DisplayFormat.FormatString;
|
||||
|
||||
//多表头默认都有1级标题(默认有空白表头)
|
||||
if (col.OwnerBand != null)
|
||||
@@ -377,6 +436,7 @@ namespace Lskj.Control
|
||||
//底部汇总是否导出
|
||||
if (SystemInfo.Instance.ExportSummary)
|
||||
{
|
||||
gridView.UpdateTotalSummary();
|
||||
for (int i = 1; i < gridView2.Columns.Count; i++)
|
||||
{
|
||||
string columnName = gridView2.Columns[i].FieldName;
|
||||
@@ -384,6 +444,11 @@ namespace Lskj.Control
|
||||
GridSummaryItem gsi = gridView.Columns[columnName].SummaryItem;
|
||||
if (gsi.SummaryType != DevExpress.Data.SummaryItemType.None) //gsi.SummaryValue!=null&& !string.IsNullOrEmpty(gsi.SummaryValue.ToString())
|
||||
{
|
||||
if (gsi.SummaryType == DevExpress.Data.SummaryItemType.Custom)
|
||||
{
|
||||
_exportCustomSummaryValues[columnName] = GetExportSummaryValue(gridView.Columns[columnName], gsi);
|
||||
}
|
||||
|
||||
gridView2.Columns[i].Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { new DevExpress.XtraGrid.GridColumnSummaryItem(gsi.SummaryType, gridView2.Columns[i].FieldName.ToString(), gsi.DisplayFormat) });
|
||||
|
||||
if (SystemInfo.Instance.GroupSpecialMode)
|
||||
@@ -422,6 +487,7 @@ namespace Lskj.Control
|
||||
public GridControl ReplaceBitColumn(GridControl control, bool IsCustomColumn = false)
|
||||
{
|
||||
GridView gridView = control.FocusedView as GridView;
|
||||
_exportCustomSummaryValues.Clear();
|
||||
bool hasBoolean = false;
|
||||
List<string> boolList = new List<string>();
|
||||
List<string> datetimeList = new List<string>();
|
||||
@@ -481,6 +547,8 @@ namespace Lskj.Control
|
||||
newCol.Width = 100;
|
||||
newCol.OptionsColumn.AllowEdit = col.OptionsColumn.AllowEdit;
|
||||
newCol.ColumnEdit = boolList.Contains(col.FieldName) || datetimeList.Contains(col.FieldName) ? null : col.ColumnEdit;
|
||||
newCol.DisplayFormat.FormatType = col.DisplayFormat.FormatType;
|
||||
newCol.DisplayFormat.FormatString = col.DisplayFormat.FormatString;
|
||||
this.gridView1.Columns.Add(newCol);
|
||||
visibleList.Add(col.FieldName);
|
||||
if (gridModel != null && !dictionary.ContainsKey(col.FieldName))
|
||||
@@ -733,7 +801,9 @@ namespace Lskj.Control
|
||||
if (firstColumn != null)
|
||||
{
|
||||
this.gridView1.OptionsView.ShowFooter = true;
|
||||
firstColumn.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, firstColumn.FieldName.ToString(), "合计: {0:#,###}行") });
|
||||
string firstFieldName = firstColumn.FieldName.ToString();
|
||||
_exportCustomSummaryValues[firstFieldName] = string.Format("合计: {0}行", dtTable.Rows.Count);
|
||||
firstColumn.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom, firstFieldName, "{0}") });
|
||||
|
||||
if (SystemInfo.Instance.GroupSpecialMode)
|
||||
{
|
||||
@@ -748,6 +818,7 @@ namespace Lskj.Control
|
||||
//底部汇总是否导出
|
||||
if (SystemInfo.Instance.ExportSummary)
|
||||
{
|
||||
gridView.UpdateTotalSummary();
|
||||
for (int i = 1; i < this.gridView1.Columns.Count; i++)
|
||||
{
|
||||
string columnName = this.gridView1.Columns[i].FieldName;
|
||||
@@ -755,6 +826,11 @@ namespace Lskj.Control
|
||||
|
||||
if (gsi.SummaryType != DevExpress.Data.SummaryItemType.None) //gsi.SummaryValue!=null&& !string.IsNullOrEmpty(gsi.SummaryValue.ToString())
|
||||
{
|
||||
if (gsi.SummaryType == DevExpress.Data.SummaryItemType.Custom)
|
||||
{
|
||||
_exportCustomSummaryValues[columnName] = GetExportSummaryValue(gridView.Columns[columnName], gsi);
|
||||
}
|
||||
|
||||
string originalFormat = gsi.DisplayFormat;
|
||||
// 匹配 {0:#.##}、{0:0.##} 等格式 避免出现没有小数但是还有小数点的情况,如 0.
|
||||
try
|
||||
@@ -763,7 +839,7 @@ namespace Lskj.Control
|
||||
if (match.Success)
|
||||
{
|
||||
string innerFormat = match.Groups[1].Value;
|
||||
if (innerFormat.Contains("."))
|
||||
if (innerFormat.Contains(".") && innerFormat.Split(';').Length == 1)
|
||||
{
|
||||
// 生成条件格式:正数;负数;零(整数无小数点)
|
||||
string newInnerFormat = $"{innerFormat};{innerFormat};{innerFormat.Split('.')[0]}";
|
||||
|
||||
@@ -1880,6 +1880,71 @@ namespace Lskj.Control
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 行转列多表头列合计。动态列创建在独立的BandedGridView里,不能直接复用主表格的SetColumnSumming。
|
||||
/// </summary>
|
||||
private void SetDynamicBandedColumnSumming(BandedGridView view, BandedGridColumn gridColumn, GridColumnModel model, ref bool isFirstVisibleColumn, bool useSimpleSum)
|
||||
{
|
||||
if (view == null || gridColumn == null || model == null || !gridColumn.Visible) return;
|
||||
|
||||
if (isFirstVisibleColumn)
|
||||
{
|
||||
view.OptionsView.ShowFooter = true;
|
||||
gridColumn.Summary.AddRange(new GridSummaryItem[] { new GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, gridColumn.FieldName, TotalFormat) });
|
||||
if (SystemInfo.Instance.GroupSpecialMode)
|
||||
{
|
||||
view.OptionsView.GroupFooterShowMode = GroupFooterShowMode.VisibleAlways;
|
||||
}
|
||||
else
|
||||
{
|
||||
view.GroupSummary.AddRange(new GridSummaryItem[] { new GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Count, gridColumn.FieldName, null, TotalFormat) });
|
||||
}
|
||||
isFirstVisibleColumn = false;
|
||||
return;
|
||||
}
|
||||
|
||||
if (!model.CanSum) return;
|
||||
|
||||
SummaryItemType summaryType = useSimpleSum ? SummaryItemType.Sum : ((!string.IsNullOrEmpty(model.sumCalc) || !string.IsNullOrEmpty(model.SumCond) || model.isSumMerge) ? SummaryItemType.Custom : SummaryItemType.Sum);
|
||||
string format = model.SumText + "{0:" + model.DataFormat + "}";
|
||||
view.OptionsView.ShowFooter = true;
|
||||
gridColumn.Summary.AddRange(new GridSummaryItem[] { new GridColumnSummaryItem(summaryType, gridColumn.FieldName, format) });
|
||||
if (SystemInfo.Instance.GroupSpecialMode)
|
||||
{
|
||||
view.GroupSummary.Add(new GridGroupSummaryItem(summaryType, gridColumn.FieldName, gridColumn, format));
|
||||
view.OptionsView.GroupFooterShowMode = GroupFooterShowMode.VisibleAlways;
|
||||
}
|
||||
else
|
||||
{
|
||||
view.GroupSummary.AddRange(new GridSummaryItem[] { new GridGroupSummaryItem(summaryType, gridColumn.FieldName, null, format) });
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 行转列树形多表头列合计。TreeList使用SummaryFooter,需单独设置。
|
||||
/// </summary>
|
||||
private void SetDynamicTreeColumnSumming(DevExpress.XtraTreeList.TreeList treeList, DevExpress.XtraTreeList.Columns.TreeListColumn gridColumn, GridColumnModel model, ref bool isFirstVisibleColumn)
|
||||
{
|
||||
if (treeList == null || gridColumn == null || model == null || !gridColumn.Visible) return;
|
||||
|
||||
if (isFirstVisibleColumn)
|
||||
{
|
||||
treeList.OptionsView.ShowSummaryFooter = true;
|
||||
gridColumn.AllNodesSummary = true;
|
||||
gridColumn.SummaryFooter = DevExpress.XtraTreeList.SummaryItemType.Count;
|
||||
gridColumn.RowFooterSummaryStrFormat = TotalFormat;
|
||||
isFirstVisibleColumn = false;
|
||||
return;
|
||||
}
|
||||
|
||||
if (!model.CanSum) return;
|
||||
|
||||
treeList.OptionsView.ShowSummaryFooter = true;
|
||||
gridColumn.AllNodesSummary = true;
|
||||
gridColumn.SummaryFooter = DevExpress.XtraTreeList.SummaryItemType.Sum;
|
||||
gridColumn.RowFooterSummaryStrFormat = model.SumText + "{0:" + model.DataFormat + "}";
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:创建只读列</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
@@ -8738,9 +8803,12 @@ namespace Lskj.Control
|
||||
/* ========= 1. 清空现有列 ========= */
|
||||
bandedGridControlEx.BandedView.Bands.Clear();
|
||||
bandedGridControlEx.BandedView.Columns.Clear();
|
||||
bandedGridControlEx.BandedView.GroupSummary.Clear();
|
||||
bandedGridControlEx.BandedView.OptionsView.ShowFooter = false;
|
||||
|
||||
/* ========= 2. 创建“基本信息”Band ========= */
|
||||
List<GridColumnModel> normalColumns = ColumnList.Where(o => o.IsCustomGroupField == 0 || o.IsCustomGroupField == 3).ToList();
|
||||
bool bandedFirstVisibleColumn = true;
|
||||
|
||||
GridBand normalBand = new GridBand { Caption = "基本信息" };
|
||||
|
||||
@@ -8775,6 +8843,7 @@ namespace Lskj.Control
|
||||
col.AppearanceHeader.ForeColor = RequiredForceColor;
|
||||
}
|
||||
bandedGridControlEx.SetColumnFormat(col, normalCol);
|
||||
SetDynamicBandedColumnSumming(bandedGridControlEx.BandedView, col, normalCol, ref bandedFirstVisibleColumn, false);
|
||||
normalBand.Columns.Add(col);
|
||||
bandedGridControlEx.BandedView.Columns.Add(col);
|
||||
}
|
||||
@@ -8835,6 +8904,7 @@ namespace Lskj.Control
|
||||
subColumn.AppearanceHeader.ForeColor = RequiredForceColor;
|
||||
}
|
||||
bandedGridControlEx.SetColumnFormat(subColumn, subField);
|
||||
SetDynamicBandedColumnSumming(bandedGridControlEx.BandedView, subColumn, subField, ref bandedFirstVisibleColumn, true);
|
||||
dynamicBand.Columns.Add(subColumn);
|
||||
bandedGridControlEx.BandedView.Columns.Add(subColumn);
|
||||
}
|
||||
@@ -8880,9 +8950,11 @@ namespace Lskj.Control
|
||||
/* ========= 1. 清空现有列 ========= */
|
||||
TreeBandedGridControlEx.TreeListObj.Bands.Clear();
|
||||
TreeBandedGridControlEx.TreeListObj.Columns.Clear();
|
||||
TreeBandedGridControlEx.TreeListObj.OptionsView.ShowSummaryFooter = false;
|
||||
|
||||
/* ========= 2. 创建“基本信息”Band ========= */
|
||||
List<GridColumnModel> normalColumns = ColumnList.Where(o => o.IsCustomGroupField == 0 || o.IsCustomGroupField == 3).ToList();
|
||||
bool treeFirstVisibleColumn = true;
|
||||
|
||||
DevExpress.XtraTreeList.Columns.TreeListBand normalBand = new DevExpress.XtraTreeList.Columns.TreeListBand { Caption = "基本信息" };
|
||||
if (this.AggregationFreeze) normalBand.Fixed = DevExpress.XtraTreeList.Columns.FixedStyle.Left;
|
||||
@@ -8920,6 +8992,7 @@ namespace Lskj.Control
|
||||
col.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
|
||||
col.AppearanceHeader.Options.UseTextOptions = true;
|
||||
TreeBandedGridControlEx.SetColumnFormat(col, normalCol);
|
||||
SetDynamicTreeColumnSumming(TreeBandedGridControlEx.TreeListObj, col, normalCol, ref treeFirstVisibleColumn);
|
||||
normalBand.Columns.Add(col);
|
||||
TreeBandedGridControlEx.TreeListObj.Columns.Add(col);
|
||||
}
|
||||
@@ -8984,6 +9057,7 @@ namespace Lskj.Control
|
||||
subColumn.AppearanceHeader.Options.UseTextOptions = true;
|
||||
|
||||
TreeBandedGridControlEx.SetColumnFormat(subColumn, subField);
|
||||
SetDynamicTreeColumnSumming(TreeBandedGridControlEx.TreeListObj, subColumn, subField, ref treeFirstVisibleColumn);
|
||||
dynamicBand.Columns.Add(subColumn);
|
||||
TreeBandedGridControlEx.TreeListObj.Columns.Add(subColumn);
|
||||
}
|
||||
|
||||
@@ -75,6 +75,11 @@ namespace Lskj.Control
|
||||
/// 初始赋值
|
||||
/// </summary>
|
||||
public string ControlValue = string.Empty;
|
||||
/// <summary>
|
||||
/// 保存表格属性用到的key
|
||||
/// </summary>
|
||||
public string CurrentOperColumnKey = string.Empty;
|
||||
|
||||
|
||||
|
||||
public LabelMultiAutoTextEdit()
|
||||
@@ -380,6 +385,7 @@ namespace Lskj.Control
|
||||
_lookUpForm.TextField = TextField;
|
||||
_lookUpForm.SourceSQL = SourceSQL;
|
||||
_lookUpForm.DataSource = dataSource;
|
||||
_lookUpForm.CurrentOperColumnKey = CurrentOperColumnKey;
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:清空选中的值</para>
|
||||
@@ -419,6 +425,7 @@ namespace Lskj.Control
|
||||
_lookUpForm.EditValue = this.EditValue;
|
||||
_lookUpForm.IsType = Model.FieldType;
|
||||
_lookUpForm.EditText = this.TextEdit.Text;
|
||||
_lookUpForm.CurrentOperColumnKey = CurrentOperColumnKey;
|
||||
string sqlValue = string.Empty;
|
||||
if (this.ControlObj != null)
|
||||
{
|
||||
|
||||
@@ -204,7 +204,7 @@ namespace Lskj.Control.Model
|
||||
/// <value>The enable cond.</value>
|
||||
public string RequiredCond { get; set; }
|
||||
/// <summary>
|
||||
/// 可以方式
|
||||
/// 禁用方式(默认禁编,设置为1就禁显)
|
||||
/// </summary>
|
||||
/// <value>The type of the enable.</value>
|
||||
public string DisableType { get; set; }
|
||||
|
||||
@@ -2801,7 +2801,9 @@ namespace Lskj.Control.Model
|
||||
GridColumnModel model = col.Tag as GridColumnModel;
|
||||
if (cell != null)
|
||||
{
|
||||
if (cell.CellType == CellType.Blank)
|
||||
// DevExpress导出的xlsx空值可能是内容为空的String单元格,也应按空单元格处理。
|
||||
if (cell.CellType == CellType.Blank ||
|
||||
(cell.CellType == CellType.String && string.IsNullOrEmpty(cell.StringCellValue)))
|
||||
{
|
||||
//isImportRows = false;
|
||||
continue;
|
||||
@@ -3564,7 +3566,8 @@ namespace Lskj.Control.Model
|
||||
{
|
||||
string field = fields[i];
|
||||
string value = rowResult.Table.Columns.Contains(field) ? rowResult[field] + "" : null;
|
||||
rowItem[field] = value;
|
||||
|
||||
if(rowItem.Table.Columns.Contains(field)) rowItem[field] = value;
|
||||
}
|
||||
}
|
||||
else
|
||||
@@ -3573,7 +3576,7 @@ namespace Lskj.Control.Model
|
||||
for (int i = 0; i < fields.Length; i++)
|
||||
{
|
||||
string field = fields[i];
|
||||
rowItem[field] = DBNull.Value;
|
||||
if (rowItem.Table.Columns.Contains(field)) rowItem[field] = DBNull.Value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -173,6 +173,11 @@ namespace Lskj.Control.Model
|
||||
cmsMenu.Items.Add(menuItem);
|
||||
RightMenuItems.Add(menuItem);
|
||||
}
|
||||
if (menuModel.FontSize != 0)
|
||||
{
|
||||
menuItem.Font = new Font(menuItem.Font.FontFamily, menuModel.FontSize);
|
||||
}
|
||||
|
||||
}
|
||||
if (!string.IsNullOrWhiteSpace(menuModel.ExecuteFirstCode))
|
||||
{
|
||||
@@ -304,7 +309,7 @@ namespace Lskj.Control.Model
|
||||
return;
|
||||
}
|
||||
|
||||
if (model.VerifyUpdate && BaseGridView!=null)
|
||||
if (model.VerifyUpdate && BaseGridView != null)
|
||||
{
|
||||
for (int i = 0; i < BaseGridView.DataRowCount; i++)
|
||||
{
|
||||
@@ -502,7 +507,7 @@ namespace Lskj.Control.Model
|
||||
{
|
||||
tipOnlyOne = false;
|
||||
string prompt = ReplaceHelper.ReplaceRowParam(rowData, model.BeforeMsg);
|
||||
if (model.Mergeexec)
|
||||
if (model.Mergeexec)
|
||||
{
|
||||
//替换[],替换的是多选行中的数据
|
||||
prompt = ReplaceHelper.ReplaceRowParam(rows, prompt.Replace("[", "{").Replace("]", "}"), "", "");
|
||||
@@ -977,7 +982,7 @@ namespace Lskj.Control.Model
|
||||
case -1:
|
||||
if (rValue == -1)
|
||||
{
|
||||
if (SqlHelper.ConnectionType == ConnectionType.SqlServer)
|
||||
if (SqlHelper.ConnectionType == ConnectionType.SqlServer)
|
||||
{
|
||||
SqlStoredProcedurepPrompt.GenerateProcedureExecutionScript(procName, paramList, isFirstFlag, comfirmFlag);
|
||||
}
|
||||
@@ -1811,7 +1816,7 @@ namespace Lskj.Control.Model
|
||||
paramList[2] = ReplaceHelper.ReplaceRowParam(rows, url) + "";
|
||||
}
|
||||
}
|
||||
if (model.DllName.ToLower().Contains("p_PubPrint.lsp".ToLower())&& !model.CancelDefaultReplace)
|
||||
if (model.DllName.ToLower().Contains("p_PubPrint.lsp".ToLower()) && !model.CancelDefaultReplace)
|
||||
{
|
||||
string paramsql1 = paramList[2];
|
||||
paramList[2] = ReplaceHelper.ReplaceRowParam(rows, paramsql1, "'", "'");
|
||||
|
||||
@@ -346,6 +346,10 @@ namespace Lskj.Control.Model
|
||||
/// 右键多选合并不走默认替换(p_PubPrint.lsp)
|
||||
/// </summary>
|
||||
public bool CancelDefaultReplace;
|
||||
/// <summary>
|
||||
/// 右键字体大小
|
||||
/// </summary>
|
||||
public int FontSize;
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -485,6 +489,8 @@ namespace Lskj.Control.Model
|
||||
this.VerifyUpdate = string.IsNullOrWhiteSpace(item["VerifyUpdate"] + "") ? false : "1".Equals(item["VerifyUpdate"] + "");
|
||||
if (item.Table.Columns.Contains("CancelDefaultReplace"))
|
||||
this.CancelDefaultReplace = string.IsNullOrWhiteSpace(item["CancelDefaultReplace"] + "") ? false : "1".Equals(item["CancelDefaultReplace"] + "");
|
||||
|
||||
this.FontSize = item.Table.Columns.Contains("FontSize") && !string.IsNullOrEmpty(item["FontSize"] + "") ? Convert.ToInt32(item["FontSize"] + "") : 0;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -27,7 +27,43 @@ namespace Lskj.Control
|
||||
public sealed class MessageUtil
|
||||
{
|
||||
|
||||
public static string Prompt = string.IsNullOrWhiteSpace(SystemInfo.Instance.DeadlockPrompt) ? "网络连接超时,请稍候再试!" : SystemInfo.Instance.DeadlockPrompt;
|
||||
public static string Prompt = "网络连接超时,请稍候再试!";
|
||||
|
||||
/// <summary>
|
||||
/// 系统配置尚未初始化时不主动访问数据库,读取失败则使用默认死锁提示。
|
||||
/// </summary>
|
||||
private static bool TryGetDeadlockPrompt(string message, out string deadlockPrompt)
|
||||
{
|
||||
deadlockPrompt = message;
|
||||
if (string.IsNullOrEmpty(message) || !message.Contains("与另一个进程被死锁在"))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool promptDeadlock = false;
|
||||
string configuredPrompt = string.Empty;
|
||||
try
|
||||
{
|
||||
SystemInfo systemInfo = SystemInfo.Instance;
|
||||
if (systemInfo != null)
|
||||
{
|
||||
promptDeadlock = systemInfo.PromptDeadlock;
|
||||
configuredPrompt = systemInfo.DeadlockPrompt;
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
// 数据库连接失败或系统参数尚未初始化时,提示框仍使用安全默认值。
|
||||
}
|
||||
|
||||
if (promptDeadlock)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
deadlockPrompt = string.IsNullOrWhiteSpace(configuredPrompt) ? Prompt : configuredPrompt;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -54,8 +90,9 @@ namespace Lskj.Control
|
||||
}
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(msg) && msg.Contains("与另一个进程被死锁在")&& !SystemInfo.Instance.PromptDeadlock)
|
||||
msg = Prompt;
|
||||
string deadlockPrompt;
|
||||
if (TryGetDeadlockPrompt(msg, out deadlockPrompt))
|
||||
msg = deadlockPrompt;
|
||||
if (Business.Impl.LanguageTranslation.Translatable)
|
||||
{
|
||||
msg = Business.Impl.LanguageTranslation.GetTranslatedText(msg);
|
||||
@@ -89,9 +126,10 @@ namespace Lskj.Control
|
||||
}
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(errorMessage) && errorMessage.Contains("与另一个进程被死锁在") && !SystemInfo.Instance.PromptDeadlock)
|
||||
string deadlockPrompt;
|
||||
if (TryGetDeadlockPrompt(errorMessage, out deadlockPrompt))
|
||||
{
|
||||
errorMessage = Prompt;
|
||||
errorMessage = deadlockPrompt;
|
||||
if (Business.Impl.LanguageTranslation.Translatable)
|
||||
{
|
||||
errorMessage = Business.Impl.LanguageTranslation.GetTranslatedText(errorMessage);
|
||||
@@ -165,8 +203,9 @@ namespace Lskj.Control
|
||||
if (Debugger.IsAttached)
|
||||
{
|
||||
string msg = ex == null ? ResourceKeys.UnKownErrorTip : ex.StackTrace;
|
||||
if (!string.IsNullOrEmpty(msg) && msg.Contains("与另一个进程被死锁在") && !SystemInfo.Instance.PromptDeadlock)
|
||||
msg = Prompt;
|
||||
string deadlockPrompt;
|
||||
if (TryGetDeadlockPrompt(msg, out deadlockPrompt))
|
||||
msg = deadlockPrompt;
|
||||
if (Business.Impl.LanguageTranslation.Translatable)
|
||||
{
|
||||
msg = Business.Impl.LanguageTranslation.GetTranslatedText(msg);
|
||||
@@ -176,8 +215,9 @@ namespace Lskj.Control
|
||||
else
|
||||
{
|
||||
string msg = ex == null ? ResourceKeys.UnKownErrorTip : ex.Message; //ResourceKeys.SystemErrorTip + "\r\n" + ex.Message + "\r\n" + ex.StackTrace;
|
||||
if (!string.IsNullOrEmpty(msg) && msg.Contains("与另一个进程被死锁在") && !SystemInfo.Instance.PromptDeadlock)
|
||||
msg = Prompt;
|
||||
string deadlockPrompt;
|
||||
if (TryGetDeadlockPrompt(msg, out deadlockPrompt))
|
||||
msg = deadlockPrompt;
|
||||
if (Business.Impl.LanguageTranslation.Translatable)
|
||||
{
|
||||
msg = Business.Impl.LanguageTranslation.GetTranslatedText(msg);
|
||||
|
||||
@@ -4615,6 +4615,7 @@ namespace Lskj.Control.Model
|
||||
multiAutoEdit.ValueField = model.ValueMember;
|
||||
multiAutoEdit.TextField = model.TextMember;
|
||||
multiAutoEdit.ControlObj = this;
|
||||
multiAutoEdit.CurrentOperColumnKey= Model.ModuleCode + "_" + model.FieldName;
|
||||
//multiAutoEdit.SetDataSource(dataSource);
|
||||
multiAutoEdit.TextBoxProhibition = model.TextBoxProhibition;
|
||||
multiAutoEdit.TextEdit.KeyDown += new KeyEventHandler(OnTextEditKeyDown);
|
||||
|
||||
@@ -31,7 +31,6 @@ using FastReport;
|
||||
using DevExpress.XtraGrid.Views.BandedGrid;
|
||||
using System.Diagnostics;
|
||||
using Lskj.Core;
|
||||
using System.Text.RegularExpressions;
|
||||
using Lskj.Business;
|
||||
using DevExpress.XtraTreeList.Nodes;
|
||||
using DevExpress.XtraTreeList;
|
||||
@@ -680,8 +679,35 @@ namespace Lskj.Control
|
||||
// this.ModuleGridObj.InitlizeSpiltLocation();
|
||||
//}
|
||||
this.ModuleGridObj.SearchObj.SearchGrid(sqlValue);
|
||||
if (!this.IsDragDetail)
|
||||
this.ModuleGridDetailObj.SetDetailGridDataSource();
|
||||
if (!this.IsDragDetail)
|
||||
{
|
||||
bool enter = false;
|
||||
|
||||
try
|
||||
{
|
||||
if (this.ModuleGridObj != null)
|
||||
{
|
||||
DataRow rowItem = this.ModuleGridObj.GridControlObj.GetViewFocusedDataRow();
|
||||
if (this.ModuleGridObj.GridControlObj.CustomGroupSelectedRow != null)
|
||||
{
|
||||
rowItem = this.ModuleGridObj.GridControlObj.CustomGroupSelectedRow;
|
||||
}
|
||||
if (rowItem != null&& !this.SysModel.DoubleClickDetail) enter = true;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
||||
}
|
||||
//enter判断 2026-7-24 添加 因为主表有行改版后事件,主表赋值后会刷新一次,这里是重复刷新(方法里有判断,主表有值执行的逻辑是相同的)
|
||||
//如果是主表有数据,并且绑定了行改变事件,就执行了(重复执行)
|
||||
//如果主表没有数据,就执行(清空明细) 或者绑定的是双击加载明细事件也执行(节点改变后刷新主表,顺便刷新明细)
|
||||
if (!enter)
|
||||
{
|
||||
this.ModuleGridDetailObj.SetDetailGridDataSource();
|
||||
}
|
||||
}
|
||||
|
||||
if (this.treeGridLeft.Visible && ModuleGridDetailObj.GridDetailList != null && ModuleGridDetailObj.GridDetailList.Count > 0)
|
||||
{
|
||||
this.ModuleGridDetailObj.scc_container.PanelVisibility = this.ModuleGridObj.GridControlObj.DataRowCount() == 0 ? SplitPanelVisibility.Panel1 : SplitPanelVisibility.Both;
|
||||
@@ -1851,16 +1877,81 @@ namespace Lskj.Control
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 判断是否是selete开头(可以处理sql前方有注释和空格的情况)
|
||||
/// 判断有效SQL是否以select开头(忽略前方空格、BOM和注释)
|
||||
/// </summary>
|
||||
/// <param name="sqlText"></param>
|
||||
/// <returns></returns>
|
||||
public static bool IsSelectAtStart(string sqlText)
|
||||
{
|
||||
// Remove comments and whitespace at the start of the text
|
||||
string cleanedText = Regex.Replace(sqlText, @"^(\s*--.*?(\r\n|\n)|\s*)*", "");
|
||||
// Check if the remaining text starts with 'select'
|
||||
return cleanedText.StartsWith("select", StringComparison.OrdinalIgnoreCase);
|
||||
if (string.IsNullOrEmpty(sqlText))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
int index = 0;
|
||||
while (index < sqlText.Length)
|
||||
{
|
||||
while (index < sqlText.Length &&
|
||||
(char.IsWhiteSpace(sqlText[index]) || sqlText[index] == '\uFEFF'))
|
||||
{
|
||||
index++;
|
||||
}
|
||||
|
||||
// 跳过SQL开头连续出现的单行注释。
|
||||
if (index + 1 < sqlText.Length && sqlText[index] == '-' && sqlText[index + 1] == '-')
|
||||
{
|
||||
index += 2;
|
||||
while (index < sqlText.Length && sqlText[index] != '\r' && sqlText[index] != '\n')
|
||||
{
|
||||
index++;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
// 跳过块注释,同时兼容SQL Server支持的嵌套块注释。
|
||||
if (index + 1 < sqlText.Length && sqlText[index] == '/' && sqlText[index + 1] == '*')
|
||||
{
|
||||
index += 2;
|
||||
int commentDepth = 1;
|
||||
while (index < sqlText.Length && commentDepth > 0)
|
||||
{
|
||||
if (index + 1 < sqlText.Length && sqlText[index] == '/' && sqlText[index + 1] == '*')
|
||||
{
|
||||
commentDepth++;
|
||||
index += 2;
|
||||
}
|
||||
else if (index + 1 < sqlText.Length && sqlText[index] == '*' && sqlText[index + 1] == '/')
|
||||
{
|
||||
commentDepth--;
|
||||
index += 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
index++;
|
||||
}
|
||||
}
|
||||
|
||||
if (commentDepth > 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
const string selectKeyword = "select";
|
||||
if (index + selectKeyword.Length > sqlText.Length ||
|
||||
string.Compare(sqlText, index, selectKeyword, 0, selectKeyword.Length,
|
||||
StringComparison.OrdinalIgnoreCase) != 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
int nextIndex = index + selectKeyword.Length;
|
||||
return nextIndex == sqlText.Length ||
|
||||
(!char.IsLetterOrDigit(sqlText[nextIndex]) && sqlText[nextIndex] != '_');
|
||||
}
|
||||
|
||||
|
||||
@@ -2000,4 +2091,4 @@ namespace Lskj.Control
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -186,6 +186,8 @@ namespace Lskj.Control.MultiGridLookUp
|
||||
this.Location = new Point((SystemInformation.PrimaryMonitorSize.Width - this.Width) / 2,
|
||||
(SystemInformation.PrimaryMonitorSize.Height - this.Height) / 2);
|
||||
}
|
||||
// 自动列宽和弹窗尺寸计算完成后,最后应用个性化列配置,避免配置被覆盖。
|
||||
this.SetCustomColumns();
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:计算控件Size,只计算一次</para>
|
||||
@@ -374,7 +376,6 @@ namespace Lskj.Control.MultiGridLookUp
|
||||
}
|
||||
}
|
||||
}
|
||||
SetCustomColumns();
|
||||
this.gcDetail.GridControl.DataSource = this.gridControl1.DataSourceTable().Clone();
|
||||
this.gcMain.BestFitColumns();
|
||||
//this.gcDetail.SelectAll();
|
||||
@@ -397,28 +398,53 @@ namespace Lskj.Control.MultiGridLookUp
|
||||
DataTable customTable = this.gcMain.GetCustomColumnByDatabase(this.CurrentOperColumnKey);
|
||||
if (customTable != null && customTable.Rows.Count > 0)
|
||||
{
|
||||
foreach (DataRow rowItem in customTable.Rows)
|
||||
this.gcMain.BeginUpdate();
|
||||
this.gcDetail.BeginUpdate();
|
||||
try
|
||||
{
|
||||
string fieldName = rowItem["fieldName"] + "";
|
||||
int fieldWidth = Convert.ToInt32(rowItem["fieldWidth"]);
|
||||
int index = Convert.ToInt32(rowItem["orderid"]);
|
||||
bool visible = "1".Equals(rowItem["isVisible"] + "") && fieldWidth > 0;
|
||||
bool isFix = "True".Equals(rowItem["IfFixColumn"] + "", StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
GridColumn gridColumn = this.gcMain.Columns.ColumnByName(fieldName);
|
||||
if (gridColumn != null && gridColumn.Visible && gridColumn.Width > 0)
|
||||
foreach (DataRow rowItem in customTable.Rows)
|
||||
{
|
||||
GridColumn colObj = this.gcMain.Columns[fieldName];
|
||||
colObj.VisibleIndex = index;
|
||||
colObj.Width = fieldWidth;
|
||||
colObj.Visible = visible;
|
||||
colObj.Fixed = isFix ? FixedStyle.Left : FixedStyle.None;
|
||||
colObj.OptionsFilter.FilterPopupMode = FilterPopupMode.CheckedList;
|
||||
string fieldName = rowItem["fieldName"] + "";
|
||||
int fieldWidth = Convert.ToInt32(rowItem["fieldWidth"]);
|
||||
int index = Convert.ToInt32(rowItem["orderid"]);
|
||||
bool visible = "1".Equals(rowItem["isVisible"] + "") && fieldWidth > 0;
|
||||
bool isFix = "True".Equals(rowItem["IfFixColumn"] + "", StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
SetCustomColumn(this.gcMain.Columns.ColumnByName(fieldName), fieldWidth, index, visible, isFix);
|
||||
SetCustomColumn(this.gcDetail.Columns.ColumnByName(fieldName), fieldWidth, index, visible, isFix);
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
this.gcDetail.EndUpdate();
|
||||
this.gcMain.EndUpdate();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 应用单列的个性化布局。
|
||||
/// </summary>
|
||||
private static void SetCustomColumn(GridColumn column, int width, int visibleIndex, bool visible, bool isFix)
|
||||
{
|
||||
if (column == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
column.Visible = visible;
|
||||
if (visible)
|
||||
{
|
||||
column.VisibleIndex = visibleIndex;
|
||||
}
|
||||
if (width > 0)
|
||||
{
|
||||
column.Width = width;
|
||||
}
|
||||
column.Fixed = isFix ? FixedStyle.Left : FixedStyle.None;
|
||||
column.OptionsFilter.FilterPopupMode = FilterPopupMode.CheckedList;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>说明:设置默认选中</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
|
||||
@@ -1028,7 +1028,11 @@ namespace Lskj.Control.MultiModelLookUp
|
||||
this.SysModel = new ModuleModel(modelRow);// 系统模块实体对象
|
||||
if (this.SysModel != null)
|
||||
{
|
||||
|
||||
if (this.SysModel.ModuleFrameHeight > 0 && this.SysModel.ModuleFrameWidth > 0)
|
||||
{
|
||||
this.Height = this.SysModel.ModuleFrameHeight;
|
||||
this.Width = this.SysModel.ModuleFrameWidth;
|
||||
}
|
||||
|
||||
switch (this.SysModel.MenuType)
|
||||
{
|
||||
|
||||
@@ -1121,6 +1121,12 @@ namespace Lskj.Control.MultiModelLookUp
|
||||
this.SysModel = new ModuleModel(modelRow);// 系统模块实体对象
|
||||
if (this.SysModel != null)
|
||||
{
|
||||
if (this.SysModel.ModuleFrameHeight > 0 && this.SysModel.ModuleFrameWidth > 0)
|
||||
{
|
||||
this.Height = this.SysModel.ModuleFrameHeight;
|
||||
this.Width = this.SysModel.ModuleFrameWidth;
|
||||
}
|
||||
|
||||
|
||||
|
||||
switch (this.SysModel.MenuType)
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.Core
|
||||
{
|
||||
@@ -148,15 +148,18 @@ namespace Lskj.Core
|
||||
apiHandlerModels = new List<ApiHandlerModel>();
|
||||
apiHandler._dataImpl = new Data.Api.DataImpl();
|
||||
|
||||
apiHandler._dataImpl.dbOperator = new Lskj.Data.ADO.Template.DbTemplate(SqlHelper._connection.ConnectionString, "system.data.sqlclient");
|
||||
apiHandler._dataImpl = new Lskj.Data.Api.DataImpl()//新建数据库连接
|
||||
{
|
||||
dbOperator = new Lskj.Data.ADO.Template.DbTemplate(SqlHelper._connection.ConnectionString, "system.data.sqlclient")
|
||||
};
|
||||
if (isSend)//是否发送数据
|
||||
{
|
||||
apiHandler.GetEventApiSendData(mep, apiHandlerModels);
|
||||
apiHandler.SendEventApiData(apiHandlerModels);
|
||||
apiHandler.GetEventApiSendData(mep, apiHandlerModels, apiHandler._dataImpl);
|
||||
apiHandler.SendEventApiData(apiHandlerModels, apiHandler._dataImpl);
|
||||
}
|
||||
else
|
||||
{
|
||||
apiHandler.GetEventApiSendData(mep, apiHandlerModels);
|
||||
apiHandler.GetEventApiSendData(mep, apiHandlerModels, apiHandler._dataImpl);
|
||||
}
|
||||
this.apiResutMsg = apiHandler.GetApiReturnMsg(apiHandlerModels);
|
||||
}
|
||||
|
||||
@@ -271,6 +271,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lskj.PubCodeDesign", "..\Ls
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lskj.PubBillManagement", "..\Lskj.PubBillManagement\Lskj.PubBillManagement.csproj", "{6CE319BA-1253-41F2-8B59-8173FD7BE3F3}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lskj.PubUpdatePwd", "..\Lskj.PubUpdatePwd\Lskj.PubUpdatePwd.csproj", "{91470E21-B8FB-4A16-967A-912F9E4807E1}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@@ -1741,6 +1743,18 @@ Global
|
||||
{6CE319BA-1253-41F2-8B59-8173FD7BE3F3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{6CE319BA-1253-41F2-8B59-8173FD7BE3F3}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{6CE319BA-1253-41F2-8B59-8173FD7BE3F3}.Release|x86.Build.0 = Release|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{91470E21-B8FB-4A16-967A-912F9E4807E1}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
||||
@@ -468,9 +468,9 @@ namespace Lskj.Model
|
||||
/// </summary>
|
||||
public bool HorizontalMode;
|
||||
/// <summary>
|
||||
/// 树表格老版节点号模式
|
||||
/// 树表格新版节点号模式
|
||||
/// </summary>
|
||||
public bool OldNodeRules;
|
||||
public bool NewNodeRules;
|
||||
/// <summary>
|
||||
/// 新版树节点位数(默认2位,最小2位)
|
||||
/// </summary>
|
||||
@@ -583,8 +583,8 @@ namespace Lskj.Model
|
||||
this.SourceMainPushPullHide = rowItem.Table.Columns.Contains("SourceMainPushPullHide") ? "1".Equals(rowItem["SourceMainPushPullHide"] + "") : false;
|
||||
this.SelectSourceColor = rowItem.Table.Columns.Contains("SelectSourceColor") ? rowItem["SelectSourceColor"] + "" : "";
|
||||
this.HorizontalMode = rowItem.Table.Columns.Contains("HorizontalMode") ? "1".Equals(rowItem["HorizontalMode"] + "") : false;
|
||||
this.OldNodeRules = rowItem.Table.Columns.Contains("OldNodeRules") ? "1".Equals(rowItem["OldNodeRules"] + "") : false;
|
||||
this.TreeNumberNodes = rowItem.Table.Columns.Contains("MessageRefreshTime") && !string.IsNullOrEmpty(rowItem["MessageRefreshTime"] + "") ? Convert.ToInt32(rowItem["MessageRefreshTime"] + "")>2? Convert.ToInt32(rowItem["MessageRefreshTime"] + ""):2 : 2;
|
||||
this.NewNodeRules = rowItem.Table.Columns.Contains("NewNodeRules") ? "1".Equals(rowItem["NewNodeRules"] + "") : false;
|
||||
this.TreeNumberNodes = rowItem.Table.Columns.Contains("TreeNumberNodes") && !string.IsNullOrEmpty(rowItem["TreeNumberNodes"] + "") ? Convert.ToInt32(rowItem["TreeNumberNodes"] + "")>2? Convert.ToInt32(rowItem["TreeNumberNodes"] + ""):2 : 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -585,7 +585,7 @@ namespace Lskj.Model
|
||||
/// </summary>
|
||||
public int AccordingNameSelected;
|
||||
/// <summary>
|
||||
/// 基础档案关闭时候触发存储过程
|
||||
/// 基础档案关闭时候触发存储过程(扫码模块关闭时)
|
||||
/// </summary>
|
||||
public string FrmCloseStored;
|
||||
/// <summary>
|
||||
@@ -1050,6 +1050,14 @@ namespace Lskj.Model
|
||||
///隐藏审核按钮(lskj.pubadd.dll)
|
||||
/// </summary>
|
||||
public bool HideReviewBut;
|
||||
/// <summary>
|
||||
/// 模块弹出框高度
|
||||
/// </summary>
|
||||
public int ModuleFrameHeight;
|
||||
/// <summary>
|
||||
/// 模块弹出框宽度
|
||||
/// </summary>
|
||||
public int ModuleFrameWidth;
|
||||
|
||||
|
||||
#endregion
|
||||
@@ -1243,6 +1251,9 @@ namespace Lskj.Model
|
||||
this.TotalQuantity = rowItem.Table.Columns.Contains("TotalQuantity") ? "1".Equals(rowItem["TotalQuantity"] + "") : false;
|
||||
this.HeaderSortCriteria = rowItem.Table.Columns.Contains("HeaderSortCriteria") ? rowItem["HeaderSortCriteria"] + "" : "";
|
||||
this.HideReviewBut = rowItem.Table.Columns.Contains("HideReviewBut") ? "1".Equals(rowItem["HideReviewBut"] + "") : false;
|
||||
|
||||
this.ModuleFrameHeight = rowItem.Table.Columns.Contains("ModuleFrameHeight") && !string.IsNullOrEmpty(rowItem["ModuleFrameHeight"] + "") ? Convert.ToInt32(rowItem["ModuleFrameHeight"] + "") : 0;
|
||||
this.ModuleFrameWidth = rowItem.Table.Columns.Contains("ModuleFrameWidth") && !string.IsNullOrEmpty(rowItem["ModuleFrameWidth"] + "") ? Convert.ToInt32(rowItem["ModuleFrameWidth"] + "") : 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -439,7 +439,10 @@ namespace Lskj.PubApiSetModule
|
||||
valueEncryptTypeComboBox.Items.Add(new ComBoxModel() { Value = 3, Text = "URL地址加密" });
|
||||
valueEncryptTypeComboBox.Items.Add(new ComBoxModel() { Value = 4, Text = "URL文件Base64" });
|
||||
valueEncryptTypeComboBox.Items.Add(new ComBoxModel() { Value = 5, Text = "RSA" });
|
||||
valueEncryptTypeComboBox.Items.Add(new ComBoxModel() { Value = 103, Text = "道宏发票接口特殊加密" });//道宏发票接口特殊加密
|
||||
valueEncryptTypeComboBox.Items.Add(new ComBoxModel() { Value = 101, Text = "航天凯特特殊加密" });
|
||||
valueEncryptTypeComboBox.Items.Add(new ComBoxModel() { Value = 102, Text = "SHA256ToBase64" });
|
||||
valueEncryptTypeComboBox.Items.Add(new ComBoxModel() { Value = 103, Text = "道宏发票接口特殊加密" });
|
||||
valueEncryptTypeComboBox.Items.Add(new ComBoxModel() { Value = 104, Text = "SHA256ToBit" });
|
||||
#endregion
|
||||
#region 朗速接口主表
|
||||
getIdColumn.OptionsColumn.AllowEdit = false;
|
||||
@@ -607,7 +610,7 @@ namespace Lskj.PubApiSetModule
|
||||
colDic.Add("valueDataType", "int");
|
||||
colDic.Add("unionPmsId", "int");
|
||||
colDic.Add("valueEncryptType", "int");
|
||||
colDic.Add("encryptKey", "int");
|
||||
colDic.Add("encryptKey", "varchar(100)");
|
||||
colDic.Add("allowNull", "int");
|
||||
string isExitApiTab = "select top 1 * from sysObjects where Id=OBJECT_ID(N'P_systemEventApiPmsTab') and xtype='U'";
|
||||
DataTable apiTab = SqlHelper.ExecuteDataTable(isExitApiTab);
|
||||
|
||||
+332
-195
@@ -611,58 +611,67 @@ namespace Lskj.PubBill
|
||||
#endregion
|
||||
#region 加载来源明细
|
||||
GridControlEx gridDetail = new GridControlEx();
|
||||
if (model.sourceDetailType.Equals("1"))
|
||||
if (!string.IsNullOrWhiteSpace(model.DetailModeCode))
|
||||
{
|
||||
//明细为树表格
|
||||
gridDetail = new TreeGridControlEx();
|
||||
billModuleModel.SourceDetailControl = gridDetail;
|
||||
//创建表格列
|
||||
cachesDic.AddTask(gridDetail, "DynamicModel", dynamicModelTask);
|
||||
gridDetail.GetDataCaches(cachesDic, GridCustomColumnStruct.BillSourceDetailGridView + model.FormKey);
|
||||
Task<DataTable> detailGridRowColorsTask = cachesDic.AddTask(gridDetail, "BaseGridRowColors", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRowColors("SOURCEDETAIL_" + model.FormKey);
|
||||
}));
|
||||
Task<DataTable> detailGridRightMenusTask = cachesDic.AddTask(gridDetail, "BaseGridRightMenus", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCEDT_" + model.FormKey);
|
||||
}));
|
||||
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
gridDetail = new GridControlEx();
|
||||
billModuleModel.SourceDetailControl = gridDetail;
|
||||
//创建表格列
|
||||
cachesDic.AddTask(gridDetail, "DynamicModel", dynamicModelTask);
|
||||
gridDetail.GetDataCaches(cachesDic, GridCustomColumnStruct.BillSourceDetailGridView + model.FormKey);
|
||||
Task<DataTable> detailGridRowColorsTask = cachesDic.AddTask(gridDetail, "BaseGridRowColors", new Task<DataTable>(() =>
|
||||
if (model.sourceDetailType.Equals("1"))
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRowColors("SOURCEDETAIL_" + model.FormKey);
|
||||
}));
|
||||
Task<DataTable> detailGridRightMenusTask = cachesDic.AddTask(gridDetail, "BaseGridRightMenus", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCEDT_" + model.FormKey);
|
||||
}));
|
||||
//明细的明细(明细分成左右2个)
|
||||
if (!string.IsNullOrEmpty(model.SourceDetailsDetailsSql))
|
||||
{
|
||||
GridControlEx gridDetail_Details = new GridControlEx();
|
||||
billModuleModel.SourceDetailDetailControl = gridDetail_Details;
|
||||
//创建只读列
|
||||
Task<DataTable> detailDetailsTask = cachesDic.AddTask(gridDetail_Details, "DetailDetails", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.getDetail_Details(model.FormKey);
|
||||
}));
|
||||
//明细为树表格
|
||||
gridDetail = new TreeGridControlEx();
|
||||
billModuleModel.SourceDetailControl = gridDetail;
|
||||
//创建表格列
|
||||
cachesDic.AddTask(gridDetail_Details, "DynamicModel", dynamicModelTask);
|
||||
gridDetail_Details.GetDataCaches(cachesDic);
|
||||
Task<DataTable> detailDetailsGridRightMenusTask = cachesDic.AddTask(gridDetail_Details, "BaseGridRightMenus", new Task<DataTable>(() =>
|
||||
cachesDic.AddTask(gridDetail, "DynamicModel", dynamicModelTask);
|
||||
gridDetail.GetDataCaches(cachesDic, GridCustomColumnStruct.BillSourceDetailGridView + model.FormKey);
|
||||
Task<DataTable> detailGridRowColorsTask = cachesDic.AddTask(gridDetail, "BaseGridRowColors", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCEDTX_" + model.FormKey);
|
||||
return BaseModuleImpl.GetBaseGridRowColors("SOURCEDETAIL_" + model.FormKey);
|
||||
}));
|
||||
Task<DataTable> detailGridRightMenusTask = cachesDic.AddTask(gridDetail, "BaseGridRightMenus", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCEDT_" + model.FormKey);
|
||||
}));
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
gridDetail = new GridControlEx();
|
||||
billModuleModel.SourceDetailControl = gridDetail;
|
||||
//创建表格列
|
||||
cachesDic.AddTask(gridDetail, "DynamicModel", dynamicModelTask);
|
||||
gridDetail.GetDataCaches(cachesDic, GridCustomColumnStruct.BillSourceDetailGridView + model.FormKey);
|
||||
Task<DataTable> detailGridRowColorsTask = cachesDic.AddTask(gridDetail, "BaseGridRowColors", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRowColors("SOURCEDETAIL_" + model.FormKey);
|
||||
}));
|
||||
Task<DataTable> detailGridRightMenusTask = cachesDic.AddTask(gridDetail, "BaseGridRightMenus", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCEDT_" + model.FormKey);
|
||||
}));
|
||||
//明细的明细(明细分成左右2个)
|
||||
if (!string.IsNullOrEmpty(model.SourceDetailsDetailsSql))
|
||||
{
|
||||
GridControlEx gridDetail_Details = new GridControlEx();
|
||||
billModuleModel.SourceDetailDetailControl = gridDetail_Details;
|
||||
//创建只读列
|
||||
Task<DataTable> detailDetailsTask = cachesDic.AddTask(gridDetail_Details, "DetailDetails", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.getDetail_Details(model.FormKey);
|
||||
}));
|
||||
//创建表格列
|
||||
cachesDic.AddTask(gridDetail_Details, "DynamicModel", dynamicModelTask);
|
||||
gridDetail_Details.GetDataCaches(cachesDic);
|
||||
Task<DataTable> detailDetailsGridRightMenusTask = cachesDic.AddTask(gridDetail_Details, "BaseGridRightMenus", new Task<DataTable>(() =>
|
||||
{
|
||||
return BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCEDTX_" + model.FormKey);
|
||||
}));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
BillModuleModelDic.Add(sourceModelRow, billModuleModel);
|
||||
#region 加载来源条件
|
||||
@@ -825,6 +834,9 @@ namespace Lskj.PubBill
|
||||
this.gcMain.Dock = DockStyle.Fill;
|
||||
this.pl_main_center_detail.Controls.Add(this.gcMain);
|
||||
(this.gcMain as TreeGridControlEx).Expansion = this.BillModel.DetailTreeTableExpansion;
|
||||
(this.gcMain as TreeGridControlEx).UseSegmentedNodeId = this.BillModel.NewNodeRules;
|
||||
(this.gcMain as TreeGridControlEx).TreeNumberNodes = this.BillModel.TreeNumberNodes;
|
||||
(this.gcMain as TreeGridControlEx).BillPaste = true;
|
||||
(this.gcMain as TreeGridControlEx).AddRightButton();
|
||||
//节点编号
|
||||
(this.gcMain as TreeGridControlEx).TreeListObj.KeyFieldName = "tap_id";
|
||||
@@ -1881,25 +1893,6 @@ namespace Lskj.PubBill
|
||||
controls = BaseModuleImpl.GetCustomQueryFields(model.FormKey);
|
||||
}
|
||||
|
||||
if (false)
|
||||
{
|
||||
string menuCode = string.Empty;
|
||||
DataRow modelRow = MainImpl.GetSystemdllTab(menuCode);//获取模块信息
|
||||
ModuleModel sysModel = new ModuleModel(modelRow);
|
||||
//设置主表sql
|
||||
//model.SourceSql = sysModel.MenuSql;
|
||||
//获取主表列
|
||||
DataTable dtSourceColumns = BaseModuleImpl.GetBaseGridColumns(sysModel.ModeCode);
|
||||
//获取明细消息
|
||||
|
||||
//明细sql
|
||||
//model.DetailSql
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
XtraTabPage tabPage = new XtraTabPage();
|
||||
tabPage.Text = model.UserName;
|
||||
|
||||
@@ -1924,42 +1917,21 @@ namespace Lskj.PubBill
|
||||
GridControlEx gridControl = null;
|
||||
TreeViewEx treeView = null;
|
||||
|
||||
if (model.SourceType == 1)
|
||||
DataTable SourceMainColumns = new DataTable();
|
||||
if (!string.IsNullOrWhiteSpace(model.SourceModeCode))
|
||||
{
|
||||
// 来源为树类型
|
||||
treeView = sourceControl != null ? (TreeViewEx)sourceControl : new TreeViewEx();
|
||||
treeView.BorderStyle = BorderStyle.None;
|
||||
treeView.Dock = DockStyle.Fill;
|
||||
treeView.TreeNodeKeyField = model.SourceKeyField;
|
||||
treeView.TreeNodeTextField = model.SourceResult;
|
||||
if (!dataCaches.GetValue(treeView, "BindTreeTable", out DataTable bindTreeTable))
|
||||
{
|
||||
bindTreeTable = BaseImpl.GetDataTableResult(model.SourceSql);
|
||||
}
|
||||
treeView.TreeInhibitSort = model.TreeInhibitSort;
|
||||
treeView.BindTreeView(bindTreeTable);
|
||||
treeView.TreeNodeSelectAfter += new TreeViewEventHandler(OnTreeNodeSelectAfter);
|
||||
string menuCode = model.SourceModeCode;
|
||||
DataRow modelRow = MainImpl.GetSystemdllTab(menuCode);//获取模块信息
|
||||
ModuleModel sysModel = new ModuleModel(modelRow);
|
||||
//设置主表sql
|
||||
model.ChangeSourceSql(sysModel.MenuSql);
|
||||
//主表主键
|
||||
string parmaryKey = BaseImpl.GetBasePrimaryKey(sysModel.ModeCode);//获取主键
|
||||
unionModel.ParmaryKey = parmaryKey;
|
||||
|
||||
tabPage.Controls.Add(treeView);
|
||||
}
|
||||
else if (model.SourceType == 5)
|
||||
{
|
||||
model.ChangeSourceType(2);//单据来源显示条数
|
||||
this.IsBillShowCount = true;
|
||||
}
|
||||
else if (model.SourceType == 3 || model.SourceType == 4)
|
||||
{
|
||||
//类型为3,是树表格类型的单据管理。
|
||||
//类型为4,是树表格类型的数据来源
|
||||
gridControl = sourceControl != null ? (TreeGridControlEx)sourceControl : new TreeGridControlEx();
|
||||
gridControl.Dock = DockStyle.Fill;
|
||||
gridControl.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
gridControl.Model = this.SysModel;
|
||||
|
||||
if (!dataCaches.GetValue(gridControl, "SourceColumns", out DataTable dtSourceColumns))
|
||||
{
|
||||
dtSourceColumns = BillImpl.GetSourceColumns(model.Id);
|
||||
}
|
||||
//获取主表列
|
||||
SourceMainColumns = BaseModuleImpl.GetBaseGridColumns(sysModel.ModeCode);
|
||||
if (!dataCaches.GetValue(gridControl, "BaseGridRowColors", out DataTable dtBaseGridRowColors))
|
||||
{
|
||||
dtBaseGridRowColors = BaseModuleImpl.GetBaseGridRowColors("BILLSOURCE_" + model.FormKey);
|
||||
@@ -1968,27 +1940,48 @@ namespace Lskj.PubBill
|
||||
{
|
||||
dtBaseGridRightMenus = BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCE_" + model.FormKey);
|
||||
}
|
||||
if (model.SourceType == 3 || model.SourceType == 4)
|
||||
{
|
||||
gridControl = sourceControl != null ? (TreeGridControlEx)sourceControl : new TreeGridControlEx();
|
||||
gridControl.Dock = DockStyle.Fill;
|
||||
gridControl.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
gridControl.Model = this.SysModel;
|
||||
}
|
||||
else
|
||||
{
|
||||
// 来源为表格类型
|
||||
gridControl = sourceControl != null ? (GridControlEx)sourceControl : new GridControlEx();
|
||||
gridControl.BorderStyle = BorderStyle.None;
|
||||
gridControl.Model = this.SysModel;
|
||||
gridControl.Dock = DockStyle.Fill;
|
||||
gridControl.ExportPermission = this.BillModel.ExportPermission;
|
||||
}
|
||||
|
||||
//节点编号
|
||||
if (!string.IsNullOrWhiteSpace(model.SourceKeyFieldName)) (gridControl as TreeGridControlEx).TreeListObj.KeyFieldName = model.SourceKeyFieldName;
|
||||
//父节点编号
|
||||
if (!string.IsNullOrWhiteSpace(model.SourceParentFieldName)) (gridControl as TreeGridControlEx).TreeListObj.ParentFieldName = model.SourceParentFieldName;
|
||||
|
||||
gridControl.SetReadOnlyColumns(dtSourceColumns, GridCustomColumnStruct.BillSourceGridView + model.FormKey);
|
||||
gridControl.SetReadOnlyColumns(SourceMainColumns, GridCustomColumnStruct.BillSourceGridView + model.FormKey);
|
||||
gridControl.SetGridRowColors(dtBaseGridRowColors);
|
||||
//gridControl.SetGridRightMenus(dtBaseGridRightMenus, this.SysModel, OnGridControlRightCallback);
|
||||
(gridControl as TreeGridControlEx).SetGridRightMenus(dtBaseGridRightMenus, this.SysModel, OnGridControlRightCallback);
|
||||
unionModel.TreeGridControlObj = gridControl as TreeGridControlEx;
|
||||
unionModel.TreeGridControlObj.TreeListObj.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(OnTreeListObjFocusedNodeChanged);
|
||||
gridControl.SetGridRightMenus(dtBaseGridRightMenus, this.SysModel, OnGridControlRightCallback);
|
||||
|
||||
//基础ModuleGridEx
|
||||
// DynamicModuleModel dyncModel = new DynamicModuleModel(new[]
|
||||
//{ sysModel.MenuName, ERPInfo.Instance.UserId, ERPInfo.Instance.UserName,
|
||||
// this.SysModel.Privilege, sysModel.ModeCode, "0" });
|
||||
// ModuleGridEx MainGridEx = new ModuleGridEx();
|
||||
// MainGridEx.Dock = DockStyle.Fill;
|
||||
// MainGridEx.VisibleSearchPanel = false;//禁止上方搜索
|
||||
// MainGridEx.InitializeControl(sysModel, dyncModel);
|
||||
// gridControl = MainGridEx.GridControlObj;
|
||||
|
||||
|
||||
if (BillModel.IsBillSourceCheck == 1)
|
||||
{
|
||||
GridDragGrid.TreeListAddCheckBox((gridControl as TreeGridControlEx).TreeListObj);
|
||||
GridDragGrid.GridAddCheckBox(gridControl.GridView);
|
||||
}
|
||||
|
||||
if (model.SourceType == 4)
|
||||
if (sysModel.TreeAutoMultiHeader == 1)
|
||||
{
|
||||
//模块为树表格
|
||||
model.ChangeSourceType(4);
|
||||
unionModel.TreeGridControlObj = gridControl as TreeGridControlEx;
|
||||
unionModel.TreeGridControlObj.TreeListObj.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(OnTreeListObjFocusedNodeChanged);
|
||||
//来源拖拽到主表
|
||||
if (this.BillModel.DetailTreeTable)
|
||||
{
|
||||
@@ -2003,55 +1996,9 @@ namespace Lskj.PubBill
|
||||
treeGridDragGrid.OnDragComplete += TreeGridDragGrid_OnDragComplete;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
tabPage.Controls.Add(gridControl);
|
||||
}
|
||||
else
|
||||
{
|
||||
// 来源为表格类型
|
||||
gridControl = sourceControl != null ? (GridControlEx)sourceControl : new GridControlEx();
|
||||
gridControl.BorderStyle = BorderStyle.None;
|
||||
gridControl.Model = this.SysModel;
|
||||
gridControl.Dock = DockStyle.Fill;
|
||||
gridControl.ExportPermission = this.BillModel.ExportPermission;
|
||||
|
||||
if (model.LoadFilter)
|
||||
{
|
||||
gridControl.GridView.OptionsView.ShowAutoFilterRow = true;
|
||||
}
|
||||
if (!dataCaches.GetValue(gridControl, "SourceColumns", out DataTable dtSourceColumns))
|
||||
{
|
||||
dtSourceColumns = BillImpl.GetSourceColumns(model.Id);
|
||||
}
|
||||
if (!dataCaches.GetValue(gridControl, "BaseGridRowColors", out DataTable dtBaseGridRowColors))
|
||||
{
|
||||
dtBaseGridRowColors = BaseModuleImpl.GetBaseGridRowColors("BILLSOURCE_" + model.FormKey);
|
||||
}
|
||||
if (!dataCaches.GetValue(gridControl, "BaseGridRightMenus", out DataTable dtBaseGridRightMenus))
|
||||
{
|
||||
dtBaseGridRightMenus = BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCE_" + model.FormKey);
|
||||
}
|
||||
gridControl.SetReadOnlyColumns(dtSourceColumns, GridCustomColumnStruct.BillSourceGridView + model.FormKey);
|
||||
gridControl.SetGridRowColors(dtBaseGridRowColors);
|
||||
gridControl.SetGridRightMenus(dtBaseGridRightMenus, this.SysModel, OnGridControlRightCallback);
|
||||
//gridControl.GridView.SelectionChanged += new SelectionChangedEventHandler(OnGridControlSelectionChanged);
|
||||
//gridControl.GridView.FocusedRowObjectChanged += OnFocusedRowObjectChanged;
|
||||
if (model.DetailsDoubleClick)
|
||||
{
|
||||
gridControl.GridView.DoubleClick += OnSourceGridViewDoubleClick; // 2023-3-11 增加双击配置
|
||||
}
|
||||
else
|
||||
{
|
||||
gridControl.GridView.RowCellClick += OnGridViewRowCellClick; // 2019-11-12 cmd提出改为行点击事件,否则会出现保存提交后,单据管理无法查询出数据
|
||||
}
|
||||
|
||||
if (BillModel.IsBillSourceCheck == 1)
|
||||
{
|
||||
GridDragGrid.GridAddCheckBox(gridControl.GridView);
|
||||
}
|
||||
if (model.SourceType == 0)
|
||||
else
|
||||
{
|
||||
gridControl.GridView.RowCellClick += OnGridViewRowCellClick;
|
||||
//来源拖拽到主表
|
||||
if (this.BillModel.DetailTreeTable)
|
||||
{
|
||||
@@ -2067,8 +2014,177 @@ namespace Lskj.PubBill
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
tabPage.Controls.Add(gridControl);
|
||||
//获取明细信息,第一个为对应的来源明细
|
||||
DataTable table = BaseModuleImpl.GetBaseDetailPages(sysModel.ModeCode);//
|
||||
if (table != null && table.Rows.Count > 0)
|
||||
{
|
||||
DataRow detailsRow = table.Rows[0];
|
||||
GridDetailModel gridDetailModel = new GridDetailModel(detailsRow, new DataTable(), GridCustomColumnStruct.BaseDetailGridView);
|
||||
//第一个页签的模块号 赋值给 来源明细模块号。后续来源明细会根据模块号加载
|
||||
model.DetailModeCode = gridDetailModel.UnionModule;
|
||||
DataRow Detail = MainImpl.GetSystemdllTab(gridDetailModel.UnionModule);//获取模块信息
|
||||
ModuleModel DetailModel = new ModuleModel(Detail);
|
||||
//明细sql gridDetailModel.IsReadOnly || gridDetailModel.IsChart ? gridDetailModel.DetailSql : DetailModel.MenuSql
|
||||
model.ChangeSourceDetailSql(DetailModel.MenuSql);
|
||||
unionModel.GridDetailModel = gridDetailModel;
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
if (model.SourceType == 1)
|
||||
{
|
||||
// 来源为树类型
|
||||
treeView = sourceControl != null ? (TreeViewEx)sourceControl : new TreeViewEx();
|
||||
treeView.BorderStyle = BorderStyle.None;
|
||||
treeView.Dock = DockStyle.Fill;
|
||||
treeView.TreeNodeKeyField = model.SourceKeyField;
|
||||
treeView.TreeNodeTextField = model.SourceResult;
|
||||
if (!dataCaches.GetValue(treeView, "BindTreeTable", out DataTable bindTreeTable))
|
||||
{
|
||||
bindTreeTable = BaseImpl.GetDataTableResult(model.SourceSql);
|
||||
}
|
||||
treeView.TreeInhibitSort = model.TreeInhibitSort;
|
||||
treeView.BindTreeView(bindTreeTable);
|
||||
treeView.TreeNodeSelectAfter += new TreeViewEventHandler(OnTreeNodeSelectAfter);
|
||||
|
||||
tabPage.Controls.Add(treeView);
|
||||
}
|
||||
else if (model.SourceType == 5)
|
||||
{
|
||||
model.ChangeSourceType(2);//单据来源显示条数
|
||||
this.IsBillShowCount = true;
|
||||
}
|
||||
else if (model.SourceType == 3 || model.SourceType == 4)
|
||||
{
|
||||
//类型为3,是树表格类型的单据管理。
|
||||
//类型为4,是树表格类型的数据来源
|
||||
gridControl = sourceControl != null ? (TreeGridControlEx)sourceControl : new TreeGridControlEx();
|
||||
gridControl.Dock = DockStyle.Fill;
|
||||
gridControl.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
gridControl.Model = this.SysModel;
|
||||
|
||||
if (!dataCaches.GetValue(gridControl, "SourceColumns", out DataTable dtSourceColumns))
|
||||
{
|
||||
dtSourceColumns = BillImpl.GetSourceColumns(model.Id);
|
||||
}
|
||||
if (!dataCaches.GetValue(gridControl, "BaseGridRowColors", out DataTable dtBaseGridRowColors))
|
||||
{
|
||||
dtBaseGridRowColors = BaseModuleImpl.GetBaseGridRowColors("BILLSOURCE_" + model.FormKey);
|
||||
}
|
||||
if (!dataCaches.GetValue(gridControl, "BaseGridRightMenus", out DataTable dtBaseGridRightMenus))
|
||||
{
|
||||
dtBaseGridRightMenus = BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCE_" + model.FormKey);
|
||||
}
|
||||
|
||||
//节点编号
|
||||
if (!string.IsNullOrWhiteSpace(model.SourceKeyFieldName)) (gridControl as TreeGridControlEx).TreeListObj.KeyFieldName = model.SourceKeyFieldName;
|
||||
//父节点编号
|
||||
if (!string.IsNullOrWhiteSpace(model.SourceParentFieldName)) (gridControl as TreeGridControlEx).TreeListObj.ParentFieldName = model.SourceParentFieldName;
|
||||
|
||||
gridControl.SetReadOnlyColumns(dtSourceColumns, GridCustomColumnStruct.BillSourceGridView + model.FormKey);
|
||||
gridControl.SetGridRowColors(dtBaseGridRowColors);
|
||||
//gridControl.SetGridRightMenus(dtBaseGridRightMenus, this.SysModel, OnGridControlRightCallback);
|
||||
(gridControl as TreeGridControlEx).SetGridRightMenus(dtBaseGridRightMenus, this.SysModel, OnGridControlRightCallback);
|
||||
unionModel.TreeGridControlObj = gridControl as TreeGridControlEx;
|
||||
unionModel.TreeGridControlObj.TreeListObj.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(OnTreeListObjFocusedNodeChanged);
|
||||
|
||||
|
||||
if (BillModel.IsBillSourceCheck == 1)
|
||||
{
|
||||
GridDragGrid.TreeListAddCheckBox((gridControl as TreeGridControlEx).TreeListObj);
|
||||
}
|
||||
|
||||
if (model.SourceType == 4)
|
||||
{
|
||||
//来源拖拽到主表
|
||||
if (this.BillModel.DetailTreeTable)
|
||||
{
|
||||
TreeGridDragTree treeGridDragTree = new TreeGridDragTree((gridControl as TreeGridControlEx).TreeListObj, (this.gcMain as TreeGridControlEx).TreeListObj);
|
||||
treeGridDragTree.CanDragParentNode = true;
|
||||
treeGridDragTree.NeglectingNodes = true;
|
||||
treeGridDragTree.OnDragComplete += TreeGridDragTree_OnDragComplete;
|
||||
}
|
||||
else
|
||||
{
|
||||
TreeGridDragGrid treeGridDragGrid = new TreeGridDragGrid((gridControl as TreeGridControlEx).TreeListObj, this.gcMain.GridView);
|
||||
treeGridDragGrid.OnDragComplete += TreeGridDragGrid_OnDragComplete;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
tabPage.Controls.Add(gridControl);
|
||||
}
|
||||
else
|
||||
{
|
||||
// 来源为表格类型
|
||||
gridControl = sourceControl != null ? (GridControlEx)sourceControl : new GridControlEx();
|
||||
gridControl.BorderStyle = BorderStyle.None;
|
||||
gridControl.Model = this.SysModel;
|
||||
gridControl.Dock = DockStyle.Fill;
|
||||
gridControl.ExportPermission = this.BillModel.ExportPermission;
|
||||
|
||||
if (model.LoadFilter)
|
||||
{
|
||||
gridControl.GridView.OptionsView.ShowAutoFilterRow = true;
|
||||
}
|
||||
if (!dataCaches.GetValue(gridControl, "SourceColumns", out DataTable dtSourceColumns))
|
||||
{
|
||||
dtSourceColumns = BillImpl.GetSourceColumns(model.Id);
|
||||
}
|
||||
if (!dataCaches.GetValue(gridControl, "BaseGridRowColors", out DataTable dtBaseGridRowColors))
|
||||
{
|
||||
dtBaseGridRowColors = BaseModuleImpl.GetBaseGridRowColors("BILLSOURCE_" + model.FormKey);
|
||||
}
|
||||
if (!dataCaches.GetValue(gridControl, "BaseGridRightMenus", out DataTable dtBaseGridRightMenus))
|
||||
{
|
||||
dtBaseGridRightMenus = BaseModuleImpl.GetBaseGridRightMenus("BILLSOURCE_" + model.FormKey);
|
||||
}
|
||||
gridControl.SetReadOnlyColumns(dtSourceColumns, GridCustomColumnStruct.BillSourceGridView + model.FormKey);
|
||||
gridControl.SetGridRowColors(dtBaseGridRowColors);
|
||||
gridControl.SetGridRightMenus(dtBaseGridRightMenus, this.SysModel, OnGridControlRightCallback);
|
||||
//gridControl.GridView.SelectionChanged += new SelectionChangedEventHandler(OnGridControlSelectionChanged);
|
||||
//gridControl.GridView.FocusedRowObjectChanged += OnFocusedRowObjectChanged;
|
||||
if (model.DetailsDoubleClick)
|
||||
{
|
||||
gridControl.GridView.DoubleClick += OnSourceGridViewDoubleClick; // 2023-3-11 增加双击配置
|
||||
}
|
||||
else
|
||||
{
|
||||
gridControl.GridView.RowCellClick += OnGridViewRowCellClick; // 2019-11-12 cmd提出改为行点击事件,否则会出现保存提交后,单据管理无法查询出数据
|
||||
}
|
||||
|
||||
if (BillModel.IsBillSourceCheck == 1)
|
||||
{
|
||||
GridDragGrid.GridAddCheckBox(gridControl.GridView);
|
||||
}
|
||||
if (model.SourceType == 0)
|
||||
{
|
||||
//来源拖拽到主表
|
||||
if (this.BillModel.DetailTreeTable)
|
||||
{
|
||||
GridDragTreeGrid dragDetailGrid = new GridDragTreeGrid(gridControl.GridView, (this.gcMain as TreeGridControlEx).TreeListObj);
|
||||
dragDetailGrid.CanDragParentNode = true;
|
||||
dragDetailGrid.NeglectingNodes = true;
|
||||
dragDetailGrid.OnDragComplete += DragDetailGrid_OnDragMainGridCompleted;
|
||||
}
|
||||
else
|
||||
{
|
||||
GridDragGrid dragMainGrid = new GridDragGrid(gridControl.GridView, this.gcMain.GridView);
|
||||
dragMainGrid.OnDragComplete += new GridFragGridCompleteEventHandler(OnDragMainGridCompleted);
|
||||
}
|
||||
}
|
||||
|
||||
tabPage.Controls.Add(gridControl);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region 加载来源明细
|
||||
@@ -2089,22 +2205,19 @@ namespace Lskj.PubBill
|
||||
|
||||
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(model.DetailMenuCode))
|
||||
if (!string.IsNullOrWhiteSpace(model.DetailModeCode))
|
||||
{
|
||||
//来源明细配置了模块号,根据模块号创建对应的ModuleGridEx
|
||||
//ModuleGridEx主要是用保存的功能,数据源sql还是根据配置的为准
|
||||
DataRow modelRow = MainImpl.GetSystemdllTab(model.DetailMenuCode);//获取模块信息
|
||||
DataRow modelRow = MainImpl.GetSystemdllTab(model.DetailModeCode);//获取模块信息
|
||||
if (modelRow == null)
|
||||
{
|
||||
MessageUtil.Show($"没有找到编号为 {model.DetailMenuCode} 的模块信息");
|
||||
MessageUtil.Show($"没有找到编号为 {model.DetailModeCode} 的模块信息");
|
||||
gridDetail.Parent = gridDetail;
|
||||
continue;
|
||||
}
|
||||
|
||||
ModuleModel sysModel = new ModuleModel(modelRow);
|
||||
//设置主表sql
|
||||
//model.SourceSql = sysModel.MenuSql;
|
||||
|
||||
DynamicModuleModel dyncModel = new DynamicModuleModel(new[]
|
||||
{ sysModel.MenuName, ERPInfo.Instance.UserId, ERPInfo.Instance.UserName,
|
||||
this.SysModel.Privilege, sysModel.ModeCode, "0" });
|
||||
@@ -3942,6 +4055,14 @@ namespace Lskj.PubBill
|
||||
}
|
||||
else
|
||||
{
|
||||
if (unionModel.GridDetailModel != null && !string.IsNullOrWhiteSpace(unionModel.ParmaryKey)&& rowItem!=null)
|
||||
{
|
||||
//来源主表配置的模块,来源明细sql要拼接条件
|
||||
string fieldName = !string.IsNullOrEmpty(unionModel.GridDetailModel.UnionParentField) && rowItem.Table.Columns.Contains(unionModel.GridDetailModel.UnionParentField) ? unionModel.GridDetailModel.UnionParentField : unionModel.ParmaryKey;
|
||||
DetailSql = ReplaceHelper.ReplaceWhereCond(DetailSql) + string.Format(" and {0}='{1}'", unionModel.GridDetailModel.UnionValue, rowItem[fieldName]+"");
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
//有复选框的页签在刷新前清空选中行,否则合计在刷新数据源后不会自带改变
|
||||
@@ -6927,7 +7048,7 @@ namespace Lskj.PubBill
|
||||
{
|
||||
string addSql = ReplaceHelper.ReplaceRowParam(rowItem, ReplaceHelper.ReplaceUserInfo(unionModel.AddDataSql));
|
||||
DataTable dataTable = MainImpl.GetDataTableResult(addSql);
|
||||
DragAddTable(dataTable, (int.Parse((this.gcMain as TreeGridControlEx).GetNewNodesId()) - 1) + "");////上方的新增行的id默认是最大的
|
||||
DragAddTable(dataTable, (this.gcMain as TreeGridControlEx).GetLastNodesId(Pid));////上方的新增行的id默认是最大的
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8795,7 +8916,7 @@ namespace Lskj.PubBill
|
||||
//添加拖拽行对应的数据源
|
||||
string addSql = ReplaceHelper.ReplaceRowParam(e.GridViewSelectRows, ReplaceHelper.ReplaceUserInfo(unionModel.AddDataSql));
|
||||
DataTable dataTable = MainImpl.GetDataTableResult(addSql);
|
||||
DragAddTable(dataTable, (int.Parse((this.gcMain as TreeGridControlEx).GetNewNodesId()) - 1) + "");//上方的新增行的id默认是最大的
|
||||
DragAddTable(dataTable, (this.gcMain as TreeGridControlEx).GetLastNodesId(Pid));//上方的新增行的id默认是最大的
|
||||
}
|
||||
}
|
||||
this.gcMain.GridView.SelectRowHandler(oldRowHandle);
|
||||
@@ -8833,36 +8954,46 @@ namespace Lskj.PubBill
|
||||
//数据源的id和pid全部加上目标节点(加上后当前数据源就是目标节点的子节点数据源)
|
||||
if (dataTable.Columns.Contains(ParentFieldName) && dataTable.Columns.Contains(KeyFieldName))
|
||||
{
|
||||
//当前树表格中最大的id号
|
||||
int NodeId = int.Parse((this.gcMain as TreeGridControlEx).GetNewNodesId()) - 1;
|
||||
//当前树表格中如果id为null,要赋值的id值(节点id不能为null)
|
||||
int NewNodeId = int.Parse((this.gcMain as TreeGridControlEx).GetNewNodesId());
|
||||
if (this.BillModel.NewNodeRules)
|
||||
{
|
||||
dataTable = (this.gcMain as TreeGridControlEx).PrepareNodeIdsForInsert(dataTable, Pid);
|
||||
}
|
||||
else
|
||||
{
|
||||
//当前树表格中最大的id号
|
||||
int NodeId = int.Parse((this.gcMain as TreeGridControlEx).GetNewNodesId()) - 1;
|
||||
//当前树表格中如果id为null,要赋值的id值(节点id不能为null)
|
||||
int NewNodeId = int.Parse((this.gcMain as TreeGridControlEx).GetNewNodesId());
|
||||
|
||||
//根据当前的节点号,改变新增数据源中的节点号
|
||||
foreach (DataRow rowItem in dataTable.Rows)
|
||||
{
|
||||
// 新增表格中的数据id全部加上最大id号,如果是空就默认去赋最大id+1的值
|
||||
if (!string.IsNullOrWhiteSpace(rowItem[KeyFieldName] + ""))
|
||||
{
|
||||
rowItem[KeyFieldName] = int.Parse(rowItem[KeyFieldName] + "") + NodeId;
|
||||
}
|
||||
else
|
||||
{
|
||||
rowItem[KeyFieldName] = NewNodeId;
|
||||
NewNodeId++;
|
||||
}
|
||||
|
||||
//pid为0或者null的改成目标节点的节点号,有值的默认加上最大id值
|
||||
if (string.IsNullOrWhiteSpace(rowItem[ParentFieldName] + "") || int.Parse(rowItem[ParentFieldName] + "") == 0)
|
||||
{
|
||||
rowItem[ParentFieldName] = Pid;
|
||||
|
||||
}
|
||||
else if (int.Parse(rowItem[ParentFieldName] + "") > 0)
|
||||
{
|
||||
rowItem[ParentFieldName] = int.Parse(rowItem[ParentFieldName] + "") + NodeId;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//根据当前的节点号,改变新增数据源中的节点号
|
||||
foreach (DataRow rowItem in dataTable.Rows)
|
||||
{
|
||||
// 新增表格中的数据id全部加上最大id号,如果是空就默认去赋最大id+1的值
|
||||
if (!string.IsNullOrWhiteSpace(rowItem[KeyFieldName] + ""))
|
||||
{
|
||||
rowItem[KeyFieldName] = int.Parse(rowItem[KeyFieldName] + "") + NodeId;
|
||||
}
|
||||
else
|
||||
{
|
||||
rowItem[KeyFieldName] = NewNodeId;
|
||||
NewNodeId++;
|
||||
}
|
||||
|
||||
//pid为0或者null的改成目标节点的节点号,有值的默认加上最大id值
|
||||
if (string.IsNullOrWhiteSpace(rowItem[ParentFieldName] + "") || int.Parse(rowItem[ParentFieldName] + "") == 0)
|
||||
{
|
||||
rowItem[ParentFieldName] = Pid;
|
||||
|
||||
}
|
||||
else if (int.Parse(rowItem[ParentFieldName] + "") > 0)
|
||||
{
|
||||
rowItem[ParentFieldName] = int.Parse(rowItem[ParentFieldName] + "") + NodeId;
|
||||
}
|
||||
|
||||
DataRow newRow = TreeTable.NewRow();
|
||||
newRow.BeginEdit();
|
||||
// 赋值明细字段
|
||||
@@ -9171,9 +9302,9 @@ namespace Lskj.PubBill
|
||||
}
|
||||
}
|
||||
(this.gcMain as TreeGridControlEx).TreeListObj.EndUpdate();
|
||||
if (string.IsNullOrWhiteSpace(newRow[(this.gcMain as TreeGridControlEx).TreeListObj.KeyFieldName] + ""))
|
||||
if (this.BillModel.NewNodeRules || string.IsNullOrWhiteSpace(newRow[(this.gcMain as TreeGridControlEx).TreeListObj.KeyFieldName] + ""))
|
||||
{
|
||||
newRow[(this.gcMain as TreeGridControlEx).TreeListObj.KeyFieldName] = (this.gcMain as TreeGridControlEx).GetNewNodesId();//节点id为空,就默认给当前数据源最大id+1
|
||||
newRow[(this.gcMain as TreeGridControlEx).TreeListObj.KeyFieldName] = (this.gcMain as TreeGridControlEx).GetNewNodesId(Pid);//节点id为空,就默认生成节点id
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(Pid))
|
||||
@@ -9338,7 +9469,13 @@ namespace Lskj.PubBill
|
||||
LogHelper.Instance.WriteError(ex);
|
||||
}
|
||||
}
|
||||
// newRow[(this.gcMain as TreeGridControlEx).TreeListObj.KeyFieldName] = (this.gcMain as TreeGridControlEx).GetNewNodesId();//节点id
|
||||
if (this.BillModel.NewNodeRules)
|
||||
{
|
||||
string keyFieldName = (this.gcMain as TreeGridControlEx).TreeListObj.KeyFieldName;
|
||||
string parentFieldName = (this.gcMain as TreeGridControlEx).TreeListObj.ParentFieldName;
|
||||
newRow[keyFieldName] = (this.gcMain as TreeGridControlEx).GetNewNodesId("0", gridTable);
|
||||
newRow[parentFieldName] = "0";
|
||||
}
|
||||
newRow.EndEdit();
|
||||
gridTable.Rows.Add(newRow);
|
||||
|
||||
@@ -10336,4 +10473,4 @@ namespace Lskj.PubBill
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -61,9 +61,11 @@ namespace Lskj.PubBill.Model
|
||||
|
||||
public string Orderid;// 来源页签序号
|
||||
|
||||
public string DetailMenuCode;// 来源模块号
|
||||
public string SourceModeCode;// 来源模块号
|
||||
|
||||
public string DetailModeCode;// 来源明细模块号
|
||||
|
||||
|
||||
|
||||
public BillSourceModel(DataRow item)
|
||||
{
|
||||
@@ -110,7 +112,8 @@ namespace Lskj.PubBill.Model
|
||||
this.DragAndSave = item.Table.Columns.Contains("DragAndSave") && "1".Equals(item["DragAndSave"] + "") ? true : false;
|
||||
this.TreeInhibitSort = item.Table.Columns.Contains("TreeInhibitSort") && "1".Equals(item["TreeInhibitSort"] + "") ? true : false;
|
||||
this.Orderid = item.Table.Columns.Contains("Orderid") ? item["Orderid"] + "" : "";
|
||||
this.DetailMenuCode = item.Table.Columns.Contains("DetailMenuCode") ? item["DetailMenuCode"] + "" : "";
|
||||
this.SourceModeCode = item.Table.Columns.Contains("SourceModeCode") ? item["SourceModeCode"] + "" : "";
|
||||
this.DetailModeCode = item.Table.Columns.Contains("DetailModeCode") ? item["DetailModeCode"] + "" : "";
|
||||
}
|
||||
/// <summary>
|
||||
/// 改变来源类型
|
||||
@@ -129,5 +132,24 @@ namespace Lskj.PubBill.Model
|
||||
{
|
||||
this.sourceDetailType = sourceDetailType;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 改变来源主表sql
|
||||
/// </summary>
|
||||
/// <param name="sourceType"></param>
|
||||
public void ChangeSourceSql(string Sql)
|
||||
{
|
||||
this.SourceSql = Sql;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 改变来源明细sql
|
||||
/// </summary>
|
||||
/// <param name="sourceType"></param>
|
||||
public void ChangeSourceDetailSql(string Sql)
|
||||
{
|
||||
this.DetailSql = Sql;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,10 +54,7 @@ namespace Lskj.PubBill.Model
|
||||
/// 单据来源明细表格的明细
|
||||
/// </summary>
|
||||
public GridControlEx GridDetailDetailControlObj;
|
||||
/// <summary>
|
||||
/// 单据来源明细模块
|
||||
/// </summary>
|
||||
public ModuleGridEx GridDetailModuleGridEx;
|
||||
|
||||
|
||||
|
||||
public bool IsChange = false;
|
||||
@@ -72,5 +69,18 @@ namespace Lskj.PubBill.Model
|
||||
public string AddDataCondition;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 单据来源明细模块
|
||||
/// </summary>
|
||||
public ModuleGridEx GridDetailModuleGridEx;
|
||||
/// <summary>
|
||||
/// 主表配置模块号的情况下,对应的明细选项
|
||||
/// </summary>
|
||||
public GridDetailModel GridDetailModel;
|
||||
/// <summary>
|
||||
/// 来源主表主键
|
||||
/// </summary>
|
||||
public string ParmaryKey;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
+215
@@ -0,0 +1,215 @@
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
partial class BillModule
|
||||
{
|
||||
/// <summary>
|
||||
/// 必需的设计器变量。
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// 清理所有正在使用的资源。
|
||||
/// </summary>
|
||||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region 组件设计器生成的代码
|
||||
|
||||
/// <summary>
|
||||
/// 设计器支持所需的方法 - 不要
|
||||
/// 使用代码编辑器修改此方法的内容。
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.barManager1 = new DevExpress.XtraBars.BarManager();
|
||||
this.barDockControl1 = new DevExpress.XtraBars.BarDockControl();
|
||||
this.barDockControl2 = new DevExpress.XtraBars.BarDockControl();
|
||||
this.barDockControl3 = new DevExpress.XtraBars.BarDockControl();
|
||||
this.barDockControl5 = new DevExpress.XtraBars.BarDockControl();
|
||||
this.pmFP = new DevExpress.XtraBars.PopupMenu();
|
||||
this.pmBillExp = new DevExpress.XtraBars.PopupMenu();
|
||||
this.pmBill = new DevExpress.XtraBars.PopupMenu();
|
||||
this.pMprint = new DevExpress.XtraBars.PopupMenu();
|
||||
this.pMenu = new DevExpress.XtraBars.PopupMenu();
|
||||
this.tb_buttom = new Lskj.Control.TabControlEx();
|
||||
this.pl_Main = new DevExpress.XtraEditors.PanelControl();
|
||||
this.xtc_main_container = new DevExpress.XtraTab.XtraTabControl();
|
||||
this.ssc_main = new DevExpress.XtraEditors.SplitContainerControl();
|
||||
((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pmFP)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pmBillExp)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pmBill)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pMprint)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pMenu)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_Main)).BeginInit();
|
||||
this.pl_Main.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xtc_main_container)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.ssc_main)).BeginInit();
|
||||
this.ssc_main.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// barManager1
|
||||
//
|
||||
this.barManager1.DockControls.Add(this.barDockControl1);
|
||||
this.barManager1.DockControls.Add(this.barDockControl2);
|
||||
this.barManager1.DockControls.Add(this.barDockControl3);
|
||||
this.barManager1.DockControls.Add(this.barDockControl5);
|
||||
this.barManager1.Form = this;
|
||||
this.barManager1.MaxItemId = 0;
|
||||
//
|
||||
// barDockControl1
|
||||
//
|
||||
this.barDockControl1.CausesValidation = false;
|
||||
this.barDockControl1.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.barDockControl1.Location = new System.Drawing.Point(0, 0);
|
||||
this.barDockControl1.Size = new System.Drawing.Size(1511, 0);
|
||||
//
|
||||
// barDockControl2
|
||||
//
|
||||
this.barDockControl2.CausesValidation = false;
|
||||
this.barDockControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.barDockControl2.Location = new System.Drawing.Point(0, 730);
|
||||
this.barDockControl2.Size = new System.Drawing.Size(1511, 0);
|
||||
//
|
||||
// barDockControl3
|
||||
//
|
||||
this.barDockControl3.CausesValidation = false;
|
||||
this.barDockControl3.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.barDockControl3.Location = new System.Drawing.Point(0, 0);
|
||||
this.barDockControl3.Size = new System.Drawing.Size(0, 730);
|
||||
//
|
||||
// barDockControl5
|
||||
//
|
||||
this.barDockControl5.CausesValidation = false;
|
||||
this.barDockControl5.Dock = System.Windows.Forms.DockStyle.Right;
|
||||
this.barDockControl5.Location = new System.Drawing.Point(1511, 0);
|
||||
this.barDockControl5.Size = new System.Drawing.Size(0, 730);
|
||||
//
|
||||
// pmFP
|
||||
//
|
||||
this.pmFP.Manager = this.barManager1;
|
||||
this.pmFP.Name = "pmFP";
|
||||
//
|
||||
// pmBillExp
|
||||
//
|
||||
this.pmBillExp.Manager = this.barManager1;
|
||||
this.pmBillExp.Name = "pmBillExp";
|
||||
//
|
||||
// pmBill
|
||||
//
|
||||
this.pmBill.Manager = this.barManager1;
|
||||
this.pmBill.Name = "pmBill";
|
||||
//
|
||||
// pMprint
|
||||
//
|
||||
this.pMprint.Manager = this.barManager1;
|
||||
this.pMprint.Name = "pMprint";
|
||||
//
|
||||
// pMenu
|
||||
//
|
||||
this.pMenu.Manager = this.barManager1;
|
||||
this.pMenu.Name = "pMenu";
|
||||
//
|
||||
// tb_buttom
|
||||
//
|
||||
this.tb_buttom.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tb_buttom.Location = new System.Drawing.Point(0, 0);
|
||||
this.tb_buttom.Name = "tb_buttom";
|
||||
this.tb_buttom.Size = new System.Drawing.Size(1511, 280);
|
||||
this.tb_buttom.TabIndex = 25;
|
||||
this.tb_buttom.Load += new System.EventHandler(this.tb_buttom_Load);
|
||||
//
|
||||
// pl_Main
|
||||
//
|
||||
this.pl_Main.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_Main.Appearance.Options.UseBackColor = true;
|
||||
this.pl_Main.Controls.Add(this.xtc_main_container);
|
||||
this.pl_Main.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_Main.Location = new System.Drawing.Point(0, 0);
|
||||
this.pl_Main.Name = "pl_Main";
|
||||
this.pl_Main.Size = new System.Drawing.Size(1511, 445);
|
||||
this.pl_Main.TabIndex = 5;
|
||||
//
|
||||
// xtc_main_container
|
||||
//
|
||||
this.xtc_main_container.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xtc_main_container.Appearance.Options.UseBackColor = true;
|
||||
this.xtc_main_container.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.xtc_main_container.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Bottom;
|
||||
this.xtc_main_container.Location = new System.Drawing.Point(2, 2);
|
||||
this.xtc_main_container.Name = "xtc_main_container";
|
||||
this.xtc_main_container.Size = new System.Drawing.Size(1507, 441);
|
||||
this.xtc_main_container.TabIndex = 0;
|
||||
this.xtc_main_container.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.OnTabSelectedPageChanged);
|
||||
//
|
||||
// ssc_main
|
||||
//
|
||||
this.ssc_main.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.ssc_main.Appearance.Options.UseBackColor = true;
|
||||
this.ssc_main.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel2;
|
||||
this.ssc_main.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.ssc_main.Horizontal = false;
|
||||
this.ssc_main.Location = new System.Drawing.Point(0, 0);
|
||||
this.ssc_main.Name = "ssc_main";
|
||||
this.ssc_main.Panel1.Controls.Add(this.pl_Main);
|
||||
this.ssc_main.Panel1.Text = "Panel1";
|
||||
this.ssc_main.Panel2.Controls.Add(this.tb_buttom);
|
||||
this.ssc_main.Panel2.Text = "Panel2";
|
||||
this.ssc_main.Size = new System.Drawing.Size(1511, 730);
|
||||
this.ssc_main.SplitterPosition = 445;
|
||||
this.ssc_main.TabIndex = 0;
|
||||
this.ssc_main.Text = "splitContainerControl1";
|
||||
this.ssc_main.SplitterMoved += new System.EventHandler(this.OnMainSplitterMoved);
|
||||
//
|
||||
// BillModule
|
||||
//
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.Controls.Add(this.ssc_main);
|
||||
this.Controls.Add(this.barDockControl3);
|
||||
this.Controls.Add(this.barDockControl5);
|
||||
this.Controls.Add(this.barDockControl2);
|
||||
this.Controls.Add(this.barDockControl1);
|
||||
this.Name = "BillModule";
|
||||
this.Size = new System.Drawing.Size(1511, 730);
|
||||
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.OnFrmMainKeyDown);
|
||||
((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pmFP)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pmBillExp)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pmBill)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pMprint)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pMenu)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_Main)).EndInit();
|
||||
this.pl_Main.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.xtc_main_container)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.ssc_main)).EndInit();
|
||||
this.ssc_main.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
private DevExpress.XtraBars.PopupMenu pMenu;
|
||||
private DevExpress.XtraBars.BarManager barManager1;
|
||||
private DevExpress.XtraBars.BarDockControl barDockControl1;
|
||||
private DevExpress.XtraBars.BarDockControl barDockControl2;
|
||||
private DevExpress.XtraBars.BarDockControl barDockControl3;
|
||||
private DevExpress.XtraBars.BarDockControl barDockControl5;
|
||||
private DevExpress.XtraBars.PopupMenu pmBillExp;
|
||||
private DevExpress.XtraBars.PopupMenu pmBill;
|
||||
private DevExpress.XtraBars.PopupMenu pMprint;
|
||||
private DevExpress.XtraBars.PopupMenu pmFP;
|
||||
private DevExpress.XtraEditors.SplitContainerControl ssc_main;
|
||||
private DevExpress.XtraEditors.PanelControl pl_Main;
|
||||
private DevExpress.XtraTab.XtraTabControl xtc_main_container;
|
||||
private Control.TabControlEx tb_buttom;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,141 @@
|
||||
<?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>
|
||||
<metadata name="barManager1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>642, 21</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>59</value>
|
||||
</metadata>
|
||||
<metadata name="pmFP.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>1078, 23</value>
|
||||
</metadata>
|
||||
<metadata name="pmBillExp.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>873, 21</value>
|
||||
</metadata>
|
||||
<metadata name="pmBill.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>983, 21</value>
|
||||
</metadata>
|
||||
<metadata name="pMprint.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>773, 21</value>
|
||||
</metadata>
|
||||
<metadata name="pMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>548, 21</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@@ -0,0 +1,64 @@
|
||||
/******************************
|
||||
* 说明:单据模版入口
|
||||
* 创建人:龚宇超
|
||||
* 创建日期:2017-11-23
|
||||
* 修改人:
|
||||
* 修改日期:
|
||||
* 修改备注:
|
||||
* 版本:1.0.0.0
|
||||
******************************/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Lskj.Util;
|
||||
using System.Windows.Forms;
|
||||
using Lskj.Model;
|
||||
using Lskj.Business;
|
||||
using Lskj.Business.Impl;
|
||||
using System.Collections;
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据模版入口
|
||||
/// </summary>
|
||||
public class DllBaseClass : IForm
|
||||
{
|
||||
public DllBaseClass()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public DllBaseClass(string[] obj)
|
||||
{
|
||||
try
|
||||
{
|
||||
FrmMain main = new FrmMain();
|
||||
DynamicBillModel moduleModel = new DynamicBillModel(obj);
|
||||
main.SysModel = moduleModel;
|
||||
moduleModel.DataCaches = new Dictionary<object, Hashtable>();
|
||||
if (SystemInfo.Instance.OptimizationSpeed) main.GetDataCaches(moduleModel.DataCaches);
|
||||
GridEnum gridEnum = GridEnum.GridView;
|
||||
if (!moduleModel.DataCaches.GetValue(main, "FormType", out int formType))
|
||||
{
|
||||
formType = BaseImpl.GetBillDetailType(moduleModel.ModuleCode);
|
||||
}
|
||||
if (formType == 1)
|
||||
{
|
||||
gridEnum = GridEnum.BandedGridView;
|
||||
}
|
||||
main.SysModel.GridEnumObj = gridEnum;
|
||||
this.SubForm = main;
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogUtil.WriteError("Lskj.PubBillManagement.dll--参数错误-->" + obj.ToString(), ex);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public Form SubForm { get; set; }
|
||||
}
|
||||
}
|
||||
+81
@@ -0,0 +1,81 @@
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
partial class FrmAdd
|
||||
{
|
||||
/// <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 Windows Form 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.txtEdit = new DevExpress.XtraEditors.TextEdit();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
((System.ComponentModel.ISupportInitialize)(this.txtEdit.Properties)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// txtEdit
|
||||
//
|
||||
this.txtEdit.EditValue = "1";
|
||||
this.txtEdit.Location = new System.Drawing.Point(12, 39);
|
||||
this.txtEdit.Name = "txtEdit";
|
||||
this.txtEdit.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 12F);
|
||||
this.txtEdit.Properties.Appearance.Options.UseFont = true;
|
||||
this.txtEdit.Size = new System.Drawing.Size(198, 28);
|
||||
this.txtEdit.TabIndex = 25;
|
||||
this.txtEdit.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtEdit_KeyDown);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(10, 14);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(77, 12);
|
||||
this.label1.TabIndex = 22;
|
||||
this.label1.Text = "请输入数量:";
|
||||
//
|
||||
// FrmAddRole
|
||||
//
|
||||
this.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.Appearance.Options.UseBackColor = true;
|
||||
this.Appearance.Options.UseFont = true;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(219, 96);
|
||||
this.Controls.Add(this.txtEdit);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.Name = "FrmAddRole";
|
||||
this.Text = "";
|
||||
((System.ComponentModel.ISupportInitialize)(this.txtEdit.Properties)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.XtraEditors.TextEdit txtEdit;
|
||||
private System.Windows.Forms.Label label1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using Lskj.Control;
|
||||
using Lskj.Business;
|
||||
using Lskj.Business.Impl;
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
public partial class FrmAdd : BaseForm
|
||||
{
|
||||
public int Quantity;
|
||||
public Label LabelObj { get { return label1; } }
|
||||
|
||||
public FrmAdd()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>说明:确定事件</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2019-06-21 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The sender.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
void OnBtnOKClick(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
string text=this.txtEdit.Text;
|
||||
if (string.IsNullOrWhiteSpace(text)) text = "0";
|
||||
if (!this.IsDigitsOnly(text))
|
||||
{
|
||||
MessageUtil.Show("请输入数字");
|
||||
}
|
||||
|
||||
this.Quantity = int.Parse(text);
|
||||
this.Close();
|
||||
this.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogUtil.WriteError("确定事件出错!", ex);
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message, ex.Message);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:取消事件</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2019-06-21 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The sender.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
void OnBtnCancelClick(object sender, EventArgs e)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
|
||||
|
||||
bool IsDigitsOnly(string input)
|
||||
{
|
||||
foreach (char c in input)
|
||||
{
|
||||
if (!char.IsDigit(c))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private void txtEdit_KeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
if (e.KeyCode == Keys.Enter)
|
||||
{
|
||||
string text = this.txtEdit.Text;
|
||||
|
||||
if (string.IsNullOrWhiteSpace(text)) return;
|
||||
|
||||
if (!this.IsDigitsOnly(text))
|
||||
{
|
||||
MessageUtil.Show("请输入数字");
|
||||
}
|
||||
if (int.Parse(text) > 0)
|
||||
{
|
||||
this.Quantity = int.Parse(text);
|
||||
this.Close();
|
||||
this.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
MessageUtil.Show("请检查输入数量");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
+639
@@ -0,0 +1,639 @@
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
partial class FrmBill
|
||||
{
|
||||
/// <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 Windows Form 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.pl_main = new DevExpress.XtraEditors.PanelControl();
|
||||
this.pl_main_center = new DevExpress.XtraEditors.PanelControl();
|
||||
this.pl_main_center_detail = new DevExpress.XtraEditors.PanelControl();
|
||||
this.gcMain = new Lskj.Control.GridControlEx();
|
||||
this.pl_main_center_master = new DevExpress.XtraEditors.XtraScrollableControl();
|
||||
this.pl_main_bottom = new DevExpress.XtraEditors.PanelControl();
|
||||
this.dbpFP = new DevExpress.XtraEditors.DropDownButton();
|
||||
this.btnRefresh = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnHiding = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnHelp = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.pl_templete = new DevExpress.XtraEditors.PanelControl();
|
||||
this.cb_templete = new DevExpress.XtraEditors.ComboBoxEdit();
|
||||
this.lbl_templete = new DevExpress.XtraEditors.LabelControl();
|
||||
this.pl_input = new DevExpress.XtraEditors.PanelControl();
|
||||
this.cb_input = new DevExpress.XtraEditors.ComboBoxEdit();
|
||||
this.txt_input = new DevExpress.XtraEditors.TextEdit();
|
||||
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
|
||||
this.btn_input = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.dpbImport = new DevExpress.XtraEditors.DropDownButton();
|
||||
this.btnBillAdd = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnBillApply = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.dpCopyBill = new DevExpress.XtraEditors.DropDownButton();
|
||||
this.btnPrint = new DevExpress.XtraEditors.DropDownButton();
|
||||
this.dpbTools = new DevExpress.XtraEditors.DropDownButton();
|
||||
this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnBillSave = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.pl_main_top = new DevExpress.XtraEditors.PanelControl();
|
||||
this.pl_main_top_center = new DevExpress.XtraEditors.PanelControl();
|
||||
this.lbTitle = new System.Windows.Forms.Label();
|
||||
this.pl_main_top_right = new DevExpress.XtraEditors.PanelControl();
|
||||
this.lblOrderNo = new DevExpress.XtraEditors.LabelControl();
|
||||
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
|
||||
this.pl_main_top_left = new DevExpress.XtraEditors.PanelControl();
|
||||
this.pl_red = new DevExpress.XtraEditors.PanelControl();
|
||||
this.rdRed = new System.Windows.Forms.RadioButton();
|
||||
this.pl_blue = new DevExpress.XtraEditors.PanelControl();
|
||||
this.rdBlue = new System.Windows.Forms.RadioButton();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main)).BeginInit();
|
||||
this.pl_main.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_center)).BeginInit();
|
||||
this.pl_main_center.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_center_detail)).BeginInit();
|
||||
this.pl_main_center_detail.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_bottom)).BeginInit();
|
||||
this.pl_main_bottom.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_templete)).BeginInit();
|
||||
this.pl_templete.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.cb_templete.Properties)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_input)).BeginInit();
|
||||
this.pl_input.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.cb_input.Properties)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.txt_input.Properties)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_top)).BeginInit();
|
||||
this.pl_main_top.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_top_center)).BeginInit();
|
||||
this.pl_main_top_center.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_top_right)).BeginInit();
|
||||
this.pl_main_top_right.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_top_left)).BeginInit();
|
||||
this.pl_main_top_left.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_red)).BeginInit();
|
||||
this.pl_red.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_blue)).BeginInit();
|
||||
this.pl_blue.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// pl_main
|
||||
//
|
||||
this.pl_main.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_main.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main.Controls.Add(this.pl_main_center);
|
||||
this.pl_main.Controls.Add(this.pl_main_bottom);
|
||||
this.pl_main.Controls.Add(this.pl_main_top);
|
||||
this.pl_main.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_main.Location = new System.Drawing.Point(0, 0);
|
||||
this.pl_main.Name = "pl_main";
|
||||
this.pl_main.Size = new System.Drawing.Size(1260, 613);
|
||||
this.pl_main.TabIndex = 2;
|
||||
//
|
||||
// pl_main_center
|
||||
//
|
||||
this.pl_main_center.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_main_center.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main_center.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_main_center.Controls.Add(this.pl_main_center_detail);
|
||||
this.pl_main_center.Controls.Add(this.pl_main_center_master);
|
||||
this.pl_main_center.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_main_center.Location = new System.Drawing.Point(2, 40);
|
||||
this.pl_main_center.Name = "pl_main_center";
|
||||
this.pl_main_center.Size = new System.Drawing.Size(1256, 534);
|
||||
this.pl_main_center.TabIndex = 2;
|
||||
//
|
||||
// pl_main_center_detail
|
||||
//
|
||||
this.pl_main_center_detail.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_main_center_detail.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main_center_detail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_main_center_detail.Controls.Add(this.gcMain);
|
||||
this.pl_main_center_detail.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_main_center_detail.Location = new System.Drawing.Point(0, 164);
|
||||
this.pl_main_center_detail.Name = "pl_main_center_detail";
|
||||
this.pl_main_center_detail.Size = new System.Drawing.Size(1256, 370);
|
||||
this.pl_main_center_detail.TabIndex = 5;
|
||||
//
|
||||
// gcMain
|
||||
//
|
||||
this.gcMain.AdapterObj = null;
|
||||
this.gcMain.BackColor = System.Drawing.Color.Transparent;
|
||||
this.gcMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gcMain.Location = new System.Drawing.Point(0, 0);
|
||||
this.gcMain.Margin = new System.Windows.Forms.Padding(5);
|
||||
this.gcMain.Name = "gcMain";
|
||||
this.gcMain.SiftEnumObj = Lskj.Control.GridControlEx.HeaderSiftEnum.Sum;
|
||||
this.gcMain.Size = new System.Drawing.Size(1256, 370);
|
||||
this.gcMain.SysModel = null;
|
||||
this.gcMain.TabIndex = 0;
|
||||
//
|
||||
// pl_main_center_master
|
||||
//
|
||||
this.pl_main_center_master.AutoScroll = false;
|
||||
this.pl_main_center_master.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.pl_main_center_master.Location = new System.Drawing.Point(0, 0);
|
||||
this.pl_main_center_master.Name = "pl_main_center_master";
|
||||
this.pl_main_center_master.Size = new System.Drawing.Size(1256, 164);
|
||||
this.pl_main_center_master.TabIndex = 6;
|
||||
//
|
||||
// pl_main_bottom
|
||||
//
|
||||
this.pl_main_bottom.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_main_bottom.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main_bottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_main_bottom.Controls.Add(this.dbpFP);
|
||||
this.pl_main_bottom.Controls.Add(this.btnRefresh);
|
||||
this.pl_main_bottom.Controls.Add(this.btnHiding);
|
||||
this.pl_main_bottom.Controls.Add(this.btnHelp);
|
||||
this.pl_main_bottom.Controls.Add(this.pl_templete);
|
||||
this.pl_main_bottom.Controls.Add(this.pl_input);
|
||||
this.pl_main_bottom.Controls.Add(this.dpbImport);
|
||||
this.pl_main_bottom.Controls.Add(this.btnBillAdd);
|
||||
this.pl_main_bottom.Controls.Add(this.btnBillApply);
|
||||
this.pl_main_bottom.Controls.Add(this.dpCopyBill);
|
||||
this.pl_main_bottom.Controls.Add(this.btnPrint);
|
||||
this.pl_main_bottom.Controls.Add(this.dpbTools);
|
||||
this.pl_main_bottom.Controls.Add(this.btnDelete);
|
||||
this.pl_main_bottom.Controls.Add(this.btnBillSave);
|
||||
this.pl_main_bottom.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.pl_main_bottom.Location = new System.Drawing.Point(2, 574);
|
||||
this.pl_main_bottom.Name = "pl_main_bottom";
|
||||
this.pl_main_bottom.Size = new System.Drawing.Size(1256, 37);
|
||||
this.pl_main_bottom.TabIndex = 1;
|
||||
//
|
||||
// dbpFP
|
||||
//
|
||||
this.dbpFP.AllowFocus = false;
|
||||
this.dbpFP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.dbpFP.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.dbpFP.Appearance.Options.UseFont = true;
|
||||
this.dbpFP.Location = new System.Drawing.Point(395, 7);
|
||||
this.dbpFP.Name = "dbpFP";
|
||||
this.dbpFP.Size = new System.Drawing.Size(58, 26);
|
||||
this.dbpFP.TabIndex = 34;
|
||||
this.dbpFP.Text = "分配";
|
||||
//
|
||||
// btnRefresh
|
||||
//
|
||||
this.btnRefresh.AllowFocus = false;
|
||||
this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnRefresh.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnRefresh.Appearance.Options.UseFont = true;
|
||||
this.btnRefresh.Location = new System.Drawing.Point(459, 7);
|
||||
this.btnRefresh.Name = "btnRefresh";
|
||||
this.btnRefresh.Size = new System.Drawing.Size(74, 26);
|
||||
this.btnRefresh.TabIndex = 33;
|
||||
this.btnRefresh.Text = "刷新列数据";
|
||||
//
|
||||
// btnHiding
|
||||
//
|
||||
this.btnHiding.AllowFocus = false;
|
||||
this.btnHiding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnHiding.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnHiding.Appearance.Options.UseFont = true;
|
||||
this.btnHiding.Location = new System.Drawing.Point(535, 7);
|
||||
this.btnHiding.Name = "btnHiding";
|
||||
this.btnHiding.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnHiding.TabIndex = 32;
|
||||
this.btnHiding.Text = "隐藏主表";
|
||||
this.btnHiding.Visible = false;
|
||||
//
|
||||
// btnHelp
|
||||
//
|
||||
this.btnHelp.AllowFocus = false;
|
||||
this.btnHelp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnHelp.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnHelp.Appearance.Options.UseFont = true;
|
||||
this.btnHelp.Location = new System.Drawing.Point(604, 7);
|
||||
this.btnHelp.Name = "btnHelp";
|
||||
this.btnHelp.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnHelp.TabIndex = 30;
|
||||
this.btnHelp.Text = "帮助文档";
|
||||
//
|
||||
// pl_templete
|
||||
//
|
||||
this.pl_templete.Controls.Add(this.cb_templete);
|
||||
this.pl_templete.Controls.Add(this.lbl_templete);
|
||||
this.pl_templete.Location = new System.Drawing.Point(3, 3);
|
||||
this.pl_templete.LookAndFeel.SkinName = "VS2010";
|
||||
this.pl_templete.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Style3D;
|
||||
this.pl_templete.Name = "pl_templete";
|
||||
this.pl_templete.Size = new System.Drawing.Size(195, 29);
|
||||
this.pl_templete.TabIndex = 29;
|
||||
this.pl_templete.Visible = false;
|
||||
//
|
||||
// cb_templete
|
||||
//
|
||||
this.cb_templete.Location = new System.Drawing.Point(58, 4);
|
||||
this.cb_templete.Name = "cb_templete";
|
||||
this.cb_templete.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
|
||||
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
|
||||
this.cb_templete.Properties.DropDownRows = 8;
|
||||
this.cb_templete.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
|
||||
this.cb_templete.Size = new System.Drawing.Size(133, 20);
|
||||
this.cb_templete.TabIndex = 19;
|
||||
//
|
||||
// lbl_templete
|
||||
//
|
||||
this.lbl_templete.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lbl_templete.Location = new System.Drawing.Point(5, 8);
|
||||
this.lbl_templete.Name = "lbl_templete";
|
||||
this.lbl_templete.Size = new System.Drawing.Size(48, 12);
|
||||
this.lbl_templete.TabIndex = 16;
|
||||
this.lbl_templete.Text = "选择模版";
|
||||
//
|
||||
// pl_input
|
||||
//
|
||||
this.pl_input.Controls.Add(this.cb_input);
|
||||
this.pl_input.Controls.Add(this.txt_input);
|
||||
this.pl_input.Controls.Add(this.labelControl2);
|
||||
this.pl_input.Controls.Add(this.btn_input);
|
||||
this.pl_input.Location = new System.Drawing.Point(3, 3);
|
||||
this.pl_input.LookAndFeel.SkinName = "VS2010";
|
||||
this.pl_input.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Style3D;
|
||||
this.pl_input.Name = "pl_input";
|
||||
this.pl_input.Size = new System.Drawing.Size(280, 29);
|
||||
this.pl_input.TabIndex = 27;
|
||||
this.pl_input.Visible = false;
|
||||
//
|
||||
// cb_input
|
||||
//
|
||||
this.cb_input.Location = new System.Drawing.Point(58, 4);
|
||||
this.cb_input.Name = "cb_input";
|
||||
this.cb_input.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
|
||||
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
|
||||
this.cb_input.Properties.DropDownRows = 8;
|
||||
this.cb_input.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
|
||||
this.cb_input.Size = new System.Drawing.Size(79, 20);
|
||||
this.cb_input.TabIndex = 19;
|
||||
//
|
||||
// txt_input
|
||||
//
|
||||
this.txt_input.Location = new System.Drawing.Point(149, 4);
|
||||
this.txt_input.Name = "txt_input";
|
||||
this.txt_input.Properties.Appearance.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.txt_input.Properties.Appearance.Options.UseFont = true;
|
||||
this.txt_input.Size = new System.Drawing.Size(98, 20);
|
||||
this.txt_input.TabIndex = 18;
|
||||
//
|
||||
// labelControl2
|
||||
//
|
||||
this.labelControl2.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.labelControl2.Location = new System.Drawing.Point(5, 8);
|
||||
this.labelControl2.Name = "labelControl2";
|
||||
this.labelControl2.Size = new System.Drawing.Size(48, 12);
|
||||
this.labelControl2.TabIndex = 16;
|
||||
this.labelControl2.Text = "快速录入";
|
||||
//
|
||||
// btn_input
|
||||
//
|
||||
this.btn_input.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btn_input.Appearance.Options.UseFont = true;
|
||||
this.btn_input.Location = new System.Drawing.Point(249, 4);
|
||||
this.btn_input.Name = "btn_input";
|
||||
this.btn_input.Size = new System.Drawing.Size(27, 21);
|
||||
this.btn_input.TabIndex = 13;
|
||||
this.btn_input.Text = ">>";
|
||||
//
|
||||
// dpbImport
|
||||
//
|
||||
this.dpbImport.AllowFocus = false;
|
||||
this.dpbImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.dpbImport.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.dpbImport.Appearance.Options.UseFont = true;
|
||||
this.dpbImport.DropDownArrowStyle = DevExpress.XtraEditors.DropDownArrowStyle.Show;
|
||||
this.dpbImport.Location = new System.Drawing.Point(749, 7);
|
||||
this.dpbImport.Name = "dpbImport";
|
||||
this.dpbImport.Size = new System.Drawing.Size(74, 26);
|
||||
this.dpbImport.TabIndex = 26;
|
||||
this.dpbImport.Text = "导入导出";
|
||||
//
|
||||
// btnBillAdd
|
||||
//
|
||||
this.btnBillAdd.AllowFocus = false;
|
||||
this.btnBillAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnBillAdd.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnBillAdd.Appearance.Options.UseFont = true;
|
||||
this.btnBillAdd.Location = new System.Drawing.Point(901, 7);
|
||||
this.btnBillAdd.Name = "btnBillAdd";
|
||||
this.btnBillAdd.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnBillAdd.TabIndex = 19;
|
||||
this.btnBillAdd.Text = "新建单据";
|
||||
//
|
||||
// btnBillApply
|
||||
//
|
||||
this.btnBillApply.AllowFocus = false;
|
||||
this.btnBillApply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnBillApply.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnBillApply.Appearance.Options.UseFont = true;
|
||||
this.btnBillApply.Location = new System.Drawing.Point(1108, 7);
|
||||
this.btnBillApply.Name = "btnBillApply";
|
||||
this.btnBillApply.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnBillApply.TabIndex = 25;
|
||||
this.btnBillApply.Text = "保存提交";
|
||||
//
|
||||
// dpCopyBill
|
||||
//
|
||||
this.dpCopyBill.AllowFocus = false;
|
||||
this.dpCopyBill.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.dpCopyBill.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.dpCopyBill.Appearance.Options.UseFont = true;
|
||||
this.dpCopyBill.DropDownArrowStyle = DevExpress.XtraEditors.DropDownArrowStyle.Show;
|
||||
this.dpCopyBill.Location = new System.Drawing.Point(825, 7);
|
||||
this.dpCopyBill.Name = "dpCopyBill";
|
||||
this.dpCopyBill.Size = new System.Drawing.Size(74, 26);
|
||||
this.dpCopyBill.TabIndex = 24;
|
||||
this.dpCopyBill.Text = "复制单据";
|
||||
//
|
||||
// btnPrint
|
||||
//
|
||||
this.btnPrint.AllowFocus = false;
|
||||
this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnPrint.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnPrint.Appearance.Options.UseFont = true;
|
||||
this.btnPrint.DropDownArrowStyle = DevExpress.XtraEditors.DropDownArrowStyle.Show;
|
||||
this.btnPrint.Location = new System.Drawing.Point(1177, 7);
|
||||
this.btnPrint.Name = "btnPrint";
|
||||
this.btnPrint.Size = new System.Drawing.Size(74, 26);
|
||||
this.btnPrint.TabIndex = 23;
|
||||
this.btnPrint.Text = "打印单据";
|
||||
//
|
||||
// dpbTools
|
||||
//
|
||||
this.dpbTools.AllowFocus = false;
|
||||
this.dpbTools.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.dpbTools.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.dpbTools.Appearance.Options.UseFont = true;
|
||||
this.dpbTools.DropDownArrowStyle = DevExpress.XtraEditors.DropDownArrowStyle.Show;
|
||||
this.dpbTools.Location = new System.Drawing.Point(673, 7);
|
||||
this.dpbTools.Name = "dpbTools";
|
||||
this.dpbTools.Size = new System.Drawing.Size(74, 26);
|
||||
this.dpbTools.TabIndex = 22;
|
||||
this.dpbTools.Text = "常用工具";
|
||||
//
|
||||
// btnDelete
|
||||
//
|
||||
this.btnDelete.AllowFocus = false;
|
||||
this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnDelete.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnDelete.Appearance.Options.UseFont = true;
|
||||
this.btnDelete.Location = new System.Drawing.Point(970, 7);
|
||||
this.btnDelete.Name = "btnDelete";
|
||||
this.btnDelete.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnDelete.TabIndex = 20;
|
||||
this.btnDelete.Text = "删除记录";
|
||||
//
|
||||
// btnBillSave
|
||||
//
|
||||
this.btnBillSave.AllowFocus = false;
|
||||
this.btnBillSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnBillSave.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnBillSave.Appearance.Options.UseFont = true;
|
||||
this.btnBillSave.Location = new System.Drawing.Point(1039, 7);
|
||||
this.btnBillSave.Name = "btnBillSave";
|
||||
this.btnBillSave.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnBillSave.TabIndex = 21;
|
||||
this.btnBillSave.Text = "保存单据";
|
||||
//
|
||||
// pl_main_top
|
||||
//
|
||||
this.pl_main_top.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.pl_main_top.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main_top.Controls.Add(this.pl_main_top_center);
|
||||
this.pl_main_top.Controls.Add(this.pl_main_top_right);
|
||||
this.pl_main_top.Controls.Add(this.pl_main_top_left);
|
||||
this.pl_main_top.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.pl_main_top.Location = new System.Drawing.Point(2, 2);
|
||||
this.pl_main_top.Name = "pl_main_top";
|
||||
this.pl_main_top.Size = new System.Drawing.Size(1256, 38);
|
||||
this.pl_main_top.TabIndex = 0;
|
||||
//
|
||||
// pl_main_top_center
|
||||
//
|
||||
this.pl_main_top_center.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_main_top_center.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main_top_center.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_main_top_center.Controls.Add(this.lbTitle);
|
||||
this.pl_main_top_center.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_main_top_center.Location = new System.Drawing.Point(162, 2);
|
||||
this.pl_main_top_center.Name = "pl_main_top_center";
|
||||
this.pl_main_top_center.Size = new System.Drawing.Size(902, 34);
|
||||
this.pl_main_top_center.TabIndex = 3;
|
||||
//
|
||||
// lbTitle
|
||||
//
|
||||
this.lbTitle.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lbTitle.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.lbTitle.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.lbTitle.ForeColor = System.Drawing.Color.Blue;
|
||||
this.lbTitle.Location = new System.Drawing.Point(0, 0);
|
||||
this.lbTitle.Name = "lbTitle";
|
||||
this.lbTitle.Size = new System.Drawing.Size(902, 34);
|
||||
this.lbTitle.TabIndex = 1;
|
||||
this.lbTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||
//
|
||||
// pl_main_top_right
|
||||
//
|
||||
this.pl_main_top_right.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_main_top_right.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main_top_right.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_main_top_right.Controls.Add(this.lblOrderNo);
|
||||
this.pl_main_top_right.Controls.Add(this.labelControl1);
|
||||
this.pl_main_top_right.Dock = System.Windows.Forms.DockStyle.Right;
|
||||
this.pl_main_top_right.Location = new System.Drawing.Point(1064, 2);
|
||||
this.pl_main_top_right.Name = "pl_main_top_right";
|
||||
this.pl_main_top_right.Size = new System.Drawing.Size(190, 34);
|
||||
this.pl_main_top_right.TabIndex = 2;
|
||||
//
|
||||
// lblOrderNo
|
||||
//
|
||||
this.lblOrderNo.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lblOrderNo.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Underline);
|
||||
this.lblOrderNo.Appearance.ForeColor = System.Drawing.Color.Blue;
|
||||
this.lblOrderNo.Location = new System.Drawing.Point(67, 19);
|
||||
this.lblOrderNo.Name = "lblOrderNo";
|
||||
this.lblOrderNo.Size = new System.Drawing.Size(90, 12);
|
||||
this.lblOrderNo.TabIndex = 1;
|
||||
this.lblOrderNo.Text = "XTC170112010001";
|
||||
//
|
||||
// labelControl1
|
||||
//
|
||||
this.labelControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.labelControl1.Appearance.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Blue;
|
||||
this.labelControl1.Location = new System.Drawing.Point(7, 19);
|
||||
this.labelControl1.Name = "labelControl1";
|
||||
this.labelControl1.Size = new System.Drawing.Size(54, 12);
|
||||
this.labelControl1.TabIndex = 0;
|
||||
this.labelControl1.Text = "单据编号:";
|
||||
//
|
||||
// pl_main_top_left
|
||||
//
|
||||
this.pl_main_top_left.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_main_top_left.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main_top_left.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_main_top_left.Controls.Add(this.pl_red);
|
||||
this.pl_main_top_left.Controls.Add(this.pl_blue);
|
||||
this.pl_main_top_left.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.pl_main_top_left.Location = new System.Drawing.Point(2, 2);
|
||||
this.pl_main_top_left.Name = "pl_main_top_left";
|
||||
this.pl_main_top_left.Size = new System.Drawing.Size(160, 34);
|
||||
this.pl_main_top_left.TabIndex = 1;
|
||||
//
|
||||
// pl_red
|
||||
//
|
||||
this.pl_red.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_red.Appearance.Options.UseBackColor = true;
|
||||
this.pl_red.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_red.Controls.Add(this.rdRed);
|
||||
this.pl_red.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.pl_red.Location = new System.Drawing.Point(80, 0);
|
||||
this.pl_red.Name = "pl_red";
|
||||
this.pl_red.Size = new System.Drawing.Size(80, 34);
|
||||
this.pl_red.TabIndex = 3;
|
||||
//
|
||||
// rdRed
|
||||
//
|
||||
this.rdRed.AutoSize = true;
|
||||
this.rdRed.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.rdRed.ForeColor = System.Drawing.Color.Red;
|
||||
this.rdRed.Location = new System.Drawing.Point(6, 12);
|
||||
this.rdRed.Name = "rdRed";
|
||||
this.rdRed.Size = new System.Drawing.Size(71, 16);
|
||||
this.rdRed.TabIndex = 3;
|
||||
this.rdRed.Text = "红字单据";
|
||||
this.rdRed.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// pl_blue
|
||||
//
|
||||
this.pl_blue.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_blue.Appearance.Options.UseBackColor = true;
|
||||
this.pl_blue.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_blue.Controls.Add(this.rdBlue);
|
||||
this.pl_blue.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.pl_blue.Location = new System.Drawing.Point(0, 0);
|
||||
this.pl_blue.Name = "pl_blue";
|
||||
this.pl_blue.Size = new System.Drawing.Size(80, 34);
|
||||
this.pl_blue.TabIndex = 2;
|
||||
//
|
||||
// rdBlue
|
||||
//
|
||||
this.rdBlue.AutoSize = true;
|
||||
this.rdBlue.Checked = true;
|
||||
this.rdBlue.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.rdBlue.ForeColor = System.Drawing.Color.Blue;
|
||||
this.rdBlue.Location = new System.Drawing.Point(7, 12);
|
||||
this.rdBlue.Name = "rdBlue";
|
||||
this.rdBlue.Size = new System.Drawing.Size(71, 16);
|
||||
this.rdBlue.TabIndex = 2;
|
||||
this.rdBlue.TabStop = true;
|
||||
this.rdBlue.Text = "蓝字单据";
|
||||
this.rdBlue.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// FrmBill
|
||||
//
|
||||
this.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.Appearance.Options.UseBackColor = true;
|
||||
this.Appearance.Options.UseFont = true;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(1260, 613);
|
||||
this.Controls.Add(this.pl_main);
|
||||
this.Name = "FrmBill";
|
||||
this.Text = "FrmBill";
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main)).EndInit();
|
||||
this.pl_main.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_center)).EndInit();
|
||||
this.pl_main_center.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_center_detail)).EndInit();
|
||||
this.pl_main_center_detail.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_bottom)).EndInit();
|
||||
this.pl_main_bottom.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_templete)).EndInit();
|
||||
this.pl_templete.ResumeLayout(false);
|
||||
this.pl_templete.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.cb_templete.Properties)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_input)).EndInit();
|
||||
this.pl_input.ResumeLayout(false);
|
||||
this.pl_input.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.cb_input.Properties)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.txt_input.Properties)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_top)).EndInit();
|
||||
this.pl_main_top.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_top_center)).EndInit();
|
||||
this.pl_main_top_center.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_top_right)).EndInit();
|
||||
this.pl_main_top_right.ResumeLayout(false);
|
||||
this.pl_main_top_right.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main_top_left)).EndInit();
|
||||
this.pl_main_top_left.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_red)).EndInit();
|
||||
this.pl_red.ResumeLayout(false);
|
||||
this.pl_red.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_blue)).EndInit();
|
||||
this.pl_blue.ResumeLayout(false);
|
||||
this.pl_blue.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.XtraEditors.PanelControl pl_main;
|
||||
private DevExpress.XtraEditors.PanelControl pl_main_center;
|
||||
private DevExpress.XtraEditors.PanelControl pl_main_center_detail;
|
||||
private Control.GridControlEx gcMain;
|
||||
private DevExpress.XtraEditors.XtraScrollableControl pl_main_center_master;
|
||||
public DevExpress.XtraEditors.PanelControl pl_main_bottom;
|
||||
private DevExpress.XtraEditors.DropDownButton dbpFP;
|
||||
private DevExpress.XtraEditors.SimpleButton btnRefresh;
|
||||
private DevExpress.XtraEditors.SimpleButton btnHiding;
|
||||
private DevExpress.XtraEditors.SimpleButton btnHelp;
|
||||
private DevExpress.XtraEditors.PanelControl pl_templete;
|
||||
private DevExpress.XtraEditors.ComboBoxEdit cb_templete;
|
||||
private DevExpress.XtraEditors.LabelControl lbl_templete;
|
||||
private DevExpress.XtraEditors.PanelControl pl_input;
|
||||
private DevExpress.XtraEditors.ComboBoxEdit cb_input;
|
||||
private DevExpress.XtraEditors.TextEdit txt_input;
|
||||
private DevExpress.XtraEditors.LabelControl labelControl2;
|
||||
private DevExpress.XtraEditors.SimpleButton btn_input;
|
||||
private DevExpress.XtraEditors.DropDownButton dpbImport;
|
||||
private DevExpress.XtraEditors.SimpleButton btnBillAdd;
|
||||
private DevExpress.XtraEditors.SimpleButton btnBillApply;
|
||||
private DevExpress.XtraEditors.DropDownButton dpCopyBill;
|
||||
private DevExpress.XtraEditors.DropDownButton btnPrint;
|
||||
private DevExpress.XtraEditors.DropDownButton dpbTools;
|
||||
private DevExpress.XtraEditors.SimpleButton btnDelete;
|
||||
private DevExpress.XtraEditors.SimpleButton btnBillSave;
|
||||
private DevExpress.XtraEditors.PanelControl pl_main_top;
|
||||
private DevExpress.XtraEditors.PanelControl pl_main_top_center;
|
||||
private System.Windows.Forms.Label lbTitle;
|
||||
private DevExpress.XtraEditors.PanelControl pl_main_top_right;
|
||||
private DevExpress.XtraEditors.LabelControl lblOrderNo;
|
||||
private DevExpress.XtraEditors.LabelControl labelControl1;
|
||||
private DevExpress.XtraEditors.PanelControl pl_main_top_left;
|
||||
private DevExpress.XtraEditors.PanelControl pl_red;
|
||||
private System.Windows.Forms.RadioButton rdRed;
|
||||
private DevExpress.XtraEditors.PanelControl pl_blue;
|
||||
private System.Windows.Forms.RadioButton rdBlue;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -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>
|
||||
+196
@@ -0,0 +1,196 @@
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
partial class FrmBomSelect
|
||||
{
|
||||
/// <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 Windows Form 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.panelControl1 = new DevExpress.XtraEditors.PanelControl();
|
||||
this.pl_main = new DevExpress.XtraEditors.PanelControl();
|
||||
this.gcMain = new Lskj.Control.GridControlEx();
|
||||
this.pl_bottom = new DevExpress.XtraEditors.PanelControl();
|
||||
this.chkOperate = new DevExpress.XtraEditors.CheckEdit();
|
||||
this.btnClearSelectAll = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnSelectAll = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnOk = new DevExpress.XtraEditors.SimpleButton();
|
||||
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
|
||||
this.panelControl1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main)).BeginInit();
|
||||
this.pl_main.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_bottom)).BeginInit();
|
||||
this.pl_bottom.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.chkOperate.Properties)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// panelControl1
|
||||
//
|
||||
this.panelControl1.Controls.Add(this.pl_main);
|
||||
this.panelControl1.Controls.Add(this.pl_bottom);
|
||||
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.panelControl1.Location = new System.Drawing.Point(0, 0);
|
||||
this.panelControl1.Name = "panelControl1";
|
||||
this.panelControl1.Size = new System.Drawing.Size(515, 341);
|
||||
this.panelControl1.TabIndex = 0;
|
||||
//
|
||||
// pl_main
|
||||
//
|
||||
this.pl_main.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_main.Appearance.Options.UseBackColor = true;
|
||||
this.pl_main.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_main.Controls.Add(this.gcMain);
|
||||
this.pl_main.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_main.Location = new System.Drawing.Point(2, 2);
|
||||
this.pl_main.Name = "pl_main";
|
||||
this.pl_main.Size = new System.Drawing.Size(511, 303);
|
||||
this.pl_main.TabIndex = 1;
|
||||
//
|
||||
// gcMain
|
||||
//
|
||||
this.gcMain.AdapterObj = null;
|
||||
this.gcMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gcMain.Location = new System.Drawing.Point(0, 0);
|
||||
this.gcMain.Name = "gcMain";
|
||||
this.gcMain.Size = new System.Drawing.Size(511, 303);
|
||||
this.gcMain.TabIndex = 0;
|
||||
//
|
||||
// pl_bottom
|
||||
//
|
||||
this.pl_bottom.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_bottom.Appearance.Options.UseBackColor = true;
|
||||
this.pl_bottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_bottom.Controls.Add(this.chkOperate);
|
||||
this.pl_bottom.Controls.Add(this.btnClearSelectAll);
|
||||
this.pl_bottom.Controls.Add(this.btnCancel);
|
||||
this.pl_bottom.Controls.Add(this.btnSelectAll);
|
||||
this.pl_bottom.Controls.Add(this.btnOk);
|
||||
this.pl_bottom.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.pl_bottom.Location = new System.Drawing.Point(2, 305);
|
||||
this.pl_bottom.Name = "pl_bottom";
|
||||
this.pl_bottom.Size = new System.Drawing.Size(511, 34);
|
||||
this.pl_bottom.TabIndex = 0;
|
||||
//
|
||||
// chkOperate
|
||||
//
|
||||
this.chkOperate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.chkOperate.Location = new System.Drawing.Point(250, 8);
|
||||
this.chkOperate.Name = "chkOperate";
|
||||
this.chkOperate.Properties.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.chkOperate.Properties.Appearance.Options.UseFont = true;
|
||||
this.chkOperate.Properties.Caption = "应用到所有操作";
|
||||
this.chkOperate.Size = new System.Drawing.Size(115, 19);
|
||||
this.chkOperate.TabIndex = 28;
|
||||
//
|
||||
// btnClearSelectAll
|
||||
//
|
||||
this.btnClearSelectAll.AllowFocus = false;
|
||||
this.btnClearSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.btnClearSelectAll.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnClearSelectAll.Appearance.Options.UseFont = true;
|
||||
this.btnClearSelectAll.Location = new System.Drawing.Point(73, 4);
|
||||
this.btnClearSelectAll.Name = "btnClearSelectAll";
|
||||
this.btnClearSelectAll.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnClearSelectAll.TabIndex = 27;
|
||||
this.btnClearSelectAll.Text = "反选(&N)";
|
||||
this.btnClearSelectAll.Click += new System.EventHandler(this.OnClearSelectAllClick);
|
||||
//
|
||||
// btnCancel
|
||||
//
|
||||
this.btnCancel.AllowFocus = false;
|
||||
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnCancel.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnCancel.Appearance.Options.UseFont = true;
|
||||
this.btnCancel.Location = new System.Drawing.Point(440, 4);
|
||||
this.btnCancel.Name = "btnCancel";
|
||||
this.btnCancel.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnCancel.TabIndex = 27;
|
||||
this.btnCancel.Text = "取消(&C)";
|
||||
this.btnCancel.Click += new System.EventHandler(this.OnCancelButtonClick);
|
||||
//
|
||||
// btnSelectAll
|
||||
//
|
||||
this.btnSelectAll.AllowFocus = false;
|
||||
this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.btnSelectAll.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnSelectAll.Appearance.Options.UseFont = true;
|
||||
this.btnSelectAll.Location = new System.Drawing.Point(4, 4);
|
||||
this.btnSelectAll.Name = "btnSelectAll";
|
||||
this.btnSelectAll.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnSelectAll.TabIndex = 26;
|
||||
this.btnSelectAll.Text = "全选(&Y)";
|
||||
this.btnSelectAll.Click += new System.EventHandler(this.OnSelectAllClick);
|
||||
//
|
||||
// btnOk
|
||||
//
|
||||
this.btnOk.AllowFocus = false;
|
||||
this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnOk.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnOk.Appearance.Options.UseFont = true;
|
||||
this.btnOk.Location = new System.Drawing.Point(371, 4);
|
||||
this.btnOk.Name = "btnOk";
|
||||
this.btnOk.Size = new System.Drawing.Size(67, 26);
|
||||
this.btnOk.TabIndex = 26;
|
||||
this.btnOk.Text = "确定(&S)";
|
||||
this.btnOk.Click += new System.EventHandler(this.OnOkButtonClick);
|
||||
//
|
||||
// FrmBomSelect
|
||||
//
|
||||
this.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Appearance.Options.UseBackColor = true;
|
||||
this.Appearance.Options.UseFont = true;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(515, 341);
|
||||
this.Controls.Add(this.panelControl1);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "FrmBomSelect";
|
||||
this.Text = "Bom选择";
|
||||
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
|
||||
this.panelControl1.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_main)).EndInit();
|
||||
this.pl_main.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_bottom)).EndInit();
|
||||
this.pl_bottom.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.chkOperate.Properties)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.XtraEditors.PanelControl panelControl1;
|
||||
private DevExpress.XtraEditors.PanelControl pl_main;
|
||||
private DevExpress.XtraEditors.PanelControl pl_bottom;
|
||||
private Control.GridControlEx gcMain;
|
||||
private DevExpress.XtraEditors.SimpleButton btnCancel;
|
||||
private DevExpress.XtraEditors.SimpleButton btnOk;
|
||||
private DevExpress.XtraEditors.SimpleButton btnClearSelectAll;
|
||||
private DevExpress.XtraEditors.SimpleButton btnSelectAll;
|
||||
private DevExpress.XtraEditors.CheckEdit chkOperate;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,260 @@
|
||||
/******************************
|
||||
* 说明:Bom选择
|
||||
* 创建人:龚宇超
|
||||
* 创建日期:2018-02-06
|
||||
* 修改人:
|
||||
* 修改日期:
|
||||
* 修改备注:
|
||||
* 版本:1.0.0.0
|
||||
******************************/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using Lskj.Control;
|
||||
using Lskj.Control.Model;
|
||||
using Lskj.PubBillManagement.Model;
|
||||
using Lskj.Business.Impl;
|
||||
using DevExpress.XtraGrid.Columns;
|
||||
using DevExpress.XtraGrid;
|
||||
using Lskj.Data;
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
/// <summary>
|
||||
/// Bom选择
|
||||
/// </summary>
|
||||
public partial class FrmBomSelect : BaseForm
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否记住操作,后续不在弹出界面
|
||||
/// </summary>
|
||||
public bool OnlyPopup;
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
public string Caption;
|
||||
/// <summary>
|
||||
/// 选中的bom数据
|
||||
/// </summary>
|
||||
public DataRow[] SelectBomRows;
|
||||
/// <summary>
|
||||
/// The bom data table
|
||||
/// </summary>
|
||||
public DataTable BomDataTable;
|
||||
/// <summary>
|
||||
/// 单据明细表格列
|
||||
/// </summary>
|
||||
public GridColumnCollection GridColumns;
|
||||
|
||||
public FrmBomSelect()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>说明:窗口加载</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-02-06 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
protected override void OnLoad(EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
base.OnLoad(e);
|
||||
if (BomDataTable != null)
|
||||
{
|
||||
this.Text = string.IsNullOrEmpty(Caption) ? this.Text : this.Caption;
|
||||
|
||||
DataColumn dataColumn = new DataColumn("Id", typeof(bool));
|
||||
dataColumn.DefaultValue = true;
|
||||
|
||||
this.BomDataTable.Columns.Add(dataColumn);
|
||||
this.InitGridView();
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message,ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>说明:初始化表格控件</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-02-07 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="table">The table.</param>
|
||||
private void InitGridView()
|
||||
{
|
||||
// 增加选择列
|
||||
GridColumn gridColumn = new GridColumn();
|
||||
gridColumn.FieldName = gridColumn.Name = "Id";
|
||||
gridColumn.Caption = "选择";
|
||||
gridColumn.Width = 50;
|
||||
gridColumn.VisibleIndex = 1;
|
||||
gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
|
||||
gridColumn.Visible = true;
|
||||
|
||||
gcMain.GridView.Columns.Add(gridColumn);
|
||||
|
||||
// 添加其他列
|
||||
foreach (GridColumn item in GridColumns)
|
||||
{
|
||||
GridColumn column = new GridColumn();
|
||||
column.Caption = item.Caption;
|
||||
column.FieldName = item.FieldName;
|
||||
column.OptionsColumn.AllowEdit = false;
|
||||
column.OptionsColumn.ReadOnly = true;
|
||||
column.Width = item.Width;
|
||||
column.VisibleIndex = item.VisibleIndex;
|
||||
column.Visible = item.Visible;
|
||||
gcMain.GridView.Columns.Add(column);
|
||||
}
|
||||
|
||||
gcMain.SetGridViewDataSource(BomDataTable);
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:获取选中数据</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-02-07 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <returns>DataRow[].</returns>
|
||||
private DataRow[] GetSelectRows()
|
||||
{
|
||||
DataTable table = gcMain.GridControl.DataSourceTable();
|
||||
|
||||
return table.Select("Id = true").ToArray();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>说明:全选</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-02-07 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
void OnSelectAllClick(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
DataTable table = gcMain.GridControl.DataSourceTable();
|
||||
foreach (DataRow item in table.Rows)
|
||||
{
|
||||
item["Id"] = true;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message,ex.Message);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:反选</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-02-07 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
void OnClearSelectAllClick(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
DataTable table = gcMain.GridControl.DataSourceTable();
|
||||
foreach (DataRow item in table.Rows)
|
||||
{
|
||||
item["Id"] = false;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message,ex.Message);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:确定</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-02-07 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
void OnOkButtonClick(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
DataRow[] rows = GetSelectRows();
|
||||
if (rows == null || rows.Length == 0)
|
||||
{
|
||||
MessageUtil.Show(ResourceKeys.SelectRowIsNull);
|
||||
return;
|
||||
}
|
||||
|
||||
this.SelectBomRows = rows;
|
||||
this.OnlyPopup = chkOperate.Checked;
|
||||
this.DialogResult = DialogResult.OK;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
//MessageUtil.Show("确定事件出错!" + ex);
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message,ex.Message);
|
||||
}
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:取消</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-02-07 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
void OnCancelButtonClick(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
this.DialogResult = DialogResult.Cancel;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message,ex.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
@@ -0,0 +1,245 @@
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
partial class FrmDocumentSource
|
||||
{
|
||||
/// <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 Windows Form 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.splitMain = new DevExpress.XtraEditors.SplitContainerControl();
|
||||
this.pl_left = new DevExpress.XtraEditors.PanelControl();
|
||||
this.pl_left_main = new System.Windows.Forms.Panel();
|
||||
this.pl_gridandtree_container = new DevExpress.XtraEditors.PanelControl();
|
||||
this.treeLeft = new Lskj.Control.TreeViewEx();
|
||||
this.gridLeft = new Lskj.Control.GridControlEx();
|
||||
this.pl_left_top = new DevExpress.XtraEditors.PanelControl();
|
||||
this.pl_top = new DevExpress.XtraEditors.PanelControl();
|
||||
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
|
||||
this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnOk = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.gcMain = new Lskj.Control.GridControlEx();
|
||||
((System.ComponentModel.ISupportInitialize)(this.splitMain)).BeginInit();
|
||||
this.splitMain.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_left)).BeginInit();
|
||||
this.pl_left.SuspendLayout();
|
||||
this.pl_left_main.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_gridandtree_container)).BeginInit();
|
||||
this.pl_gridandtree_container.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_left_top)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_top)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
|
||||
this.panelControl1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// splitMain
|
||||
//
|
||||
this.splitMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.splitMain.Location = new System.Drawing.Point(0, 0);
|
||||
this.splitMain.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.splitMain.Name = "splitMain";
|
||||
this.splitMain.Panel1.Controls.Add(this.pl_left);
|
||||
this.splitMain.Panel1.Text = "Panel1";
|
||||
this.splitMain.Panel2.Controls.Add(this.gcMain);
|
||||
this.splitMain.Panel2.Controls.Add(this.panelControl1);
|
||||
this.splitMain.Panel2.Controls.Add(this.pl_top);
|
||||
this.splitMain.Panel2.Text = "Panel2";
|
||||
this.splitMain.Size = new System.Drawing.Size(800, 450);
|
||||
this.splitMain.SplitterPosition = 260;
|
||||
this.splitMain.TabIndex = 1;
|
||||
this.splitMain.Text = "splitContainerControl1";
|
||||
//
|
||||
// pl_left
|
||||
//
|
||||
this.pl_left.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_left.Appearance.Options.UseBackColor = true;
|
||||
this.pl_left.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_left.Controls.Add(this.pl_left_main);
|
||||
this.pl_left.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_left.Location = new System.Drawing.Point(0, 0);
|
||||
this.pl_left.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.pl_left.Name = "pl_left";
|
||||
this.pl_left.Size = new System.Drawing.Size(260, 450);
|
||||
this.pl_left.TabIndex = 1;
|
||||
//
|
||||
// pl_left_main
|
||||
//
|
||||
this.pl_left_main.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_left_main.Controls.Add(this.pl_gridandtree_container);
|
||||
this.pl_left_main.Controls.Add(this.pl_left_top);
|
||||
this.pl_left_main.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_left_main.Location = new System.Drawing.Point(0, 0);
|
||||
this.pl_left_main.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.pl_left_main.Name = "pl_left_main";
|
||||
this.pl_left_main.Size = new System.Drawing.Size(260, 450);
|
||||
this.pl_left_main.TabIndex = 6;
|
||||
//
|
||||
// pl_gridandtree_container
|
||||
//
|
||||
this.pl_gridandtree_container.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_gridandtree_container.Controls.Add(this.treeLeft);
|
||||
this.pl_gridandtree_container.Controls.Add(this.gridLeft);
|
||||
this.pl_gridandtree_container.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pl_gridandtree_container.Location = new System.Drawing.Point(0, 45);
|
||||
this.pl_gridandtree_container.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.pl_gridandtree_container.Name = "pl_gridandtree_container";
|
||||
this.pl_gridandtree_container.Size = new System.Drawing.Size(260, 405);
|
||||
this.pl_gridandtree_container.TabIndex = 9;
|
||||
//
|
||||
// treeLeft
|
||||
//
|
||||
this.treeLeft.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.treeLeft.Location = new System.Drawing.Point(0, 0);
|
||||
this.treeLeft.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.treeLeft.Name = "treeLeft";
|
||||
this.treeLeft.Size = new System.Drawing.Size(260, 405);
|
||||
this.treeLeft.TabIndex = 7;
|
||||
this.treeLeft.Visible = false;
|
||||
//
|
||||
// gridLeft
|
||||
//
|
||||
this.gridLeft.AdapterObj = null;
|
||||
this.gridLeft.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.gridLeft.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gridLeft.Location = new System.Drawing.Point(0, 0);
|
||||
this.gridLeft.Margin = new System.Windows.Forms.Padding(5);
|
||||
this.gridLeft.Name = "gridLeft";
|
||||
this.gridLeft.SiftEnumObj = Lskj.Control.GridControlEx.HeaderSiftEnum.Sum;
|
||||
this.gridLeft.Size = new System.Drawing.Size(260, 405);
|
||||
this.gridLeft.SysModel = null;
|
||||
this.gridLeft.TabIndex = 6;
|
||||
//
|
||||
// pl_left_top
|
||||
//
|
||||
this.pl_left_top.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.pl_left_top.Appearance.Options.UseBackColor = true;
|
||||
this.pl_left_top.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_left_top.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.pl_left_top.Location = new System.Drawing.Point(0, 0);
|
||||
this.pl_left_top.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.pl_left_top.Name = "pl_left_top";
|
||||
this.pl_left_top.Size = new System.Drawing.Size(260, 45);
|
||||
this.pl_left_top.TabIndex = 8;
|
||||
//
|
||||
// pl_top
|
||||
//
|
||||
this.pl_top.Appearance.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pl_top.Appearance.Options.UseBackColor = true;
|
||||
this.pl_top.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
|
||||
this.pl_top.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.pl_top.Location = new System.Drawing.Point(0, 0);
|
||||
this.pl_top.Name = "pl_top";
|
||||
this.pl_top.Size = new System.Drawing.Size(535, 34);
|
||||
this.pl_top.TabIndex = 13;
|
||||
//
|
||||
// panelControl1
|
||||
//
|
||||
this.panelControl1.Controls.Add(this.btnCancel);
|
||||
this.panelControl1.Controls.Add(this.btnOk);
|
||||
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.panelControl1.Location = new System.Drawing.Point(0, 403);
|
||||
this.panelControl1.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.panelControl1.Name = "panelControl1";
|
||||
this.panelControl1.Size = new System.Drawing.Size(535, 47);
|
||||
this.panelControl1.TabIndex = 15;
|
||||
//
|
||||
// btnCancel
|
||||
//
|
||||
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnCancel.Location = new System.Drawing.Point(441, 5);
|
||||
this.btnCancel.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.btnCancel.Name = "btnCancel";
|
||||
this.btnCancel.Size = new System.Drawing.Size(79, 35);
|
||||
this.btnCancel.TabIndex = 24;
|
||||
this.btnCancel.Text = "取消(&C)";
|
||||
//
|
||||
// btnOk
|
||||
//
|
||||
this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnOk.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnOk.Appearance.Options.UseFont = true;
|
||||
this.btnOk.Location = new System.Drawing.Point(357, 5);
|
||||
this.btnOk.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.btnOk.Name = "btnOk";
|
||||
this.btnOk.Size = new System.Drawing.Size(76, 35);
|
||||
this.btnOk.TabIndex = 23;
|
||||
this.btnOk.TabStop = false;
|
||||
this.btnOk.Text = "确定(&O)";
|
||||
//
|
||||
// gcMain
|
||||
//
|
||||
this.gcMain.AdapterObj = null;
|
||||
this.gcMain.BackColor = System.Drawing.Color.Transparent;
|
||||
this.gcMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gcMain.Location = new System.Drawing.Point(0, 34);
|
||||
this.gcMain.Margin = new System.Windows.Forms.Padding(5);
|
||||
this.gcMain.Name = "gcMain";
|
||||
this.gcMain.SiftEnumObj = Lskj.Control.GridControlEx.HeaderSiftEnum.Sum;
|
||||
this.gcMain.Size = new System.Drawing.Size(535, 369);
|
||||
this.gcMain.SysModel = null;
|
||||
this.gcMain.TabIndex = 16;
|
||||
//
|
||||
// FrmDocumentSource
|
||||
//
|
||||
this.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.Appearance.Options.UseBackColor = true;
|
||||
this.Appearance.Options.UseFont = true;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||||
this.Controls.Add(this.splitMain);
|
||||
this.Name = "FrmDocumentSource";
|
||||
this.Text = "FrmDocumentSource";
|
||||
((System.ComponentModel.ISupportInitialize)(this.splitMain)).EndInit();
|
||||
this.splitMain.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_left)).EndInit();
|
||||
this.pl_left.ResumeLayout(false);
|
||||
this.pl_left_main.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_gridandtree_container)).EndInit();
|
||||
this.pl_gridandtree_container.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_left_top)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pl_top)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
|
||||
this.panelControl1.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.XtraEditors.SplitContainerControl splitMain;
|
||||
private DevExpress.XtraEditors.PanelControl pl_left;
|
||||
private System.Windows.Forms.Panel pl_left_main;
|
||||
private DevExpress.XtraEditors.PanelControl pl_gridandtree_container;
|
||||
private Control.TreeViewEx treeLeft;
|
||||
private Control.GridControlEx gridLeft;
|
||||
private DevExpress.XtraEditors.PanelControl pl_left_top;
|
||||
private Control.GridControlEx gcMain;
|
||||
private DevExpress.XtraEditors.PanelControl panelControl1;
|
||||
private DevExpress.XtraEditors.SimpleButton btnCancel;
|
||||
private DevExpress.XtraEditors.SimpleButton btnOk;
|
||||
private DevExpress.XtraEditors.PanelControl pl_top;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,601 @@
|
||||
using DevExpress.XtraEditors;
|
||||
using DevExpress.XtraGrid.Columns;
|
||||
using DevExpress.XtraGrid.Views.Grid;
|
||||
using Lskj.Business;
|
||||
using Lskj.Business.Impl;
|
||||
using Lskj.Control;
|
||||
using Lskj.Control.Model;
|
||||
using Lskj.Data;
|
||||
using Lskj.Model;
|
||||
using Lskj.Util;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
public partial class FrmDocumentSource : BaseForm
|
||||
{
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 配置的关联ModuleCodel值
|
||||
/// </summary>
|
||||
/// <value>The Union ModuleCodel.</value>
|
||||
public string UnionModuleCodel;
|
||||
/// <summary>
|
||||
/// 左侧树数据
|
||||
/// </summary>
|
||||
public DataRow LeftRowObj;
|
||||
/// <summary>
|
||||
/// 系统模块实体对象
|
||||
/// </summary>
|
||||
/// <value>The system model.</value>
|
||||
public ModuleModel SysModel { get; private set; }
|
||||
/// <summary>
|
||||
/// 自定义查询条件
|
||||
/// </summary>
|
||||
public MyControl SearchObj { get; private set; }
|
||||
/// <summary>
|
||||
/// 第一次进入
|
||||
/// </summary>
|
||||
private bool isFirst = true;
|
||||
/// <summary>
|
||||
/// 第一次进入
|
||||
/// </summary>
|
||||
private bool isFirstSearch = true;
|
||||
/// <summary>
|
||||
/// 左侧树结构
|
||||
/// </summary>
|
||||
public TreeViewEx LeftTreeViewEx;
|
||||
/// <summary>
|
||||
/// 左侧表格
|
||||
/// </summary>
|
||||
public GridControlEx LeftGridEx;
|
||||
/// <summary>
|
||||
/// 左侧结构关联字段
|
||||
/// </summary>
|
||||
public string ParentUnionField;
|
||||
/// <summary>
|
||||
/// 左侧树结构、表格主键
|
||||
/// </summary>
|
||||
public string ParentKeyField;
|
||||
/// <summary>
|
||||
/// CurrentOperColumnKey值(保存表格属性会用)
|
||||
/// </summary>
|
||||
/// <value>The data source.</value>
|
||||
public string CurrentOperColumnKey = string.Empty;
|
||||
/// <summary>
|
||||
/// 左侧表格查询条件
|
||||
/// </summary>
|
||||
private MyControl _leftGridSearchObj;
|
||||
/// <summary>
|
||||
/// 返回行
|
||||
/// </summary>
|
||||
public DataRow[] DataRows = null;
|
||||
|
||||
|
||||
public FrmDocumentSource(string ModuleCodel)
|
||||
{
|
||||
InitializeComponent();
|
||||
this.UnionModuleCodel = ModuleCodel;
|
||||
this.Disposed += new EventHandler(OnFrmModelLookUp_Disposed);
|
||||
this.gcMain.GridView.OptionsBehavior.EditorShowMode = DevExpress.Utils.EditorShowMode.MouseDown;
|
||||
|
||||
DataRow modelRow = MainImpl.GetSystemdllTab(this.UnionModuleCodel);//获取单个模块信息
|
||||
if (modelRow == null)
|
||||
{
|
||||
MessageUtil.Show("模块编号[" + UnionModuleCodel + "],配置错误!\r\n该模块信息未找到!");
|
||||
return;
|
||||
}
|
||||
|
||||
this.SysModel = new ModuleModel(modelRow);// 系统模块实体对象
|
||||
//设置关联模块(左侧)
|
||||
this.InitLeftControls();
|
||||
//设置主表
|
||||
this.InitMainControls();
|
||||
|
||||
this.btnCancel.Click += btnCancel_Click;
|
||||
this.btnOk.Click += btnOk_Click;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 初始化左侧表
|
||||
/// </summary>
|
||||
public void InitLeftControls()
|
||||
{
|
||||
if (this.SysModel != null)
|
||||
{
|
||||
switch (this.SysModel.MenuType)
|
||||
{
|
||||
case 1: // 左侧为树节点
|
||||
this.pl_left_top.Visible = false;
|
||||
this.gridLeft.Visible = false;
|
||||
this.treeLeft.Visible = true;
|
||||
this.InitlizeSpiltLocation();//设置分割条位置
|
||||
this.SetLeftTreeView();//设置左侧树数据
|
||||
this.LeftTreeViewEx = this.treeLeft;
|
||||
break;
|
||||
case 2: // 左侧为表格
|
||||
this.gridLeft.Visible = true;
|
||||
this.treeLeft.Visible = false;
|
||||
this.InitlizeSpiltLocation();
|
||||
this.SetLeftGridView();
|
||||
this.LeftGridEx = this.gridLeft;
|
||||
break;
|
||||
case 3: // 左侧为空
|
||||
default:
|
||||
this.splitMain.PanelVisibility = SplitPanelVisibility.Panel2;
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
this.splitMain.PanelVisibility = SplitPanelVisibility.Panel2;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 初始化主表
|
||||
/// </summary>
|
||||
public void InitMainControls()
|
||||
{
|
||||
|
||||
//设置上方条件
|
||||
this.pl_top.Controls.Clear();
|
||||
DataTable queryTable = BaseModuleImpl.GetCustomQueryFields(this.SysModel.CondKey);//加载自定义配置字段
|
||||
this.SearchObj = new MyControl(this.SysModel.MenuSql, this.gcMain, LeftTreeViewEx, LeftGridEx);
|
||||
this.SearchObj.ParentKeyField = this.ParentKeyField;
|
||||
this.SearchObj.ParentUnionField = this.ParentUnionField;
|
||||
this.SearchObj.OnDataSourceBindCallBack += new EventHandler(OnFirstPageDataSourceBindCallBack);
|
||||
this.SearchObj.OnSearchAfterCallBack += new EventHandler(OnSearchAfterd);
|
||||
this.pl_top.Height = 0;
|
||||
this.pl_top.Height = this.SearchObj.InitSearchControl(queryTable, this.pl_top);
|
||||
//创建表格列
|
||||
DataTable _gridColumns = BaseModuleImpl.GetBaseGridColumns(this.UnionModuleCodel);
|
||||
this.gcMain.SetReadOnlyColumns(_gridColumns, GridCustomColumnStruct.BaseMainGridView + this.SysModel.FormKey);
|
||||
//this.SetCustomColumns();
|
||||
//设置复选框
|
||||
GridDragGrid.GridAddCheckBox(gcMain.GridView);
|
||||
//右键
|
||||
DataTable dt = BaseModuleImpl.GetBaseGridRightMenus(this.UnionModuleCodel);
|
||||
string[] obj = new string[]{
|
||||
"",
|
||||
ERPInfo.Instance.UserId,
|
||||
ERPInfo.Instance.UserName,
|
||||
"3",
|
||||
this.UnionModuleCodel,
|
||||
}; ;
|
||||
DynamicModel dynamicModel = new DynamicModel(obj);
|
||||
this.gcMain.SetGridRightMenus(dt, dynamicModel, this.OnGridViewRightCallBack, this.SearchObj, null);
|
||||
//this.gcMain.GridView.OptionsView.ColumnAutoWidth = true;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 查询后清空复选框勾选
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
private void OnSearchAfterd(object sender, EventArgs e)
|
||||
{
|
||||
this.gcMain.GridView.ClearSelection();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 初始化后默认查询
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
private void OnFirstPageDataSourceBindCallBack(object sender, EventArgs e)
|
||||
{
|
||||
//打开时默认选中第一条
|
||||
if (LeftTreeViewEx != null && LeftTreeViewEx.TreeView.Nodes.Count > 0)
|
||||
{
|
||||
LeftTreeViewEx.TreeView.SelectedNode = LeftTreeViewEx.TreeView.Nodes[0];
|
||||
LeftTreeViewEx.TreeView.Nodes[0].Expand();
|
||||
}
|
||||
else if (LeftGridEx != null)
|
||||
{
|
||||
LeftGridEx.GridView.SelectRow(0);
|
||||
}
|
||||
this.SearchObj.SearchGrid();
|
||||
}
|
||||
|
||||
|
||||
|
||||
#region 设置分割条位置
|
||||
/// <summary>
|
||||
/// <para>说明:设置分割条位置</para>
|
||||
/// <para>创建人:王一帆</para>
|
||||
/// <para>创建日期:2021-07-21 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
protected void InitlizeSpiltLocation()
|
||||
{
|
||||
try
|
||||
{
|
||||
string width = IniHelper.Read(string.Format("bill_Special_Width_{0}", this.UnionModuleCodel));//通过Key获取Value值
|
||||
if (!string.IsNullOrEmpty(width))
|
||||
{
|
||||
this.splitMain.SplitterPosition = Convert.ToInt32(width);
|
||||
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogHelper.Instance.WriteError(ex);
|
||||
MessageUtil.Show(ex);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region 保存表格属性
|
||||
/// <summary>
|
||||
/// <para>说明:保存表格属性</para>
|
||||
/// <para>创建人:王一帆</para>
|
||||
/// <para>创建日期:2021-07-20 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The sender.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
protected virtual void SaveItemClick(object sender, EventArgs e)
|
||||
{
|
||||
DataRow rowItem = null;
|
||||
bool success = BaseImpl.HasExistsDataRow(ResourceKeys.SettingTableName, "formKey", CurrentOperColumnKey, string.Format(" and OperatorId='{0}' ", ERPInfo.Instance.UserId), out rowItem);
|
||||
if (!success)
|
||||
{
|
||||
MessageUtil.Show(ResourceKeys.NotFoundSettingColumnTable);
|
||||
return;
|
||||
}
|
||||
|
||||
if (MessageUtil.Show(ResourceKeys.IsSaveColumn, MessageBoxButtons.YesNo) == DialogResult.Yes)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (rowItem == null)
|
||||
{
|
||||
success = this.gcMain.GridView.SaveCustomColumnToDatabase(this.CurrentOperColumnKey);
|
||||
}
|
||||
else
|
||||
{
|
||||
success = this.gcMain.GridView.UpdateCustomColumnToDatabase(this.CurrentOperColumnKey);
|
||||
}
|
||||
MessageUtil.Show(success ? ResourceKeys.SaveSuccess : ResourceKeys.SaveFault);
|
||||
}
|
||||
catch (SqlException sex)
|
||||
{
|
||||
if (sex.Message.Contains(ResourceKeys.FieldLenIsShort) &&
|
||||
MessageUtil.Show(ResourceKeys.SaveFault + "\r\n" + ResourceKeys.CanUpgradeTable, MessageBoxButtons.YesNo) == DialogResult.Yes &&
|
||||
BaseImpl.UpdateTableField(ResourceKeys.SettingTableName, "formKey", "varchar(200)"))
|
||||
{
|
||||
MessageUtil.Show(ResourceKeys.UpdateSuccess);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogHelper.Instance.WriteError(ex);
|
||||
LogUtil.WriteError("保存表格属性出错", ex);
|
||||
MessageUtil.Show(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
#region 加载自定义列
|
||||
/// <summary>
|
||||
/// <para>说明:加载自定义列</para>
|
||||
/// <para>创建人:王一帆</para>
|
||||
/// <para>创建日期:2019-9-16 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
private void SetCustomColumns()
|
||||
{
|
||||
if (string.IsNullOrEmpty(this.CurrentOperColumnKey) || !BaseImpl.HasExistsTable(ResourceKeys.SettingTableName)) return;
|
||||
|
||||
DataTable customTable = this.gcMain.GridView.GetCustomColumnByDatabase(this.CurrentOperColumnKey);
|
||||
if (customTable != null && customTable.Rows.Count > 0)
|
||||
{
|
||||
foreach (DataRow rowItem in customTable.Rows)
|
||||
{
|
||||
string fieldName = rowItem["fieldName"] + "";
|
||||
int fieldWidth = Convert.ToInt32(rowItem["fieldWidth"]);
|
||||
int index = Convert.ToInt32(rowItem["orderid"]);
|
||||
bool visible = "1".Equals(rowItem["isVisible"] + "") && fieldWidth > 0;
|
||||
bool isFix = "True".Equals(rowItem["IfFixColumn"] + "", StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
GridColumn gridColumn = this.gcMain.GridView.Columns.ColumnByName(fieldName);
|
||||
if (gridColumn != null && gridColumn.Visible && gridColumn.Width > 0)
|
||||
{
|
||||
GridColumn colObj = this.gcMain.GridView.Columns[fieldName];
|
||||
colObj.VisibleIndex = index;
|
||||
colObj.Width = fieldWidth;
|
||||
colObj.Visible = visible;
|
||||
colObj.Fixed = isFix ? FixedStyle.Left : FixedStyle.None;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 刷新左侧树数据
|
||||
/// <summary>
|
||||
/// <para>说明:设置左侧树数据</para>
|
||||
/// <para>创建人:王一帆</para>
|
||||
/// <para>创建日期:2021-07-21 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
protected void SetLeftTreeView()
|
||||
{
|
||||
this.LeftRowObj = BaseModuleImpl.GetBaseLeftTreeField(this.UnionModuleCodel);//获取表格左侧树字段
|
||||
if (this.LeftRowObj != null)
|
||||
{
|
||||
//this.ModuleGridObj.ParentUnionField = this.LeftRowObj["fieldname"] + "";
|
||||
this.ParentUnionField = this.LeftRowObj["fieldname"] + "";
|
||||
this.ParentKeyField = this.LeftRowObj["fieldsqlid"] + "";
|
||||
this.treeLeft.TreeNodeKeyField = this.LeftRowObj["fieldsqlid"] + "";
|
||||
this.treeLeft.TreeNodeTextField = this.LeftRowObj["fieldsqlname"] + "";
|
||||
this.treeLeft.TreeNodeSelectAfter += new TreeViewEventHandler(OnTreeLeftTreeNodeSelected);
|
||||
this.treeLeft.BindTreeView(BaseImpl.GetDataTableResult(this.LeftRowObj["fieldsql"] + ""));
|
||||
}
|
||||
else
|
||||
{
|
||||
// 根据模块上配置的sql加载树
|
||||
if (this.SysModel != null && !string.IsNullOrEmpty(this.SysModel.TreeSQL))
|
||||
{
|
||||
this.ParentUnionField = "SpeciesNo";
|
||||
this.ParentKeyField = "SpeciesNo";
|
||||
this.treeLeft.TreeNodeKeyField = "SpeciesNo";
|
||||
this.treeLeft.TreeNodeTextField = "SpeciesName";
|
||||
this.treeLeft.TreeNodeSelectAfter += new TreeViewEventHandler(OnTreeLeftTreeNodeSelected);
|
||||
this.treeLeft.BindTreeView(BaseImpl.GetDataTableResult(this.SysModel.TreeSQL));
|
||||
}
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:树节点点击后刷新数据</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2017-10-26 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="TreeViewEventArgs"/> instance containing the event data.</param>
|
||||
protected void OnTreeLeftTreeNodeSelected(object sender, TreeViewEventArgs e)
|
||||
{
|
||||
string where = string.Format(" and {0} like '{1}%' ", this.treeLeft.TreeNodeKeyField, e.Node.Name);
|
||||
|
||||
string sqlValue = ReplaceHelper.IsProcedure(this.SysModel.MenuSql) ?
|
||||
ReplaceHelper.ReplaceTreeViewParentKeyCond(this.SysModel.MenuSql, treeLeft.GetSelectNodeValue()) :
|
||||
ReplaceHelper.ReplaceWhereCond(this.SysModel.MenuSql) + where;
|
||||
//this.gcMain.gridControl.DataSource = MainImpl.GetDataTableResult(sqlValue);
|
||||
this.SearchObj.SearchGrid(sqlValue);
|
||||
this.gcMain.GridView.ClearSelection();
|
||||
}
|
||||
|
||||
|
||||
|
||||
#region 设置左侧表格数据
|
||||
/// <summary>
|
||||
/// <para>说明:设置左侧表格数据</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2017-10-25 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
protected void SetLeftGridView()
|
||||
{
|
||||
this.LeftRowObj = BaseModuleImpl.GetBaseLeftTreeField(UnionModuleCodel);//获取表格左侧树字段
|
||||
if (this.LeftRowObj != null)
|
||||
{
|
||||
DataTable dtTable = BaseModuleImpl.GetBaseLeftGridField(UnionModuleCodel);
|
||||
DataTable dtColorTable = BaseModuleImpl.GetBaseGridRowColors(this.LeftRowObj["fieldKey"] + "");
|
||||
this.gridLeft.GridView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(OnGridViewRowClick);
|
||||
this.gridLeft.SetGridRowColors(dtColorTable);
|
||||
this.gridLeft.SetReadOnlyColumns(dtTable, GridCustomColumnStruct.BaseLeftGridView + UnionModuleCodel);
|
||||
this.ParentUnionField = this.LeftRowObj["fieldname"] + "";
|
||||
this.ParentKeyField = this.LeftRowObj["fieldsqlid"] + "";
|
||||
|
||||
//this.ModuleGridObj.ParentKeyField = this.LeftRowObj["fieldsqlid"] + "";
|
||||
//this.ModuleGridObj.ParentUnionField = this.LeftRowObj["fieldname"] + "";
|
||||
|
||||
DataTable table = BaseModuleImpl.GetCustomQueryFields(this.LeftRowObj["fieldKey"] + "");
|
||||
string searchSql = this.LeftRowObj["fieldsql"] + "";
|
||||
if (table != null && table.Rows.Count > 0)
|
||||
{
|
||||
// 自定义查询条件
|
||||
|
||||
this._leftGridSearchObj = new MyControl(searchSql, this.gridLeft);
|
||||
this.pl_left_top.Height = this._leftGridSearchObj.InitSearchControl(table, this.pl_left_top);
|
||||
this._leftGridSearchObj.OnDataSourceBindCallBack += new EventHandler(OnLeftControlObjDataSourceBindCallBack);
|
||||
}
|
||||
else
|
||||
{
|
||||
DataTable leftGridCondtionTable = BaseImpl.GetDataTableResult(searchSql);
|
||||
this.pl_left_top.Visible = false;
|
||||
this.gridLeft.GridControl.DataSource = leftGridCondtionTable;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
#region 刷新右侧表格数据
|
||||
/// <summary>
|
||||
/// <para>说明:刷新右侧表格数据</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-03-19 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="DevExpress.Data.SelectionChangedEventArgs"/> instance containing the event data.</param>
|
||||
protected void OnGridViewRowClick(object sender, DevExpress.XtraGrid.Views.Grid.RowClickEventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
string sqlValue = ReplaceHelper.ReplaceWhereCond(this.SysModel.MenuSql);
|
||||
if (this.gridLeft.Visible)
|
||||
{
|
||||
DataRow rowitem = this.gridLeft.GridView.GetFocusedDataRow();
|
||||
sqlValue = this._leftGridSearchObj != null ? this._leftGridSearchObj.ReplaceParentControlValue(sqlValue) : sqlValue;
|
||||
sqlValue = ReplaceHelper.ReplaceRowParam(rowitem, sqlValue);
|
||||
}
|
||||
|
||||
this.SearchObj.SearchGrid(sqlValue);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message, ex.Message);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#endregion
|
||||
#region 事件
|
||||
|
||||
/// <summary>
|
||||
/// <para>说明:数据绑定完成后加载数据</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期: </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
protected void OnLeftControlObjDataSourceBindCallBack(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
this._leftGridSearchObj.SearchGrid();
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message, ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
#region 确定
|
||||
/// <summary>
|
||||
/// <para>说明:确定</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-03-20 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
private void btnOk_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
this.DataRows = gcMain.GetViewFocusedDataRows();
|
||||
if (DataRows.Length > 0)
|
||||
{
|
||||
this.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
}
|
||||
this.Close();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 取消
|
||||
/// <summary>
|
||||
/// <para>说明:取消</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-03-20 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
private void btnCancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.DialogResult = DialogResult.Cancel;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 释放时清理数据源
|
||||
/// <summary>
|
||||
/// <para>说明:释放时清理数据源</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2018-03-16 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
private void OnFrmModelLookUp_Disposed(object sender, EventArgs e)
|
||||
{
|
||||
GC.Collect();
|
||||
}
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// <para>说明:右键菜单执行后刷新数据,刷新规则按照上一次查询条件刷新</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2017-11-02 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The sender.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
protected void OnGridViewRightCallBack(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
this.SearchObj.SearchLastGrid();
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message, ex.Message);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
+64
@@ -0,0 +1,64 @@
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
partial class FrmMain
|
||||
{
|
||||
/// <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 Windows Form 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.billModule1 = new Lskj.PubBillManagement.BillModule();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// billModule1
|
||||
//
|
||||
this.billModule1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.billModule1.Location = new System.Drawing.Point(0, 0);
|
||||
this.billModule1.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.billModule1.Name = "billModule1";
|
||||
this.billModule1.Size = new System.Drawing.Size(1579, 912);
|
||||
this.billModule1.TabIndex = 0;
|
||||
//
|
||||
// FrmMain
|
||||
//
|
||||
this.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.Appearance.Options.UseBackColor = true;
|
||||
this.Appearance.Options.UseFont = true;
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.ClientSize = new System.Drawing.Size(1579, 912);
|
||||
this.Controls.Add(this.billModule1);
|
||||
this.Margin = new System.Windows.Forms.Padding(5);
|
||||
this.Name = "FrmMain";
|
||||
this.Text = "单据模版";
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private BillModule billModule1;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,186 @@
|
||||
/******************************
|
||||
* 说明:单据模版
|
||||
* 创建人:龚宇超
|
||||
* 创建日期:2017-11-23
|
||||
* 修改人:
|
||||
* 修改日期:
|
||||
* 修改备注:
|
||||
* 版本:1.0.0.0
|
||||
******************************/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using Lskj.Control;
|
||||
using Lskj.Model;
|
||||
using Lskj.Control.Model;
|
||||
using Lskj.Util;
|
||||
using Lskj.Business.Impl;
|
||||
using DevExpress.XtraGrid.Views.Grid;
|
||||
using Lskj.Data;
|
||||
using DevExpress.XtraBars;
|
||||
using DevExpress.XtraTab;
|
||||
using DevExpress.XtraEditors;
|
||||
using System.Collections;
|
||||
using Lskj.PubBillManagement.Model;
|
||||
using DevExpress.Data;
|
||||
using DevExpress.XtraGrid.Columns;
|
||||
using System.IO;
|
||||
using Lskj.Business;
|
||||
using Lskj.Main.Model;
|
||||
using System.Threading.Tasks;
|
||||
using Lskj.Core;
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据模版
|
||||
/// </summary>
|
||||
public partial class FrmMain : BaseForm
|
||||
{
|
||||
/// <summary>
|
||||
/// 入口参数
|
||||
/// </summary>
|
||||
public DynamicBillModel SysModel;
|
||||
/// <summary>
|
||||
/// 第一次进入页面
|
||||
/// </summary>
|
||||
public bool isInitialization = true;
|
||||
|
||||
|
||||
public FrmMain()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
protected override void OnLoad(EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
WaitForm.ShowForm();
|
||||
Dictionary<object, Hashtable> dataCaches = SysModel != null ? SysModel.DataCaches : null;
|
||||
if (!dataCaches.GetValue(this, "Privilege", out string privilege))
|
||||
{
|
||||
privilege = SysModel.ModuleId > 0 ? BaseImpl.GetUserPurviewsByMenuId(SysModel.ModuleId + "") + "" : BaseImpl.GetUserPurviewsByMenuCode(SysModel.ModuleCode) + "";
|
||||
}
|
||||
this.SysModel.Privilege = privilege;
|
||||
|
||||
if (!this.SysModel.HasPrivilege())
|
||||
{
|
||||
MessageUtil.Show(ResourceKeys.UnPurview);
|
||||
this.Close();
|
||||
}
|
||||
else
|
||||
{
|
||||
billModule1.OnLoad(SysModel);
|
||||
// 右键菜单调用方式,则模块名称按照系统设置设定
|
||||
if (!string.IsNullOrEmpty(this.SysModel.BillMasterSql) ||
|
||||
!string.IsNullOrEmpty(this.SysModel.BillDetailSql) ||
|
||||
!string.IsNullOrEmpty(this.SysModel.BillOrderNo))
|
||||
{
|
||||
|
||||
this.Text = this.billModule1.BillModel.TypeName;
|
||||
if (this.SysModel.BillDetailSql.StartsWith("*"))
|
||||
{
|
||||
string rightid = this.SysModel.BillDetailSql.TrimStart('*');
|
||||
string sqlValue = "select AllowNullExec,* from p_systempopupmenu ";
|
||||
sqlValue = $"{sqlValue} where id = '{rightid}'";
|
||||
DataRow rowItem = BaseImpl.GetDataRowResult(sqlValue);
|
||||
//if (rowItem != null)
|
||||
//{
|
||||
// CommonMenu menu = new CommonMenu(this.SysModel, this.billModule1.ControlObj, this.billModule1.gcMainDetilObj);
|
||||
// menu.DynamicLinkAfter += new CommonToolAfterDynamicLinkEventHandler(OnDynamicLinkAfter);
|
||||
// menu.Apply(rowItem);
|
||||
//}
|
||||
}
|
||||
}
|
||||
this.FormClosing += new FormClosingEventHandler(OnClose);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogHelper.Instance.WriteError(ex);
|
||||
//MessageUtil.Show(ex);
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message, ex.Message);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
||||
Lskj.Control.Model.AutoSizeChange.ControllInitializeSize(this);
|
||||
WaitForm.HideForm();
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 执行完成后若是取消状态则关闭当前界面
|
||||
/// </summary>
|
||||
/// <param name="e"></param>
|
||||
private void OnDynamicLinkAfter(object sender, ApplyArgs e)
|
||||
{
|
||||
if (e.DialogModel != null && e.DialogModel.PubDialogType == DialogType.Pubcolsed)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取数据源缓存
|
||||
/// </summary>
|
||||
/// <param name="cachesDic"></param>
|
||||
public void GetDataCaches(Dictionary<object, Hashtable> cachesDic)
|
||||
{
|
||||
//全局数据
|
||||
Task<DynamicModel> dynamicModelTask = cachesDic.AddTask(this, "DynamicModel", new Task<DynamicModel>(() =>
|
||||
{
|
||||
return SysModel;//动态链接库对象
|
||||
}));
|
||||
Task<DataRow> systemDllRowTask = cachesDic.AddTask(this, "SystemDllRow", new Task<DataRow>(() =>
|
||||
{
|
||||
return MainImpl.GetSystemdllTab(SysModel.ModuleCode);//获取单个模块信息
|
||||
}));
|
||||
Task<ModuleModel> sysModelTask = cachesDic.AddTask(this, "SysModel", new Task<ModuleModel>(() =>
|
||||
{
|
||||
ModuleModel sysModel = new ModuleModel(systemDllRowTask.Result);
|
||||
return sysModel;//系统模块实体对象
|
||||
}));
|
||||
Task<int> formTypeTask = cachesDic.AddTask(this, "FormType", new Task<int>(() =>
|
||||
{
|
||||
return BaseImpl.GetBillDetailType(SysModel.ModuleCode);
|
||||
}));
|
||||
Task<string> privilegeTask = cachesDic.AddTask(this, "Privilege", new Task<string>(() =>
|
||||
{
|
||||
return SysModel.ModuleId > 0 ? BaseImpl.GetUserPurviewsByMenuId(SysModel.ModuleId + "") + "" : BaseImpl.GetUserPurviewsByMenuCode(SysModel.ModuleCode) + "";
|
||||
}));
|
||||
//获取billModule1控件的数据
|
||||
if (dynamicModelTask.Result.HasPrivilege())
|
||||
{
|
||||
//添加数据到billModule1
|
||||
cachesDic.AddTask(billModule1, "DynamicModel", dynamicModelTask);
|
||||
cachesDic.AddTask(billModule1, "SystemDllRow", systemDllRowTask);
|
||||
cachesDic.AddTask(billModule1, "SysModel", sysModelTask);
|
||||
billModule1.GetDataCaches(cachesDic);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
private void OnClose(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
string guid = this.Tag + "";
|
||||
if (string.IsNullOrWhiteSpace(guid)) return;
|
||||
DllModule m = Manager.ModuleForms[guid];
|
||||
m.IsClose = true;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
<?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>
|
||||
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>44</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@@ -0,0 +1,98 @@
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
partial class FrmScanCodeAssociation
|
||||
{
|
||||
/// <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 Windows Form 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.plm_bottom = new DevExpress.XtraEditors.PanelControl();
|
||||
this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.gcMain = new Lskj.Control.GridControlEx();
|
||||
((System.ComponentModel.ISupportInitialize)(this.plm_bottom)).BeginInit();
|
||||
this.plm_bottom.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// plm_bottom
|
||||
//
|
||||
this.plm_bottom.Controls.Add(this.simpleButton1);
|
||||
this.plm_bottom.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.plm_bottom.Location = new System.Drawing.Point(0, 410);
|
||||
this.plm_bottom.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.plm_bottom.Name = "plm_bottom";
|
||||
this.plm_bottom.Size = new System.Drawing.Size(800, 40);
|
||||
this.plm_bottom.TabIndex = 18;
|
||||
//
|
||||
// simpleButton1
|
||||
//
|
||||
this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.simpleButton1.Appearance.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.simpleButton1.Appearance.Options.UseFont = true;
|
||||
this.simpleButton1.Location = new System.Drawing.Point(696, 6);
|
||||
this.simpleButton1.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.simpleButton1.Name = "simpleButton1";
|
||||
this.simpleButton1.Size = new System.Drawing.Size(90, 30);
|
||||
this.simpleButton1.TabIndex = 41;
|
||||
this.simpleButton1.Text = "确定";
|
||||
this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
|
||||
//
|
||||
// gcMain
|
||||
//
|
||||
this.gcMain.AdapterObj = null;
|
||||
this.gcMain.BackColor = System.Drawing.Color.Transparent;
|
||||
this.gcMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gcMain.Location = new System.Drawing.Point(0, 0);
|
||||
this.gcMain.Margin = new System.Windows.Forms.Padding(5);
|
||||
this.gcMain.Name = "gcMain";
|
||||
this.gcMain.SiftEnumObj = Lskj.Control.GridControlEx.HeaderSiftEnum.Sum;
|
||||
this.gcMain.Size = new System.Drawing.Size(800, 410);
|
||||
this.gcMain.TabIndex = 21;
|
||||
//
|
||||
// FrmScanCodeAssociation
|
||||
//
|
||||
this.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.Appearance.Options.UseBackColor = true;
|
||||
this.Appearance.Options.UseFont = true;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||||
this.Controls.Add(this.gcMain);
|
||||
this.Controls.Add(this.plm_bottom);
|
||||
this.Name = "FrmScanCodeAssociation";
|
||||
this.Text = "串码选择";
|
||||
((System.ComponentModel.ISupportInitialize)(this.plm_bottom)).EndInit();
|
||||
this.plm_bottom.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.XtraEditors.PanelControl plm_bottom;
|
||||
private DevExpress.XtraEditors.SimpleButton simpleButton1;
|
||||
private Control.GridControlEx gcMain;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
using Lskj.Business.Impl;
|
||||
using Lskj.Control;
|
||||
using Lskj.Control.Model;
|
||||
using Lskj.Core;
|
||||
using Lskj.Model;
|
||||
using Lskj.Util;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.PubBillManagement
|
||||
{
|
||||
public partial class FrmScanCodeAssociation : BaseForm
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 系统模块实体对象
|
||||
/// </summary>
|
||||
/// <value>The system model.</value>
|
||||
public ModuleModel SysModel { get; private set; }
|
||||
/// <summary>
|
||||
///主表条件控件
|
||||
/// </summary>
|
||||
public MyControl SearchMainObj;
|
||||
/// <summary>
|
||||
///扫码内容
|
||||
/// </summary>
|
||||
public string ScanCodeData;
|
||||
/// <summary>
|
||||
//选中的串码
|
||||
/// </summary>
|
||||
public string StringCodes;
|
||||
|
||||
public FrmScanCodeAssociation()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public FrmScanCodeAssociation(DataRow modelRow, string scanCodeData)
|
||||
{
|
||||
InitializeComponent();
|
||||
this.ScanCodeData = scanCodeData;
|
||||
//根据传入的模块号获取模块信息
|
||||
this.SysModel = new ModuleModel(modelRow);
|
||||
DataTable mainGridColumns = BaseModuleImpl.GetBaseGridColumns(this.SysModel.ModeCode);
|
||||
this.gcMain.SetReadOnlyColumns(mainGridColumns, GridCustomColumnStruct.BaseMainGridView + this.SysModel.FormKey);//创建列
|
||||
string sql = ReplaceHelper.ReplaceParamToValue(SysModel.MenuSql, "{value}", this.ScanCodeData);
|
||||
DataTable dt = BillImpl.GetDataTableResult(sql);
|
||||
this.gcMain.GridControl.DataSource = dt;
|
||||
//加载复选框
|
||||
GridDragGrid.GridAddCheckBox(this.gcMain.GridView);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void simpleButton1_Click(object sender, EventArgs e)
|
||||
{
|
||||
DataRow[] dataRows = this.gcMain.GetViewFocusedDataRows();
|
||||
if (dataRows.Length > 0)
|
||||
{
|
||||
string name=this.gcMain.GridView.Columns[0].FieldName;
|
||||
string text = string.Empty;
|
||||
for (int i = 0; i < dataRows.Length; i++)
|
||||
{
|
||||
text += dataRows[i][name] + ";";
|
||||
}
|
||||
|
||||
StringCodes = text.Trim(';');
|
||||
this.Close();
|
||||
this.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
@@ -0,0 +1,209 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{6CE319BA-1253-41F2-8B59-8173FD7BE3F3}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Lskj.PubBillManagement</RootNamespace>
|
||||
<AssemblyName>Lskj.PubBillManagement</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\Debug\Lib\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\Debug\AllMethodXml\Lskj.PubBill.XML</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\Release\Lib\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="DevExpress.Data.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.Pdf.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.Printing.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.Utils.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraBars.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
</Reference>
|
||||
<Reference Include="DevExpress.XtraEditors.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraGrid.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraLayout.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraPrinting.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraTreeList.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>C:\Program Files\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraTreeList.v15.2.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Lskj.Data.ADO, Version=1.0.0.1, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\引用DLL\Lskj.Data.ADO.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Lskj.Data.Api, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\引用DLL\Lskj.Data.Api.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Lskj.Web.Core, Version=1.0.0.1, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\引用DLL\Lskj.Web.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Lskj.WebErp.Core, Version=1.0.0.2, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\引用DLL\Lskj.WebErp.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\引用DLL\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Net" />
|
||||
<Reference Include="System.Web" />
|
||||
<Reference Include="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="BillModule.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="BillModule.Designer.cs">
|
||||
<DependentUpon>BillModule.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="FrmAdd.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="FrmAdd.Designer.cs">
|
||||
<DependentUpon>FrmAdd.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="FrmBill.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="FrmBill.Designer.cs">
|
||||
<DependentUpon>FrmBill.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="FrmBomSelect.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="FrmBomSelect.Designer.cs">
|
||||
<DependentUpon>FrmBomSelect.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="FrmDocumentSource.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="FrmDocumentSource.Designer.cs">
|
||||
<DependentUpon>FrmDocumentSource.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="FrmScanCodeAssociation.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="FrmScanCodeAssociation.Designer.cs">
|
||||
<DependentUpon>FrmScanCodeAssociation.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Model\BillModuleModel.cs" />
|
||||
<Compile Include="Model\BillSourceUnionModel.cs" />
|
||||
<Compile Include="DllBaseClass.cs" />
|
||||
<Compile Include="FrmMain.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="FrmMain.Designer.cs">
|
||||
<DependentUpon>FrmMain.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Model\BillSourceModel.cs" />
|
||||
<Compile Include="Model\ComboxEditModel.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="BillModule.resx">
|
||||
<DependentUpon>BillModule.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="FrmAdd.resx">
|
||||
<DependentUpon>FrmAdd.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="FrmBill.resx">
|
||||
<DependentUpon>FrmBill.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="FrmBomSelect.resx">
|
||||
<DependentUpon>FrmBomSelect.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="FrmDocumentSource.resx">
|
||||
<DependentUpon>FrmDocumentSource.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="FrmMain.resx">
|
||||
<DependentUpon>FrmMain.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="FrmScanCodeAssociation.resx">
|
||||
<DependentUpon>FrmScanCodeAssociation.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\licenses.licx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Lskj.Business\Lskj.Business.csproj">
|
||||
<Project>{7EAFCCC2-A18F-49E9-85C6-A984966CFD01}</Project>
|
||||
<Name>Lskj.Business</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Control\Lskj.Control.csproj">
|
||||
<Project>{447cdc40-659f-4cca-9ed6-8e818b4cf8bf}</Project>
|
||||
<Name>Lskj.Control</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Core\Lskj.Core.csproj">
|
||||
<Project>{2a1be6ac-1077-491b-a754-c5822fe8121e}</Project>
|
||||
<Name>Lskj.Core</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Data\Lskj.Data.csproj">
|
||||
<Project>{308B9B18-9BE2-495C-9C64-EED81D567813}</Project>
|
||||
<Name>Lskj.Data</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Interface.Api\Lskj.Interface.Api.csproj">
|
||||
<Project>{24e9a18a-baf8-4052-809e-582b4fc6a8c4}</Project>
|
||||
<Name>Lskj.Interface.Api</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Main\Lskj.Main.csproj">
|
||||
<Project>{bca1e2b3-c4ab-4d2c-b519-3dcfdb5b83d6}</Project>
|
||||
<Name>Lskj.Main</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Model\Lskj.Model.csproj">
|
||||
<Project>{52BC40E0-C0C6-4F78-996B-CAE028D209CA}</Project>
|
||||
<Name>Lskj.Model</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Util\Lskj.Util.csproj">
|
||||
<Project>{A51BF642-6543-4DE3-8948-83F558B72BD4}</Project>
|
||||
<Name>Lskj.Util</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Lskj.PubBillManagement.Model
|
||||
{
|
||||
public class BillModuleModel
|
||||
{
|
||||
public BillSourceModel SourceModel { get; set; }
|
||||
public object SourceControl { get;set; }
|
||||
public object SourceDetailControl { get; set; }
|
||||
public object SourceDetailDetailControl { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,133 @@
|
||||
/******************************
|
||||
* 说明:单据来源对象
|
||||
* 创建人:龚宇超
|
||||
* 创建日期:2017-11-28
|
||||
* 修改人:
|
||||
* 修改日期:
|
||||
* 修改备注:
|
||||
* 版本:1.0.0.0
|
||||
******************************/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Data;
|
||||
|
||||
namespace Lskj.PubBillManagement.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据来源对象
|
||||
/// </summary>
|
||||
public class BillSourceModel
|
||||
{
|
||||
public int Id { get; private set; }
|
||||
public int SourceType { get; private set; }
|
||||
public int LoadBom { get; private set; }
|
||||
public bool CadDragDetail { get; private set; }
|
||||
public string UserName { get; private set; }
|
||||
public string FormKey { get; private set; }
|
||||
public string SourceKeyField { get; private set; }
|
||||
public string SourceResult { get; private set; }
|
||||
public string SourceSql { get; private set; }
|
||||
public string DetailSql { get; private set; }
|
||||
public string BomSql { get; private set; }
|
||||
public string BomCaption { get; private set; }
|
||||
public string DetailEnableCond { get; private set; }
|
||||
public string CodeInputSql { get; private set; }
|
||||
public string CodeInputCaption { get; private set; }
|
||||
public string CodeInputHint { get; private set; }
|
||||
public string SearchDefaultField { get; private set; }
|
||||
public string DetailEnableMsg { get; private set; }
|
||||
public bool SaveRefreshFlag { get; private set; }
|
||||
public string SourceDetailsDetailsSql { get; private set; }//来源明细的明细
|
||||
public string sourceDetailType { get; private set; }//来源明细的类型
|
||||
public bool DisableShowSourceCount { get; private set; }//是否显示来源数量
|
||||
public string AddDataSql { get; private set; }// 添加数据sql(来源明细添加到主表明细时,执行sql把查询数据源一并添加到来源明细中)
|
||||
public string AddDataCondition { get; private set; }// 添加数据条件
|
||||
public bool LoadFilter { get; private set; }//来源筛选行是否显示
|
||||
public bool DetailedLoadFilter { get; private set; }//来源明细筛选行是否显示
|
||||
|
||||
public bool DetailsDoubleClick;// 单据来源刷新来源明细模式,默认单击,1为双击
|
||||
|
||||
public string MainDetailsAddType;// 主表明细新增模式 (默认来源明细和来源明细的明细都可以添加到主表, 1为来源明细添加 2为来源明细的明细添加)
|
||||
|
||||
public string SourceKeyFieldName;// 节点id(来源主表为树表格时)
|
||||
|
||||
public string SourceParentFieldName;// 父节点id(来源主表为树表格时 )
|
||||
|
||||
public bool DragAndSave;// 拖拽后保存
|
||||
|
||||
public bool TreeInhibitSort;// 树节点 禁用默认排序
|
||||
|
||||
public string Orderid;// 来源页签序号
|
||||
|
||||
public string DetailMenuCode;// 来源模块号
|
||||
|
||||
|
||||
|
||||
public BillSourceModel(DataRow item)
|
||||
{
|
||||
if (item == null) return;
|
||||
|
||||
this.Id = Convert.ToInt32(item["Id"] + "");
|
||||
this.SourceType = string.IsNullOrEmpty(item["sourceType"] + "") ? 0 : Convert.ToInt32(item["sourceType"] + "");
|
||||
this.LoadBom = string.IsNullOrEmpty(item["loadbom"] + "") ? 0 : Convert.ToInt32(item["loadbom"] + "");
|
||||
this.CadDragDetail = item.Table.Columns.Contains("dragDetailEnable") ? "1" != item["dragDetailEnable"] + "" : true;
|
||||
this.UserName = item["userName"] + "";
|
||||
if (Business.Impl.LanguageTranslation.Translatable)
|
||||
{
|
||||
this.UserName = Business.Impl.LanguageTranslation.GetTranslatedText(this.UserName);
|
||||
}
|
||||
|
||||
this.FormKey = item["FormKey"] + "";
|
||||
this.SourceKeyField = item["sourceKeyField"] + "";
|
||||
this.SourceResult = item["sourceResult"] + "";
|
||||
this.SourceSql = item["SourceSql"] + "";
|
||||
this.DetailSql = item["DetailSql"] + "";
|
||||
this.BomSql = item["BomSql"] + "";
|
||||
this.BomCaption = item["BomCaption"] + "";
|
||||
this.DetailEnableCond = item["DetailEnableCond"] + "";
|
||||
this.CodeInputSql = item["CodeInputSql"] + "";
|
||||
this.CodeInputCaption = item["CodeInputCaption"] + "";
|
||||
this.CodeInputHint = item["CodeInputHint"] + "";
|
||||
this.SearchDefaultField = item["SearchDefault"] + "";
|
||||
this.DetailEnableMsg = item["DetailEnableMsg"] + "";
|
||||
this.SaveRefreshFlag = item.Table.Columns.Contains("SaveRefreshFlag") && "1".Equals(item["SaveRefreshFlag"] + "") ? true : false;
|
||||
this.SourceDetailsDetailsSql = item.Table.Columns.Contains("detailSQL1") ? item["detailSQL1"] + "" : "";
|
||||
this.sourceDetailType = item.Table.Columns.Contains("sourceDetailType") ? item["sourceDetailType"] + "" : "";
|
||||
this.DisableShowSourceCount = item.Table.Columns.Contains("DisableShowSourceCount") && "1".Equals(item["DisableShowSourceCount"] + "") ? true : false;
|
||||
|
||||
this.AddDataSql = item.Table.Columns.Contains("AddDataSql") ? item["AddDataSql"] + "" : "";
|
||||
this.AddDataCondition = item.Table.Columns.Contains("AddDataCondition") ? item["AddDataCondition"] + "" : "";
|
||||
|
||||
this.LoadFilter = item.Table.Columns.Contains("LoadFilter") && "1".Equals(item["LoadFilter"] + "") ? true : false;
|
||||
this.DetailedLoadFilter = item.Table.Columns.Contains("DetailedLoadFilter") && "1".Equals(item["DetailedLoadFilter"] + "") ? true : false;
|
||||
this.DetailsDoubleClick = item.Table.Columns.Contains("DetailsDoubleClick") && "1".Equals(item["DetailsDoubleClick"] + "") ? true : false;
|
||||
this.MainDetailsAddType = item.Table.Columns.Contains("MainDetailsAddType") ? item["MainDetailsAddType"] + "" : "";
|
||||
|
||||
this.SourceKeyFieldName = item.Table.Columns.Contains("SourceKeyFieldName") ? item["SourceKeyFieldName"] + "" : "";
|
||||
this.SourceParentFieldName = item.Table.Columns.Contains("SourceParentFieldName") ? item["SourceParentFieldName"] + "" : "";
|
||||
this.DragAndSave = item.Table.Columns.Contains("DragAndSave") && "1".Equals(item["DragAndSave"] + "") ? true : false;
|
||||
this.TreeInhibitSort = item.Table.Columns.Contains("TreeInhibitSort") && "1".Equals(item["TreeInhibitSort"] + "") ? true : false;
|
||||
this.Orderid = item.Table.Columns.Contains("Orderid") ? item["Orderid"] + "" : "";
|
||||
this.DetailMenuCode = item.Table.Columns.Contains("DetailMenuCode") ? item["DetailMenuCode"] + "" : "";
|
||||
}
|
||||
/// <summary>
|
||||
/// 改变来源类型
|
||||
/// </summary>
|
||||
/// <param name="sourceType"></param>
|
||||
public void ChangeSourceType(int sourceType)
|
||||
{
|
||||
this.SourceType = sourceType;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 改变来源明细类型
|
||||
/// </summary>
|
||||
/// <param name="sourceType"></param>
|
||||
public void ChangeSourceDetailType(string sourceDetailType)
|
||||
{
|
||||
this.sourceDetailType = sourceDetailType;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
/******************************
|
||||
* 说明:单据来源关联类
|
||||
* 创建人:龚宇超
|
||||
* 创建日期:2017-11-28
|
||||
* 修改人:
|
||||
* 修改日期:
|
||||
* 修改备注:
|
||||
* 版本:1.0.0.0
|
||||
******************************/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Lskj.Control;
|
||||
using Lskj.Control.Model;
|
||||
|
||||
namespace Lskj.PubBillManagement.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据来源关联类
|
||||
/// </summary>
|
||||
public class BillSourceUnionModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据来源对象
|
||||
/// </summary>
|
||||
public BillSourceModel ModelObj;
|
||||
/// <summary>
|
||||
/// 单据来源树
|
||||
/// </summary>
|
||||
public TreeViewEx TreeViewObj;
|
||||
/// <summary>
|
||||
/// 单据来源表格
|
||||
/// </summary>
|
||||
public GridControlEx GridControlObj;
|
||||
/// <summary>
|
||||
/// 单据来源表格树
|
||||
/// </summary>
|
||||
public TreeGridControlEx TreeGridControlObj;
|
||||
/// <summary>
|
||||
/// 单据来源明细表格
|
||||
/// </summary>
|
||||
public GridControlEx GridDetailControlObj;
|
||||
/// <summary>
|
||||
/// 单据来源明细表格树
|
||||
/// </summary>
|
||||
public TreeGridControlEx TreeGridDetailControlObj;
|
||||
/// <summary>
|
||||
/// 单据来源查询条件
|
||||
/// </summary>
|
||||
public MyControl SearchObj;
|
||||
|
||||
/// <summary>
|
||||
/// 单据来源明细表格的明细
|
||||
/// </summary>
|
||||
public GridControlEx GridDetailDetailControlObj;
|
||||
/// <summary>
|
||||
/// 单据来源明细模块
|
||||
/// </summary>
|
||||
public ModuleGridEx GridDetailModuleGridEx;
|
||||
|
||||
|
||||
public bool IsChange = false;
|
||||
|
||||
/// <summary>
|
||||
/// 添加数据sql(来源明细添加到主表明细时,执行sql把查询数据源一并添加到来源明细中)
|
||||
/// </summary>
|
||||
public string AddDataSql;
|
||||
/// <summary>
|
||||
/// 添加数据条件
|
||||
/// </summary>
|
||||
public string AddDataCondition;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
/******************************
|
||||
* 说明:ComboxEdit数据源对象
|
||||
* 创建人:龚宇超
|
||||
* 创建日期:2018-04-19
|
||||
* 修改人:
|
||||
* 修改日期:
|
||||
* 修改备注:
|
||||
* 版本:1.0.0.0
|
||||
******************************/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Data;
|
||||
|
||||
namespace Lskj.PubBillManagement.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// ComboxEdit数据源对象
|
||||
/// </summary>
|
||||
public class ComboBoxEditModel
|
||||
{
|
||||
public string ValuemMeber;
|
||||
public string TextMember;
|
||||
|
||||
public DataRow RowItem;
|
||||
/// <summary>
|
||||
/// 单据来源对象
|
||||
/// </summary>
|
||||
public BillSourceModel SourceModel;
|
||||
/// <summary>
|
||||
/// 单据来源关联明细对象
|
||||
/// </summary>
|
||||
public BillSourceUnionModel UnionModel;
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return RowItem[TextMember] + "";
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// 有关程序集的常规信息通过以下
|
||||
// 特性集控制。更改这些特性值可修改
|
||||
// 与程序集关联的信息。
|
||||
[assembly: AssemblyTitle("Lskj.PubBillManagement")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Microsoft")]
|
||||
[assembly: AssemblyProduct("Lskj.PubBillManagement")]
|
||||
[assembly: AssemblyCopyright("Copyright © Microsoft 2017")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// 将 ComVisible 设置为 false 使此程序集中的类型
|
||||
// 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型,
|
||||
// 则将该类型上的 ComVisible 特性设置为 true。
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
|
||||
[assembly: Guid("53e8153b-112d-4428-b9b2-a3b62ccbaf46")]
|
||||
|
||||
// 程序集的版本信息由下面四个值组成:
|
||||
//
|
||||
// 主版本
|
||||
// 次版本
|
||||
// 内部版本号
|
||||
// 修订号
|
||||
//
|
||||
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
|
||||
// 方法是按如下所示使用“*”:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
@@ -0,0 +1,3 @@
|
||||
DevExpress.XtraEditors.TextEdit, DevExpress.XtraEditors.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
DevExpress.XtraEditors.ComboBoxEdit, DevExpress.XtraEditors.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
DevExpress.XtraBars.BarManager, DevExpress.XtraBars.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="NPOI" publicKeyToken="0df73ec7942b34e1" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.1.3.1" newVersion="2.1.3.1" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.6.10.0" newVersion="2.6.10.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.6.10.0" newVersion="2.6.10.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Spire.XLS" publicKeyToken="663f351905198cb3" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-10.3.8.0" newVersion="10.3.8.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Spire.Presentation" publicKeyToken="663f351905198cb3" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.3.6.0" newVersion="5.3.6.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Spire.Doc" publicKeyToken="663f351905198cb3" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.3.15.0" newVersion="8.3.15.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
@@ -879,7 +879,7 @@ namespace Lskj.PubPower
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
using Lskj.Business;
|
||||
using Lskj.Model;
|
||||
using Lskj.Util;
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.PubUpdatePwd
|
||||
{
|
||||
/// <summary>
|
||||
/// 动态链接库统一入口。
|
||||
/// </summary>
|
||||
public sealed class DllBaseClass : IForm
|
||||
{
|
||||
public DllBaseClass()
|
||||
{
|
||||
}
|
||||
|
||||
public DllBaseClass(string[] obj)
|
||||
{
|
||||
try
|
||||
{
|
||||
DynamicUpdatePwd moduleModel = new DynamicUpdatePwd(obj);
|
||||
FrmMain main = new FrmMain();
|
||||
main.Model = moduleModel;
|
||||
SubForm = main;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogUtil.WriteError("Lskj.PubUpdatePwd.dll--参数错误-->", ex);
|
||||
}
|
||||
}
|
||||
|
||||
public Form SubForm { get; set; }
|
||||
}
|
||||
|
||||
public class DynamicUpdatePwd : DynamicModel
|
||||
{
|
||||
//打开时默认选中人员id
|
||||
public string PersonnelID { get; private set; }
|
||||
//修改后关闭
|
||||
public string AfterClose = "";
|
||||
|
||||
|
||||
public DynamicUpdatePwd(string[] args)
|
||||
: base(args)
|
||||
{
|
||||
if (args != null && args.Length > 5 && !string.IsNullOrWhiteSpace(args[5]))
|
||||
{
|
||||
PersonnelID = args[5].Trim();
|
||||
}
|
||||
if (args != null && args.Length > 6 && !string.IsNullOrWhiteSpace(args[6]))
|
||||
{
|
||||
AfterClose = args[6].Trim();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+193
@@ -0,0 +1,193 @@
|
||||
namespace Lskj.PubUpdatePwd
|
||||
{
|
||||
partial class FrmMain
|
||||
{
|
||||
/// <summary>
|
||||
/// 必需的设计器变量。
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// 清理所有正在使用的资源。
|
||||
/// </summary>
|
||||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows 窗体设计器生成的代码
|
||||
|
||||
/// <summary>
|
||||
/// 设计器支持所需的方法 - 不要修改
|
||||
/// 使用代码编辑器修改此方法的内容。
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.newPwd = new DevExpress.XtraEditors.LabelControl();
|
||||
this.txtNewPass = new DevExpress.XtraEditors.TextEdit();
|
||||
this.ConfirmPwd = new DevExpress.XtraEditors.LabelControl();
|
||||
this.txtPassConfirm = new DevExpress.XtraEditors.TextEdit();
|
||||
this.btnOK = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.lueUserName = new Lskj.Control.AutoGridLookUp();
|
||||
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
|
||||
this.label4 = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
((System.ComponentModel.ISupportInitialize)(this.txtNewPass.Properties)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.txtPassConfirm.Properties)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.lueUserName.Properties)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// newPwd
|
||||
//
|
||||
this.newPwd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
|
||||
this.newPwd.Location = new System.Drawing.Point(32, 56);
|
||||
this.newPwd.Name = "newPwd";
|
||||
this.newPwd.Size = new System.Drawing.Size(36, 14);
|
||||
this.newPwd.TabIndex = 0;
|
||||
this.newPwd.Text = "新密码";
|
||||
//
|
||||
// txtNewPass
|
||||
//
|
||||
this.txtNewPass.Location = new System.Drawing.Point(98, 53);
|
||||
this.txtNewPass.Name = "txtNewPass";
|
||||
this.txtNewPass.Size = new System.Drawing.Size(153, 20);
|
||||
this.txtNewPass.TabIndex = 1;
|
||||
//
|
||||
// ConfirmPwd
|
||||
//
|
||||
this.ConfirmPwd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
|
||||
this.ConfirmPwd.Location = new System.Drawing.Point(32, 93);
|
||||
this.ConfirmPwd.Name = "ConfirmPwd";
|
||||
this.ConfirmPwd.Size = new System.Drawing.Size(48, 14);
|
||||
this.ConfirmPwd.TabIndex = 3;
|
||||
this.ConfirmPwd.Text = "确认密码";
|
||||
//
|
||||
// txtPassConfirm
|
||||
//
|
||||
this.txtPassConfirm.Location = new System.Drawing.Point(98, 90);
|
||||
this.txtPassConfirm.Name = "txtPassConfirm";
|
||||
this.txtPassConfirm.Size = new System.Drawing.Size(153, 20);
|
||||
this.txtPassConfirm.TabIndex = 4;
|
||||
//
|
||||
// btnOK
|
||||
//
|
||||
this.btnOK.Location = new System.Drawing.Point(32, 187);
|
||||
this.btnOK.Name = "btnOK";
|
||||
this.btnOK.Size = new System.Drawing.Size(80, 25);
|
||||
this.btnOK.TabIndex = 8;
|
||||
this.btnOK.Text = "确定";
|
||||
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
||||
//
|
||||
// btnCancel
|
||||
//
|
||||
this.btnCancel.Location = new System.Drawing.Point(171, 187);
|
||||
this.btnCancel.Name = "btnCancel";
|
||||
this.btnCancel.Size = new System.Drawing.Size(80, 25);
|
||||
this.btnCancel.TabIndex = 9;
|
||||
this.btnCancel.Text = "取消";
|
||||
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
||||
//
|
||||
// lueUserName
|
||||
//
|
||||
this.lueUserName.DataSource = null;
|
||||
this.lueUserName.EditValue = "";
|
||||
this.lueUserName.Location = new System.Drawing.Point(98, 12);
|
||||
this.lueUserName.Name = "lueUserName";
|
||||
this.lueUserName.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 11F);
|
||||
this.lueUserName.Properties.Appearance.Options.UseFont = true;
|
||||
this.lueUserName.Properties.NullValuePrompt = "请输入账号";
|
||||
this.lueUserName.Properties.NullValuePromptShowForEmptyValue = true;
|
||||
this.lueUserName.Size = new System.Drawing.Size(153, 26);
|
||||
this.lueUserName.TabIndex = 10;
|
||||
//
|
||||
// labelControl1
|
||||
//
|
||||
this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
|
||||
this.labelControl1.Location = new System.Drawing.Point(32, 18);
|
||||
this.labelControl1.Name = "labelControl1";
|
||||
this.labelControl1.Size = new System.Drawing.Size(48, 14);
|
||||
this.labelControl1.TabIndex = 11;
|
||||
this.labelControl1.Text = "人员名称";
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.AutoSize = true;
|
||||
this.label4.Location = new System.Drawing.Point(96, 164);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Size = new System.Drawing.Size(89, 12);
|
||||
this.label4.TabIndex = 23;
|
||||
this.label4.Text = "3、至少8个字符";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Location = new System.Drawing.Point(96, 146);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(155, 12);
|
||||
this.label3.TabIndex = 22;
|
||||
this.label3.Text = "2、必须包含小写或大写字母";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Location = new System.Drawing.Point(36, 126);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(155, 12);
|
||||
this.label2.TabIndex = 21;
|
||||
this.label2.Text = "密码要求:1、必须包含数字";
|
||||
//
|
||||
// FrmMain
|
||||
//
|
||||
this.Appearance.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.Appearance.Options.UseBackColor = true;
|
||||
this.Appearance.Options.UseFont = true;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(290, 224);
|
||||
this.Controls.Add(this.label4);
|
||||
this.Controls.Add(this.label3);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.labelControl1);
|
||||
this.Controls.Add(this.lueUserName);
|
||||
this.Controls.Add(this.btnCancel);
|
||||
this.Controls.Add(this.btnOK);
|
||||
this.Controls.Add(this.txtPassConfirm);
|
||||
this.Controls.Add(this.ConfirmPwd);
|
||||
this.Controls.Add(this.txtNewPass);
|
||||
this.Controls.Add(this.newPwd);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "FrmMain";
|
||||
this.Text = "修改密码";
|
||||
this.Load += new System.EventHandler(this.FrmMain_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.txtNewPass.Properties)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.txtPassConfirm.Properties)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.lueUserName.Properties)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.XtraEditors.LabelControl newPwd;
|
||||
private DevExpress.XtraEditors.TextEdit txtNewPass;
|
||||
private DevExpress.XtraEditors.LabelControl ConfirmPwd;
|
||||
private DevExpress.XtraEditors.TextEdit txtPassConfirm;
|
||||
private DevExpress.XtraEditors.SimpleButton btnOK;
|
||||
private DevExpress.XtraEditors.SimpleButton btnCancel;
|
||||
private Control.AutoGridLookUp lueUserName;
|
||||
private DevExpress.XtraEditors.LabelControl labelControl1;
|
||||
private System.Windows.Forms.Label label4;
|
||||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.Label label2;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,277 @@
|
||||
using Lskj.Business;
|
||||
using Lskj.Business.Impl;
|
||||
using Lskj.Control;
|
||||
using Lskj.Core;
|
||||
using Lskj.Model;
|
||||
using Lskj.Util;
|
||||
using System;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.PubUpdatePwd
|
||||
{
|
||||
public partial class FrmMain : BaseForm
|
||||
{
|
||||
private static readonly Regex PasswordRegex = new Regex(
|
||||
@"(?=.*[0-9])
|
||||
(?=.*[a-zA-Z])
|
||||
(?=.*[^a-zA-Z0-9])
|
||||
.{8,18}",
|
||||
RegexOptions.Multiline | RegexOptions.IgnorePatternWhitespace);
|
||||
|
||||
public DynamicUpdatePwd Model;
|
||||
|
||||
public FrmMain()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void FrmMain_Load(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
txtNewPass.Text = string.Empty;
|
||||
txtPassConfirm.Text = string.Empty;
|
||||
txtNewPass.Properties.PasswordChar = '*';
|
||||
txtPassConfirm.Properties.PasswordChar = '*';
|
||||
|
||||
BindUserSelectionEvents();
|
||||
InitializeUsers();
|
||||
UpdateConfirmButtonState();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(message, ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 绑定人员选择事件,兼容鼠标选择和键盘回车选择。
|
||||
/// </summary>
|
||||
private void BindUserSelectionEvents()
|
||||
{
|
||||
lueUserName.TextChanged -= OnUserSelectionChanged;
|
||||
lueUserName.TextChanged += OnUserSelectionChanged;
|
||||
lueUserName.Popup.OnGridViewMouseClick -= OnUserSelectionChanged;
|
||||
lueUserName.Popup.OnGridViewMouseClick += OnUserSelectionChanged;
|
||||
lueUserName.Popup.OnGridViewEnter -= OnUserSelectionEnter;
|
||||
lueUserName.Popup.OnGridViewEnter += OnUserSelectionEnter;
|
||||
}
|
||||
|
||||
private void OnUserSelectionChanged(object sender, EventArgs e)
|
||||
{
|
||||
UpdateConfirmButtonState();
|
||||
}
|
||||
|
||||
private void OnUserSelectionEnter(object sender, KeyEventArgs e)
|
||||
{
|
||||
if (e.KeyCode == Keys.Enter)
|
||||
{
|
||||
UpdateConfirmButtonState();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 管理员不能在本模块中修改自己的密码。
|
||||
/// </summary>
|
||||
private void UpdateConfirmButtonState()
|
||||
{
|
||||
bool isAdministrator = string.Equals(
|
||||
ERPInfo.Instance.UserName,
|
||||
"管理员",
|
||||
StringComparison.OrdinalIgnoreCase);
|
||||
string personnelId = lueUserName.EditValue == null
|
||||
? string.Empty
|
||||
: lueUserName.EditValue.Trim();
|
||||
bool isCurrentUser = !string.IsNullOrWhiteSpace(personnelId)
|
||||
&& string.Equals(personnelId, ERPInfo.Instance.UserId, StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
btnOK.Enabled = isAdministrator && !isCurrentUser;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 初始化可修改密码的人员列表。
|
||||
/// </summary>
|
||||
private void InitializeUsers()
|
||||
{
|
||||
string displayName = "UserName";
|
||||
string additionalFields = string.Empty;
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(SystemInfo.Instance.LoginUsername)
|
||||
&& BaseImpl.HasExistsColumn("P_EmployeeTab", SystemInfo.Instance.LoginUsername))
|
||||
{
|
||||
displayName = SystemInfo.Instance.LoginUsername;
|
||||
additionalFields = " ," + displayName;
|
||||
}
|
||||
|
||||
lueUserName.ValueField = lueUserName.ValueMember = "UserId";
|
||||
lueUserName.TextMember = displayName;
|
||||
lueUserName.SourceSQL = string.Format(
|
||||
"select EmployeeId UserId,LoginAccount UserCode,EmployeeName UserName {0} "
|
||||
+ "from P_EmployeeTab where sign=0 and UseFlag=1",
|
||||
additionalFields);
|
||||
|
||||
DataTable userTable;
|
||||
//if (SystemInfo.Instance.DisplayUserCode)
|
||||
//{
|
||||
// lueUserName.SourceSQL = string.Format(
|
||||
// "select EmployeeId UserId,LoginAccount UserCode,EmployeeName UserName,LoginAccount 工号 {0} "
|
||||
// + "from P_EmployeeTab where sign=0 and UseFlag=1",
|
||||
// additionalFields);
|
||||
// userTable = MainImpl.GetEmployeeListNew();
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
// userTable = MainImpl.GetEmployeeList();
|
||||
//}
|
||||
userTable = MainImpl.GetEmployeeList();
|
||||
lueUserName.DataSource = userTable;
|
||||
lueUserName.Properties.NullValuePrompt = "请选择人员";
|
||||
|
||||
string personnelId = Model == null ? string.Empty : Model.PersonnelID;
|
||||
if (string.IsNullOrWhiteSpace(personnelId))
|
||||
{
|
||||
lueUserName.Focus();
|
||||
return;
|
||||
}
|
||||
|
||||
DataRow userRow = userTable.Rows.Cast<DataRow>().FirstOrDefault(
|
||||
row => string.Equals(row["UserId"] + string.Empty, personnelId, StringComparison.OrdinalIgnoreCase));
|
||||
|
||||
if (userRow == null)
|
||||
{
|
||||
lueUserName.Properties.ReadOnly = true;
|
||||
MessageUtil.Show("未找到指定人员,无法修改密码!", "提示");
|
||||
return;
|
||||
}
|
||||
|
||||
lueUserName.EditValue = userRow["UserId"] + string.Empty;
|
||||
lueUserName.Properties.ReadOnly = true;
|
||||
txtNewPass.Focus();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 确定按钮点击事件。
|
||||
/// </summary>
|
||||
private void btnOK_Click(object sender, EventArgs e)
|
||||
{
|
||||
string personnelId = lueUserName.EditValue == null
|
||||
? string.Empty
|
||||
: lueUserName.EditValue.Trim();
|
||||
string newPassword = txtNewPass.Text.Trim();
|
||||
string confirmPassword = txtPassConfirm.Text.Trim();
|
||||
|
||||
if (string.IsNullOrWhiteSpace(personnelId))
|
||||
{
|
||||
MessageUtil.Show("请选择需要修改密码的人员!", "提示");
|
||||
lueUserName.Focus();
|
||||
return;
|
||||
}
|
||||
if (string.Equals(personnelId, ERPInfo.Instance.UserId, StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
btnOK.Enabled = false;
|
||||
MessageUtil.Show("管理员不能在此模块中修改自己的密码!", "提示");
|
||||
return;
|
||||
}
|
||||
if (string.IsNullOrWhiteSpace(newPassword))
|
||||
{
|
||||
MessageUtil.Show("新密码不能为空!");
|
||||
txtNewPass.Focus();
|
||||
return;
|
||||
}
|
||||
if (string.IsNullOrWhiteSpace(confirmPassword))
|
||||
{
|
||||
MessageUtil.Show("确认密码不能为空!");
|
||||
txtPassConfirm.Focus();
|
||||
return;
|
||||
}
|
||||
if (!newPassword.Equals(confirmPassword))
|
||||
{
|
||||
MessageUtil.Show("两次输入的密码不一致!");
|
||||
txtPassConfirm.Focus();
|
||||
return;
|
||||
}
|
||||
if (SystemInfo.Instance.VerfyPasswordStrength && !PasswordRegex.IsMatch(confirmPassword))
|
||||
{
|
||||
MessageUtil.Show("密码不符合要求!");
|
||||
txtNewPass.Focus();
|
||||
return;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
btnOK.Enabled = false;
|
||||
|
||||
string tipMessage;
|
||||
int result;
|
||||
bool useChangePasswordProcedure = BaseImpl.HasExistsStoredProcedure("pr_sytemchangepsw");
|
||||
|
||||
if (useChangePasswordProcedure)
|
||||
{
|
||||
result = MainImpl.ChangePassword(personnelId, newPassword, out tipMessage);
|
||||
}
|
||||
else
|
||||
{
|
||||
result = MainImpl.ForceUpdatePassword(personnelId, newPassword);
|
||||
tipMessage = result == 0 ? "用户不存在" : string.Empty;
|
||||
}
|
||||
|
||||
if (result != 1)
|
||||
{
|
||||
MessageUtil.Show("修改失败:" + tipMessage);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!useChangePasswordProcedure && SystemInfo.Instance.UpdPwdAllSystem)
|
||||
{
|
||||
if (MainImpl.UpdatePasswordAllSubsystem(personnelId, newPassword))
|
||||
{
|
||||
MessageUtil.Show("用户对应账套密码修改成功");
|
||||
}
|
||||
else
|
||||
{
|
||||
MessageUtil.Show("当前账套密码修改成功,但用户对应账套密码修改失败");
|
||||
}
|
||||
}
|
||||
|
||||
MainImpl.RecordPassword(newPassword,"修改密码,"+ ERPInfo.Instance.UserName + "修改"+ lueUserName.Text);
|
||||
MessageUtil.Show("密码修改成功!");
|
||||
if (Model.AfterClose.Equals("1"))
|
||||
{
|
||||
DialogResult = DialogResult.OK;
|
||||
Close();
|
||||
}
|
||||
else
|
||||
{
|
||||
txtNewPass.Text = string.Empty;
|
||||
txtPassConfirm.Text = string.Empty;
|
||||
}
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show("修改密码出错!" + message);
|
||||
}
|
||||
finally
|
||||
{
|
||||
if (!IsDisposed)
|
||||
{
|
||||
UpdateConfirmButtonState();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 取消按钮点击事件。
|
||||
/// </summary>
|
||||
private void btnCancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
DialogResult = DialogResult.Cancel;
|
||||
Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
@@ -0,0 +1,112 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{91470E21-B8FB-4A16-967A-912F9E4807E1}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Lskj.PubUpdatePwd</RootNamespace>
|
||||
<AssemblyName>Lskj.PubUpdatePwd</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\Debug\Lib\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject />
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="DevExpress.Data.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.Printing.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.Utils.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraEditors.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraGrid.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraLayout.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="DevExpress.XtraPrinting.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="DllBaseClass.cs" />
|
||||
<Compile Include="FrmMain.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="FrmMain.Designer.cs">
|
||||
<DependentUpon>FrmMain.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<EmbeddedResource Include="FrmMain.resx">
|
||||
<DependentUpon>FrmMain.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\licenses.licx" />
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
<DesignTime>True</DesignTime>
|
||||
</Compile>
|
||||
<None Include="Properties\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||
</None>
|
||||
<Compile Include="Properties\Settings.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Lskj.Business\Lskj.Business.csproj">
|
||||
<Project>{7eafccc2-a18f-49e9-85c6-a984966cfd01}</Project>
|
||||
<Name>Lskj.Business</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Control\Lskj.Control.csproj">
|
||||
<Project>{447CDC40-659F-4CCA-9ED6-8E818B4CF8BF}</Project>
|
||||
<Name>Lskj.Control</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Core\Lskj.Core.csproj">
|
||||
<Project>{2A1BE6AC-1077-491B-A754-C5822FE8121E}</Project>
|
||||
<Name>Lskj.Core</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Model\Lskj.Model.csproj">
|
||||
<Project>{52BC40E0-C0C6-4F78-996B-CAE028D209CA}</Project>
|
||||
<Name>Lskj.Model</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lskj.Util\Lskj.Util.csproj">
|
||||
<Project>{A51BF642-6543-4DE3-8948-83F558B72BD4}</Project>
|
||||
<Name>Lskj.Util</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.PubTabDll
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// 应用程序的主入口点。
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new FrmMain());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// 有关程序集的一般信息由以下
|
||||
// 控制。更改这些特性值可修改
|
||||
// 与程序集关联的信息。
|
||||
[assembly: AssemblyTitle("Lskj.PubUpdatePwd")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lskj.PubUpdatePwd")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2025")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// 将 ComVisible 设置为 false 会使此程序集中的类型
|
||||
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
|
||||
//请将此类型的 ComVisible 特性设置为 true。
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
|
||||
[assembly: Guid("aeb20c62-d8de-4adc-85c7-4bcf3d6aa950")]
|
||||
|
||||
// 程序集的版本信息由下列四个值组成:
|
||||
//
|
||||
// 主版本
|
||||
// 次版本
|
||||
// 生成号
|
||||
// 修订号
|
||||
//
|
||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
||||
//通过使用 "*",如下所示:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
@@ -0,0 +1,63 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Lskj.PubUpdatePwd.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 一个强类型的资源类,用于查找本地化的字符串等。
|
||||
/// </summary>
|
||||
// 此类是由 StronglyTypedResourceBuilder
|
||||
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
|
||||
// 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
|
||||
// (以 /str 作为命令选项),或重新生成 VS 项目。
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources {
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources() {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 返回此类使用的缓存的 ResourceManager 实例。
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Lskj.PubUpdatePwd.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 重写当前线程的 CurrentUICulture 属性,对
|
||||
/// 使用此强类型资源类的所有资源查找执行重写。
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture {
|
||||
get {
|
||||
return resourceCulture;
|
||||
}
|
||||
set {
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
<?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.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: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" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</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" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</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=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
@@ -0,0 +1,26 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Lskj.PubUpdatePwd.Properties {
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default {
|
||||
get {
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
||||
@@ -0,0 +1,3 @@
|
||||
DevExpress.XtraEditors.ComboBoxEdit, DevExpress.XtraEditors.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
DevExpress.XtraEditors.TextEdit, DevExpress.XtraEditors.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
DevExpress.XtraEditors.CheckEdit, DevExpress.XtraEditors.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||
+5
-1
@@ -849,6 +849,7 @@
|
||||
//
|
||||
this.name_lde.BackColor = System.Drawing.Color.Transparent;
|
||||
this.name_lde.BackgroundColor = System.Drawing.Color.Empty;
|
||||
this.name_lde.ContentBold = false;
|
||||
this.name_lde.EditText = "";
|
||||
this.name_lde.FontSize = 0F;
|
||||
this.name_lde.LabelText = "姓名";
|
||||
@@ -866,6 +867,7 @@
|
||||
//
|
||||
this.end_lde.BackColor = System.Drawing.Color.Transparent;
|
||||
this.end_lde.BackgroundColor = System.Drawing.Color.Empty;
|
||||
this.end_lde.ContentBold = false;
|
||||
this.end_lde.EditText = "";
|
||||
this.end_lde.FontSize = 0F;
|
||||
this.end_lde.LabelText = "结束时间";
|
||||
@@ -883,6 +885,7 @@
|
||||
//
|
||||
this.start_lde.BackColor = System.Drawing.Color.Transparent;
|
||||
this.start_lde.BackgroundColor = System.Drawing.Color.Empty;
|
||||
this.start_lde.ContentBold = false;
|
||||
this.start_lde.EditText = "";
|
||||
this.start_lde.FontSize = 0F;
|
||||
this.start_lde.LabelText = "开始时间";
|
||||
@@ -1036,6 +1039,7 @@
|
||||
this.searchModuleLab.BackColor = System.Drawing.Color.Transparent;
|
||||
this.searchModuleLab.BackgroundColor = System.Drawing.Color.Empty;
|
||||
this.searchModuleLab.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.searchModuleLab.ContentBold = false;
|
||||
this.searchModuleLab.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.searchModuleLab.EditText = "";
|
||||
this.searchModuleLab.FontSize = 0F;
|
||||
@@ -1105,7 +1109,7 @@
|
||||
this.Appearance.Options.UseBackColor = true;
|
||||
this.Appearance.Options.UseFont = true;
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.ClientSize = new System.Drawing.Size(1284, 641);
|
||||
this.ClientSize = new System.Drawing.Size(1605, 801);
|
||||
this.Controls.Add(this.splitContainerControl1);
|
||||
this.Name = "FrmMain";
|
||||
this.Text = "权限设置器";
|
||||
|
||||
Reference in New Issue
Block a user