SVN r923
SVN-Revision: r923
This commit is contained in:
@@ -70,7 +70,7 @@ namespace Lskj.Business
|
||||
/// <returns>DataTable.</returns>
|
||||
public static DataTable GetBillFlowData(string menuCode)
|
||||
{
|
||||
string sqlValue = string.Format("select * from p_systembillflow where typeCode='{0}'", menuCode);
|
||||
string sqlValue = string.Format("select * from p_systembillflow where typeCode='{0}' ORDER BY stepCode", menuCode);
|
||||
return GetDataTableResult(sqlValue);
|
||||
}
|
||||
/// <summary>
|
||||
@@ -557,4 +557,14 @@ namespace Lskj.Business
|
||||
(dr["controlLeft"] + "").Replace("'", "''"), (dr["controlTop"] + "").Replace("'", "''"), (dr["controlHeight"] + "").Replace("'", "''"), (dr["controlWidth"] + "").Replace("'", "''"), (dr["checkCond"] + "").Replace("'", "''"), (dr["ShowMobile"] + "").Replace("'", "''"), (dr["id"] + "").Replace("'", "''")
|
||||
);
|
||||
sqlValue = sqlValue + string.Format(@"update p_systemControlLocation set fieldname='{0}',username='{1}',fieldtypeid='{2}', defaultvalue='{3}' where formkey='{4}' and fieldid='{5}'",
|
||||
(dr["controlName"] + "").Replace("'", "''"), (dr["controlLabel"] + "").Replace("'", "''"), (dr["controlType"] + "").Replace("'", "''"), (dr["defaultValue"] + "")
|
||||
(dr["controlName"] + "").Replace("'", "''"), (dr["controlLabel"] + "").Replace("'", "''"), (dr["controlType"] + "").Replace("'", "''"), (dr["defaultValue"] + "").Replace("'", "''"), (dr["formkey"] + "").Replace("'", "''"), (dr["id"] + "").Replace("'", "''"));
|
||||
}
|
||||
|
||||
return ExecSqlValue(sqlValue) > 0;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <para>说明:保存终审条件信息</para>
|
||||
/// <para>创建人:曹屹峰</para>
|
||||
/// <para>创建日期:2022-06-7 </para>
|
||||
/// <para>修改人:</para
|
||||
Reference in New Issue
Block a user