SVN r1038
SVN-Revision: r1038
This commit is contained in:
@@ -78,7 +78,7 @@ namespace Lskj.Model
|
||||
/// 进度编号
|
||||
/// </summary>
|
||||
public string StepCode;
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// 表格必填列
|
||||
/// </summary>
|
||||
public string RequiredFields;
|
||||
@@ -90,6 +90,10 @@ namespace Lskj.Model
|
||||
/// 流转意见
|
||||
/// </summary>
|
||||
public string StepApplyContent;
|
||||
/// <summary>
|
||||
/// Formkey
|
||||
/// </summary>
|
||||
public string Formkey;
|
||||
|
||||
/// <summary>
|
||||
/// 基础档案审批弹出窗口配置对象
|
||||
@@ -104,18 +108,5 @@ namespace Lskj.Model
|
||||
this.StepApplyText = string.IsNullOrEmpty(dr["stepApplyText"] + "") ? "审核" : dr["stepApplyText"] + "";
|
||||
this.StepBackText = string.IsNullOrEmpty(dr["stepBackText"] + "") ? "回退" : dr["stepBackText"] + "";
|
||||
this.StepCode = dr["stepCode"] + "";
|
||||
this.StepDivide = dr.Table.Columns.Contains("stepDivide") ? Convert.ToInt32(string.IsNullOrEmpty(dr["stepDivide"]+"")?"0":dr["stepDivide"]+"") : 0;
|
||||
this.StepCloseText = columns.Contains("stepCloseText") && string.IsNullOrEmpty(dr["stepCloseText"] + "") ? "关闭" : dr["stepCloseText"] + "";
|
||||
this.StepCloseTip = columns.Contains("stepCloseTip") ? dr["stepCloseTip"] + "" : "";
|
||||
this.StepSql = columns.Contains("stepSql") ? dr["stepSql"] + "" : "";
|
||||
this.BillModifyFields = dr["billModifyFields"] + "";
|
||||
this.SuggestionSql = "select Mix_apellation from P_BaseMixInfoTab a where a.Tag ='1201'";
|
||||
this.FlowOperSql = "select object_id('p_baseflowoperex')";
|
||||
this.DetailModifyFields = dr["detailModifyFields"] + "";
|
||||
this.RequiredFields = columns.Contains("requiredFields") ? dr["requiredFields"] + "" : string.Empty;
|
||||
this.RequiredDetailFields = columns.Contains("requiredDetailFields") ? dr["requiredDetailFields"] + "" : string.Empty;
|
||||
this.StepApplyContent = columns.Contains("StepApplyContent") ? dr["StepApplyContent"] + "" : string.Empty;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
this.StepDivide = dr.Table.Columns.Contains("stepDivide") ? Convert.ToInt32(string.IsNullOrEmpty(dr["stepDivide"] + "") ? "0" : dr["stepDivide"] + "") : 0;
|
||||
this.StepCloseText = columns.Contains("stepCloseText") && string.IsNullOrEmpty(dr["stepCloseTex
|
||||
Reference in New Issue
Block a user