|
|
@@ -22518,7 +22518,7 @@ updateuserid=:updateuserid where barcode=:barcode";
|
|
|
#region 添加生产数据---将备注添加特殊的字符串
|
|
|
#region 属性赋值
|
|
|
// 将备注添加特殊的字符串250521
|
|
|
- productionData.Remarks = string.IsNullOrWhiteSpace(productionData.Remarks)? "复检备注": productionData.Remarks;
|
|
|
+ productionData.Remarks = string.IsNullOrWhiteSpace(productionData.Remarks)? "复检": productionData.Remarks;
|
|
|
productionData.ClassesSettingID = ClassesSettingID;
|
|
|
productionData.ProductionDataID = Convert.ToInt32(idStr);
|
|
|
productionData.CentralizedBatchNo = centralizedBatchNo;
|
|
|
@@ -22792,6 +22792,7 @@ updateuserid=:updateuserid where barcode=:barcode";
|
|
|
sql = "insert into tp_pm_productiondata_semicheck"
|
|
|
+ " (productiondataid,"
|
|
|
+ " semicheckprocedureid,"
|
|
|
+ + " barcode, "
|
|
|
+ " accountid,"
|
|
|
+ " createuserid,"
|
|
|
+ " updateuserid,"
|
|
|
@@ -22800,6 +22801,7 @@ updateuserid=:updateuserid where barcode=:barcode";
|
|
|
+ " values"
|
|
|
+ " (:productiondataid,"
|
|
|
+ " :semicheckprocedureid,"
|
|
|
+ + " :barcode,"
|
|
|
+ " :accountid,"
|
|
|
+ " :createuserid,"
|
|
|
+ " :updateuserid,"
|
|
|
@@ -22809,6 +22811,7 @@ updateuserid=:updateuserid where barcode=:barcode";
|
|
|
OracleParameter[] paras = new OracleParameter[] {
|
|
|
new OracleParameter(":productiondataid",OracleDbType.Int32, productionData.ProductionDataID,ParameterDirection.Input),
|
|
|
new OracleParameter(":semicheckprocedureid",OracleDbType.Int32,procedureID,ParameterDirection.Input),
|
|
|
+ new OracleParameter(":barcode",productionData.Barcode),
|
|
|
new OracleParameter(":accountid",OracleDbType.Int32,sUserInfo.AccountID,ParameterDirection.Input),
|
|
|
new OracleParameter(":createuserid",OracleDbType.Int32,sUserInfo.UserID,ParameterDirection.Input),
|
|
|
new OracleParameter(":updateuserid",OracleDbType.Int32,sUserInfo.UserID,ParameterDirection.Input)
|