SVN r287
SVN-Revision: r287
This commit is contained in:
@@ -129,7 +129,7 @@ namespace Lskj.Workflow.Control
|
||||
DataTable editTable = table.Select("visible=0 and edited=0").CopyToDataTable();
|
||||
editTable.DefaultView.Sort = "ControlTop,ControlLeft";
|
||||
editTable = editTable.DefaultView.ToTable();
|
||||
|
||||
this.xtraScrollableControl1.Controls.Clear();
|
||||
for (int i = 0; i < editTable.Rows.Count; i++)
|
||||
{
|
||||
DataRow rowItem = editTable.Rows[i];
|
||||
@@ -176,7 +176,7 @@ namespace Lskj.Workflow.Control
|
||||
|
||||
DataTable table = BillImpl.GetDetailColumns(mMenuCode);
|
||||
DataTable editTable = table.Select("isVisible=False and edit=0").CopyToDataTable();
|
||||
|
||||
this.xtraScrollableControl2.Controls.Clear();
|
||||
for (int i = 0; i < editTable.Rows.Count; i++)
|
||||
{
|
||||
DataRow rowItem = editTable.Rows[i];
|
||||
@@ -279,8 +279,8 @@ namespace Lskj.Workflow.Control
|
||||
this.mBillModel = new BillModel(BillImpl.GetBillInfo(mMenuCode));
|
||||
|
||||
this.InitializeStepFlow();
|
||||
this.InitializeMainField();
|
||||
this.InitializeDetailField();
|
||||
//this.InitializeMainField();
|
||||
//this.InitializeDetailField();
|
||||
}
|
||||
/// <summary>
|
||||
/// <para>说明:添加流转类别</para>
|
||||
@@ -536,31 +536,4 @@ namespace Lskj.Workflow.Control
|
||||
/// <para>说明:点击流转步骤加载数据</para>
|
||||
/// <para>创建人:龚宇超</para>
|
||||
/// <para>创建日期:2019-06-21 </para>
|
||||
/// <para>修改人:</para>
|
||||
/// <para>修改日期:</para>
|
||||
/// <para>修改备注:</para>
|
||||
/// <para>版本:1.0</para>
|
||||
/// </summary>
|
||||
/// <param name="sender">The sender.</param>
|
||||
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
||||
/// <exception cref="System.NotImplementedException"></exception>
|
||||
void OnTitleLabelObjClick(StepItem1 before, StepItem1 after)
|
||||
{
|
||||
try
|
||||
{
|
||||
BillflowModel model = after.Tag as BillflowModel;
|
||||
|
||||
this.SeletStepItem1Obj = after;
|
||||
this.SetFlowItem(model);
|
||||
this.SetMainFieldCheckState(model);
|
||||
this.SetDetailFieldCheckState(model);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message,ex.Message);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
/// <para
|
||||
Reference in New Issue
Block a user