提交当前本机整理版本
This commit is contained in:
@@ -475,4 +475,32 @@ namespace Lskj.Workflow
|
||||
private void btnInsert_Click(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
|
||||
{
|
||||
switch (mCurrentStepPage)
|
||||
{
|
||||
case StepEnum.StepPage1:
|
||||
{
|
||||
// 保存流转步骤
|
||||
FrmAddStep frmAddStep = new FrmAddStep();
|
||||
frmAddStep.LabelObj.Text = "请输入审批步骤:";
|
||||
|
||||
if (frmAddStep.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
string stepName = frmAddStep.StepName;
|
||||
string stepGroup = frmAddStep.StepName;
|
||||
|
||||
this.stepPage11.InsertFlowItem(stepGroup, stepGroup);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string Message = ErrorMessage.PromptErrorMessage(ex);
|
||||
MessageUtil.Show(Message, ex.Message);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user