SVN r966
SVN-Revision: r966
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user