|
@@ -491,6 +491,11 @@ public class Item extends Controller {
|
|
|
where.append("t1.isonsale ='").append(whereObject.getString("isonsale")).append("' ");
|
|
|
where.append(")");
|
|
|
}
|
|
|
+ if (whereObject.containsKey("ismodule") && !"".equals(whereObject.getString("ismodule"))) {
|
|
|
+ where.append(" and(");
|
|
|
+ where.append("t1.ismodule ='").append(whereObject.getString("ismodule")).append("' ");
|
|
|
+ where.append(")");
|
|
|
+ }
|
|
|
if (whereObject.containsKey("isservice") && !"".equals(whereObject.getString("isservice"))) {
|
|
|
where.append(" and(");
|
|
|
where.append("t1.isservice ='").append(whereObject.getString("isservice")).append("' ");
|