SVN-Revision: r574
This commit is contained in:
cyf
2025-05-12 10:05:14 +00:00
parent 9fdd099b60
commit df771ebf88
+6 -1
View File
@@ -354,6 +354,10 @@ namespace Lskj.Model
/// 单据保存前执行的右键id
/// </summary>
public string BeforeBillSaveExec;
/// <summary>
/// 取消拖拽时的提示(是否确认拖拽)
/// </summary>
public bool DisableDragPrompt;
/// <summary>
@@ -424,4 +428,5 @@ namespace Lskj.Model
this.IsBrp = columns.Contains("IsBrp") && !string.IsNullOrEmpty(rowItem["IsBrp"] + "") ? "1".Equals(rowItem["IsBrp"] + "") : 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
this.SelectLast = columns.Contains("SelectLast") && !string.IsNullOrEmpty(rowItem["SelectLast"] + "") ? "1".Equals(rowItem["SelectLast"] + "") : false;