SVN-Revision: r830
This commit is contained in:
tdx
2025-07-03 07:29:27 +00:00
parent 100b3d14a2
commit 61fe1a667b
+6
View File
@@ -56,6 +56,11 @@ namespace Lskj.Model
/// <value><c>true</c> if [save state]; otherwise, <c>false</c>.</value>
public bool SaveState { get; set; }
/// <summary>
/// 单据拖拽是否判断新增
/// </summary>
/// <value><c>true</c> if [save state]; otherwise, <c>false</c>.</value>
public bool isWorkLogin { get; set; }
/// <summary>
/// 操作区域宽度
/// </summary>
/// <value>The width of the panel.</value>
@@ -462,6 +467,7 @@ namespace Lskj.Model
this.IsFastDragAddDetail = columns.Contains("IsFastDragAddDetail") && !string.IsNullOrEmpty(rowItem["IsFastDragAddDetail"] + "") ? "1".Equals(rowItem["IsFastDragAddDetail"] + "") : false;
this.DraggingOrder = columns.Contains("DraggingOrder") && !string.IsNullOrEmpty(rowItem["DraggingOrder"] + "") ? "1".Equals(rowItem["DraggingOrder"] + "") : false;
this.IsBrp = columns.Contains("IsBrp") && !string.IsNullOrEmpty(rowItem["IsBrp"] + "") ? "1".Equals(rowItem["IsBrp"] + "") : false;
this.isWorkLogin = columns.Contains("isWorkLogin") && !string.IsNullOrEmpty(rowItem["isWorkLogin"] + "") ? "1".Equals(rowItem["isWorkLogin"] + "") : false;
this.DetailTreeTable = columns.Contains("DetailTreeTable") && !string.IsNullOrEmpty(rowItem["DetailTreeTable"] + "") ? "1".Equals(rowItem["DetailTreeTable"] + "") : false;
this.DetailTreeTableExpansion = columns.Contains("DetailTreeTableExpansion") && !string.IsNullOrEmpty(rowItem["DetailTreeTableExpansion"] + "") ? rowItem["DetailTreeTableExpansion"] + "" : "1";
this.SelectLast = columns.Contains("SelectLast") && !string.IsNullOrEmpty(rowItem["SelectLast"] + "") ? "1".Equals(rowItem["SelectLast"] + "") : false;