提交当前本机整理版本
This commit is contained in:
@@ -761,4 +761,33 @@ namespace Lskj.Business.Impl
|
||||
new SqlParameter("@stepcode",SqlDbType.Int),
|
||||
new SqlParameter("@operatorid",SqlDbType.Int),
|
||||
pMsg,
|
||||
|
||||
returnValue
|
||||
};
|
||||
//param[0].Value = model.typeCode;
|
||||
//param[1].Value = model.stepCode;
|
||||
//param[2].Value = ERPInfo.Instance.UserId;
|
||||
param[0].Value = mMenuCode;
|
||||
param[1].Value = 0;
|
||||
param[2].Value = ERPInfo.Instance.UserId;
|
||||
|
||||
DataSet ds = SqlHelper.ExecuteDataSet(CommandType.StoredProcedure, "p_systemCreateendFlowSQL", "FlowSQL", param);
|
||||
retuenMsg = pMsg.Value.ToString();
|
||||
int result = Convert.ToInt32(returnValue.Value + "");
|
||||
|
||||
return result;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 删除方案步骤
|
||||
/// </summary>
|
||||
/// <param name="model"></param>
|
||||
/// <returns></returns>
|
||||
public static bool DeleteSchemeSteps(BaseflowTypeStepModel model)
|
||||
{
|
||||
string sqlValue = string.Format(@"delete p_systemdlltabflowtypestep where id='{0}'", model.id);
|
||||
return ExecSqlValue(sqlValue) > 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user