|
|
@@ -290,6 +290,9 @@ public class dispatchItems extends Controller {
|
|
|
if (whereObject.containsKey("enddate") && !"".equals(whereObject.getString("enddate"))) {
|
|
|
where.append(" and t4.billdate <='").append(whereObject.getString("enddate")).append("' ");
|
|
|
}
|
|
|
+ if (whereObject.containsKey("status") && !"".equals(whereObject.getString("status"))) {
|
|
|
+ where.append(" and t4.status ='").append(whereObject.getString("status")).append("' ");
|
|
|
+ }
|
|
|
}
|
|
|
boolean isExport = content.getBooleanValue("isExport");
|
|
|
SQLFactory sqlFactory = new SQLFactory(this, "发货单明细所有列表查询", pageSize, pageNumber, pageSorting);
|