SVN r1106
SVN-Revision: r1106
This commit is contained in:
@@ -105,7 +105,7 @@ namespace Lskj.Model
|
||||
get { return _preSQL; }
|
||||
}
|
||||
/// <summary>
|
||||
/// 多表头显示模式
|
||||
///模块编号
|
||||
/// </summary>
|
||||
/// <value>The menu dir identifier.</value>
|
||||
public string ModeCode
|
||||
@@ -539,7 +539,7 @@ namespace Lskj.Model
|
||||
public string RefreshSql;
|
||||
|
||||
/// <summary>
|
||||
/// 拖拽调用到的存储过程名
|
||||
/// 拖拽调用到的左侧列名
|
||||
/// </summary>
|
||||
/// <value>The menu table.</value>
|
||||
public string leftprimFile;
|
||||
@@ -1007,7 +1007,30 @@ namespace Lskj.Model
|
||||
///点击回车键,焦点单元格向下移动
|
||||
/// </summary>
|
||||
public bool EnterToNextRow;
|
||||
|
||||
/// <summary>
|
||||
/// 聚合界面是否冻结基本信息列(默认冻结,设置为1不冻结)
|
||||
/// </summary>
|
||||
public bool AggregationFreeze;
|
||||
/// <summary>
|
||||
/// 点击末级节点刷新数据(智能建档模块)
|
||||
/// </summary>
|
||||
public bool LeafNodeRefresh;
|
||||
/// <summary>
|
||||
/// 是否可以拖拽到左侧(PubModelAdd3)
|
||||
/// </summary>
|
||||
public bool DragToLeft;
|
||||
/// <summary>
|
||||
/// 右侧不默认拼接左侧条件(ProductiSched)
|
||||
/// </summary>
|
||||
public bool CancelDefaultConditions;
|
||||
/// <summary>
|
||||
///导入时触发关联计算(模块控制)
|
||||
/// </summary>
|
||||
public bool AutoImportCalMode;
|
||||
/// <summary>
|
||||
///是否关联左侧模块(只对排产模块生效)
|
||||
/// </summary>
|
||||
public bool AssociateLeft;
|
||||
|
||||
#endregion
|
||||
/// <summary>
|
||||
@@ -1182,4 +1205,10 @@ namespace Lskj.Model
|
||||
this.leftprimFile = rowItem.Table.Columns.Contains("leftprimFile") ? rowItem["leftprimFile"] + "" : "";
|
||||
this.TreeKeyFieldName = rowItem.Table.Columns.Contains("TreeKeyFieldName") ? rowItem["TreeKeyFieldName"] + "" : "";
|
||||
this.TreeParentFieldName = rowItem.Table.Columns.Contains("TreeParentFieldName") ? rowItem["TreeParentFieldName"] + "" : "";
|
||||
this.HideAttachBtn = rowItem.Table.Columns.Contains("HideAttachBt
|
||||
this.HideAttachBtn = rowItem.Table.Columns.Contains("HideAttachBtn") ? "1".Equals(rowItem["HideAttachBtn"] + "") : false;
|
||||
this.IgnoreTab = rowItem.Table.Columns.Contains("IgnoreTab") ? "1".Equals(rowItem["IgnoreTab"] + "") : false;
|
||||
this.LeftTreeKeyFieldName = rowItem.Table.Columns.Contains("LeftTreeKeyFieldName") ? rowItem["LeftTreeKeyFieldName"] + "" : "";
|
||||
this.DefaultClickLeft = rowItem.Table.Columns.Contains("DefaultClickLeft") ? "1".Equals(rowItem["DefaultClickLeft"] + "") : false;
|
||||
this.DetaiTabControl = rowItem.Table.Columns.Contains("DetaiTabControl") ? rowItem["DetaiTabControl"] + "" : "";
|
||||
this.AttachmentSelectNode = rowItem.Table.Columns.Contains("AttachmentSelectNode") ? "1".Equals(rowItem["AttachmentSelectNode"] + "") : false;
|
||||
this.SweepCodeSql = rowItem.Table.Columns.Contains("SweepCodeSql") ? rowItem["SweepCodeSql"] + "" : "
|
||||
Reference in New Issue
Block a user