|
|
@@ -7859,9 +7859,9 @@ namespace Dongke.IBOSS.PRD.Service.SystemModuleLogic
|
|
|
{
|
|
|
ServiceResultEntity sre = new ServiceResultEntity();
|
|
|
IDBConnection oracleConn = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
|
|
|
- string classes = (cre.Properties["classes"] == null || cre.Properties["classes"] == "" || cre.Properties["classes"] == string.Empty) ? "" : "AND fp.classestype = '" + cre.Properties["classes"] .ToString()+ "'";
|
|
|
- string GOODSID = (cre.Properties["GOODSID"] == null || cre.Properties["GOODSID"] == "" || cre.Properties["GOODSID"] == string.Empty) ? "" : "AND fd.goodsid = '"+ cre.Properties["GOODSID"] .ToString().Trim()+ "'";
|
|
|
- string configtype= (cre.Properties["configtype"] == null || cre.Properties["configtype"] == "" || cre.Properties["configtype"] == string.Empty) ? "" :"AND fp.configtype = '"+ cre.Properties["configtype"] .ToString()+ "' ";
|
|
|
+ string classes = (cre.Properties["classes"] == null || cre.Properties["classes"].ToString() == "" || cre.Properties["classes"].ToString() == string.Empty) ? "" : "AND fp.classestype = '" + cre.Properties["classes"] .ToString()+ "'";
|
|
|
+ string GOODSID = (cre.Properties["GOODSID"] == null || cre.Properties["GOODSID"].ToString() == "" || cre.Properties["GOODSID"].ToString() == string.Empty) ? "" : "AND fd.goodsid = '"+ cre.Properties["GOODSID"] .ToString().Trim()+ "'";
|
|
|
+ string configtype= (cre.Properties["configtype"] == null || cre.Properties["configtype"].ToString() == "" || cre.Properties["configtype"].ToString() == string.Empty) ? "" :"AND fp.configtype = '"+ cre.Properties["configtype"] .ToString()+ "' ";
|
|
|
try
|
|
|
{
|
|
|
string strSql = " SELECT " +
|