|
@@ -7621,6 +7621,8 @@ namespace Dongke.IBOSS.PRD.Service.PDAModuleLogic
|
|
|
" ,rreason\n" +
|
|
" ,rreason\n" +
|
|
|
" ,remarks\n" +
|
|
" ,remarks\n" +
|
|
|
" ,auditstatus\n" +
|
|
" ,auditstatus\n" +
|
|
|
|
|
+ " ,auditor\n" +
|
|
|
|
|
+ " ,auditdate\n" +
|
|
|
" ,accountid\n" +
|
|
" ,accountid\n" +
|
|
|
" ,createuserid\n" +
|
|
" ,createuserid\n" +
|
|
|
" ,updateuserid\n" +
|
|
" ,updateuserid\n" +
|
|
@@ -7663,6 +7665,8 @@ namespace Dongke.IBOSS.PRD.Service.PDAModuleLogic
|
|
|
" ,:rreason\n" +
|
|
" ,:rreason\n" +
|
|
|
" ,:remarks\n" +
|
|
" ,:remarks\n" +
|
|
|
" ,1\n" +
|
|
" ,1\n" +
|
|
|
|
|
+ " ,:auditor\n" +
|
|
|
|
|
+ " ,:auditdate\n" +
|
|
|
" ,:accountid\n" +
|
|
" ,:accountid\n" +
|
|
|
" ,:userid\n" +
|
|
" ,:userid\n" +
|
|
|
" ,:userid\n" +
|
|
" ,:userid\n" +
|
|
@@ -7825,7 +7829,9 @@ namespace Dongke.IBOSS.PRD.Service.PDAModuleLogic
|
|
|
new OracleParameter(":remarks",cre.Properties["remarks"]),
|
|
new OracleParameter(":remarks",cre.Properties["remarks"]),
|
|
|
new OracleParameter(":accountid",userInfo.AccountID),
|
|
new OracleParameter(":accountid",userInfo.AccountID),
|
|
|
new OracleParameter(":userid",userInfo.UserID),
|
|
new OracleParameter(":userid",userInfo.UserID),
|
|
|
- new OracleParameter(":barcode", barcode)
|
|
|
|
|
|
|
+ new OracleParameter(":barcode", barcode),
|
|
|
|
|
+ new OracleParameter(":auditor", userInfo.UserID),
|
|
|
|
|
+ new OracleParameter(":auditdate", DateTime.Now.Date)
|
|
|
};
|
|
};
|
|
|
sre.OtherStatus += oracleTrConn.ExecuteNonQuery(insertScrapproduct, oracleParameter);
|
|
sre.OtherStatus += oracleTrConn.ExecuteNonQuery(insertScrapproduct, oracleParameter);
|
|
|
|
|
|