|
@@ -552,6 +552,9 @@ public class Order extends Controller {
|
|
|
if (whereObject.containsKey("createby") && !"".equals(whereObject.getString("createby"))) {
|
|
if (whereObject.containsKey("createby") && !"".equals(whereObject.getString("createby"))) {
|
|
|
where.append("and t1.createby like'%").append(whereObject.getString("createby")).append("%' ");
|
|
where.append("and t1.createby like'%").append(whereObject.getString("createby")).append("%' ");
|
|
|
}
|
|
}
|
|
|
|
|
+ if (whereObject.containsKey("checkby") && !"".equals(whereObject.getString("checkby"))) {
|
|
|
|
|
+ where.append("and t1.checkby like'%").append(whereObject.getString("checkby")).append("%' ");
|
|
|
|
|
+ }
|
|
|
if (whereObject.containsKey("agentinfo") && !"".equals(whereObject.getString("agentinfo"))) {
|
|
if (whereObject.containsKey("agentinfo") && !"".equals(whereObject.getString("agentinfo"))) {
|
|
|
where.append(" and(");
|
|
where.append(" and(");
|
|
|
where.append(" t2.enterprisename like'%").append(whereObject.getString("agentinfo")).append("%' ");
|
|
where.append(" t2.enterprisename like'%").append(whereObject.getString("agentinfo")).append("%' ");
|