|
|
@@ -857,6 +857,14 @@ public class cashbill extends Controller {
|
|
|
where = where + " and t1.type ='" + whereObject.getString("type") + "' ";
|
|
|
|
|
|
}
|
|
|
+ if (whereObject.containsKey("class") && !"".equals(whereObject.getString("class"))) {
|
|
|
+ where = where + " and t1.class ='" + whereObject.getString("class") + "' ";
|
|
|
+
|
|
|
+ }
|
|
|
+ if (whereObject.containsKey("subclass") && !"".equals(whereObject.getString("subclass"))) {
|
|
|
+ where = where + " and t1.subclass ='" + whereObject.getString("subclass") + "' ";
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
|