Ver Fonte

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

hu há 2 anos atrás
pai
commit
e6a26f4fcf

+ 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("' ");
             }