SVN r1138
SVN-Revision: r1138
This commit is contained in:
@@ -53,6 +53,7 @@ namespace Lskj.Control.Model
|
||||
private string _dllParam10;
|
||||
private string _dllParam11;
|
||||
private string _dllParam12;
|
||||
private string _dllParam13;
|
||||
private bool _isCopy;
|
||||
private bool _isModal;
|
||||
private bool _forbiddenDisplay;
|
||||
@@ -242,6 +243,11 @@ namespace Lskj.Control.Model
|
||||
/// <value>The DLL param12.</value>
|
||||
public string DllParam12 { get { return _dllParam12; } }
|
||||
/// <summary>
|
||||
/// Gets the DLL param13.
|
||||
/// </summary>
|
||||
/// <value>The DLL param13.</value>
|
||||
public string DllParam13 { get { return _dllParam13; } }
|
||||
/// <summary>
|
||||
/// 在mes中,是否直接执行
|
||||
/// </summary>
|
||||
public bool isStartRun;
|
||||
@@ -332,6 +338,10 @@ namespace Lskj.Control.Model
|
||||
/// </summary>
|
||||
/// <value>The menu cond.</value>
|
||||
public string ClickCond;
|
||||
/// <summary>
|
||||
/// 右键验证是否有修改后的数据
|
||||
/// </summary>
|
||||
public bool VerifyUpdate;
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -359,7 +369,7 @@ namespace Lskj.Control.Model
|
||||
{
|
||||
_dllParam1, _dllParam2, _dllParam3, _dllParam4, _dllParam5,
|
||||
_dllParam6, _dllParam7, _dllParam8, _dllParam9, _dllParam10,
|
||||
_dllParam11,_dllParam12
|
||||
_dllParam11,_dllParam12,_dllParam13
|
||||
}.ToList();
|
||||
}
|
||||
else
|
||||
@@ -408,6 +418,7 @@ namespace Lskj.Control.Model
|
||||
this._dllParam10 = item["dllpar10"] + "";
|
||||
this._dllParam11 = item.Table.Columns.Contains("dllpar11") ? item["dllpar11"] + "" : "";
|
||||
this._dllParam12 = item.Table.Columns.Contains("dllpar12") ? item["dllpar12"] + "" : "";
|
||||
this._dllParam13 = item.Table.Columns.Contains("dllpar13") ? item["dllpar13"] + "" : "";
|
||||
this._menuCond = item["menuCond"] + "";
|
||||
this._refreshCheckState = item.Table.Columns.Contains("refreshCheckState") && !string.IsNullOrEmpty(item["refreshCheckState"] + "") ? "1".Equals(item["refreshCheckState"] + "") : false;
|
||||
|
||||
@@ -458,4 +469,6 @@ namespace Lskj.Control.Model
|
||||
this.DuringExecutionMinimize = string.IsNullOrWhiteSpace(item["DuringExecutionMinimize"] + "") ? false : "1".Equals(item["DuringExecutionMinimize"] + "");
|
||||
if (item.Table.Columns.Contains("SqlDirectExecution"))
|
||||
this.SqlDirectExecution = string.IsNullOrWhiteSpace(item["SqlDirectExecution"] + "") ? false : "1".Equals(item["SqlDirectExecution"] + "");
|
||||
if (item
|
||||
if (item.Table.Columns.Contains("UnionZTid"))
|
||||
this.UnionZTid = string.IsNullOrWhiteSpace(item["UnionZTid"] + "") ? "" : item["UnionZTid"] + "";
|
||||
if (item.Table.Columns.Contains("Di
|
||||
Reference in New Issue
Block a user