Browse Source

发货单列表添加通过复核人查询

hu 2 years ago
parent
commit
e6a26f4fcf
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/custom/restcontroller/webmanage/sale/dispatch/dispatch.java

+ 3 - 0
src/custom/restcontroller/webmanage/sale/dispatch/dispatch.java

@@ -209,6 +209,9 @@ public class dispatch extends Controller {
             if (whereObject.containsKey("status") && !"".equals(whereObject.getString("status"))) {
                 where.append(" and t1.status ='").append(whereObject.getString("status")).append("' ");
             }
+            if (whereObject.containsKey("recheckby") && !"".equals(whereObject.getString("recheckby"))) {
+                where.append(" and t1.recheckby ='").append(whereObject.getString("recheckby")).append("' ");
+            }
             if (whereObject.containsKey("begindate") && !"".equals(whereObject.getString("begindate"))) {
                 where.append(" and DATE_FORMAT(t1.billdate, '%Y-%m-%d') >='").append(whereObject.getString("begindate")).append("' ");
             }