|
@@ -1625,6 +1625,21 @@ namespace Dongke.IBOSS.PRD.Service.PMModuleLogic
|
|
|
dr["PlateLimitNum"] = ds.Tables[0].Rows[0]["PlateLimitNum"];
|
|
dr["PlateLimitNum"] = ds.Tables[0].Rows[0]["PlateLimitNum"];
|
|
|
dr["LuociFlag"] = ds.Tables[0].Rows[0]["luociflag"];
|
|
dr["LuociFlag"] = ds.Tables[0].Rows[0]["luociflag"];
|
|
|
}
|
|
}
|
|
|
|
|
+ // 取裸瓷标识
|
|
|
|
|
+ string sqlString2 = @"
|
|
|
|
|
+ SELECT CASE WHEN gdd.luociflag = 1 THEN 1 ELSE 0 END AS luociflag
|
|
|
|
|
+ FROM TP_PM_GroutingDailyDetail gdd
|
|
|
|
|
+ WHERE gdd.BARCODE = :BARCODE ";
|
|
|
|
|
+
|
|
|
|
|
+ paras = new OracleParameter[]
|
|
|
|
|
+ {
|
|
|
|
|
+ new OracleParameter(":BARCODE", barcode),
|
|
|
|
|
+ };
|
|
|
|
|
+ DataTable luocidata = oracleConn.GetSqlResultToDt(sqlString2, paras);
|
|
|
|
|
+ if (luocidata != null && luocidata.Rows.Count > 0)
|
|
|
|
|
+ {
|
|
|
|
|
+ dr["LuociFlag"] = luocidata.Rows[0]["luociflag"];
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|