SVN-Revision: r966
This commit is contained in:
cyf
2025-09-05 08:13:50 +00:00
parent 4094450dcf
commit 9d437b99c0
3 changed files with 7 additions and 4 deletions
@@ -102,9 +102,9 @@ namespace Lskj.Business.Impl
SqlParameter msg = ERPInfo.Instance.ChangeParameterType ? new SqlParameter("@msg", SqlDbType.NVarChar, 6000) : new SqlParameter("@msg", SqlDbType.VarChar, 3000);
msg.Direction = ParameterDirection.Output;
SqlParameter NextSelectStepCode = new SqlParameter("@nextSelectStepCode", SqlDbType.VarChar, 3000);
msg.Direction = ParameterDirection.Output;
NextSelectStepCode.Direction = ParameterDirection.Output;
SqlParameter NextSelectStepOper = new SqlParameter("@nextSelectStepOper", SqlDbType.VarChar, 3000);
msg.Direction = ParameterDirection.Output;
NextSelectStepOper.Direction = ParameterDirection.Output;
List<SqlParameter> list = new List<SqlParameter>
{
new SqlParameter("@typeCode",SqlDbType.VarChar,10),
@@ -130,6 +130,7 @@ namespace Lskj.Business.Impl
}
if (ret) list.Add(new SqlParameter("@backStepCode", SqlDbType.Int, 4));
SqlParameter[] param = list.ToArray();
param[0].Value = sysModel.ModuleCode;
param[1].Value = string.IsNullOrEmpty(stepCode) ? 0 : Convert.ToInt32(stepCode);