SVN r1139
SVN-Revision: r1139
This commit is contained in:
@@ -64,12 +64,12 @@ namespace Lskj.Model
|
||||
/// 操作区域宽度
|
||||
/// </summary>
|
||||
/// <value>The width of the panel.</value>
|
||||
public int PanelWidth { get; private set; }
|
||||
public int PanelWidth { get; set; }
|
||||
/// <summary>
|
||||
/// 操作区域高度
|
||||
/// </summary>
|
||||
/// <value>The height of the panel.</value>
|
||||
public int PanelHeight { get; private set; }
|
||||
public int PanelHeight { get; set; }
|
||||
/// <summary>
|
||||
/// Gets the height of the parent.
|
||||
/// </summary>
|
||||
@@ -427,6 +427,10 @@ namespace Lskj.Model
|
||||
///取消复制表头后的触发关联(默认触发,设置为1不触发)
|
||||
/// </summary>
|
||||
public bool CancelCopyAssociation;
|
||||
/// <summary>
|
||||
///打印按钮交互条件
|
||||
/// </summary>
|
||||
public string PrintingConditions;
|
||||
|
||||
|
||||
|
||||
@@ -516,4 +520,5 @@ namespace Lskj.Model
|
||||
this.RightModuleCode = rowItem.Table.Columns.Contains("RightModuleCode") ? rowItem["RightModuleCode"] + "" : "";
|
||||
this.RefreshSelectedDetail = rowItem.Table.Columns.Contains("RefreshSelectedDetail") ? "1".Equals(rowItem["RefreshSelectedDetail"] + "") : false;
|
||||
this.InitialRefreshId = rowItem.Table.Columns.Contains("InitialRefreshId") ? rowItem["InitialRefreshId"] + "" : "";
|
||||
this.IgnoreAllocated = rowItem.Table.Columns.Contain
|
||||
this.IgnoreAllocated = rowItem.Table.Columns.Contains("IgnoreAllocated") ? "1".Equals(rowItem["IgnoreAllocated"] + "") : false;
|
||||
this.BillSourceControlName = rowItem.Table.Col
|
||||
Reference in New Issue
Block a user