BrightSide Workbench Full Report + Source Code
CustomerOrderFilter.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2012 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.erp.sales;
20 
21 import java.util.Collection;
22 import java.util.Collections;
23 import java.util.List;
24 import javax.persistence.Query;
25 import org.turro.string.Strings;
26 import org.turro.elephant.db.WhereClause;
27 import org.turro.erp.db.ErpPU;
28 import org.turro.erp.entity.CustomerOrder;
29 import org.turro.jpa.Dao;
30 import org.turro.plugin.filter.IFilterValue;
31 import org.turro.zkoss.grid.GroupExtended;
32 import org.zkoss.zul.Grid;
33 import org.zkoss.zul.Group;
34 
39 public class CustomerOrderFilter {
40 
41  private long lastId = 0;
42 
44  }
45 
46  public Collection<CustomerOrder> getCustomerOrders(List<IFilterValue> values) {
47  lastId = 0;
48  Dao dao = new ErpPU();
49  try {
50  WhereClause wc = createCriteria(values);
51  if(!Strings.isEmpty(wc.getClause())) {
52  Query q = dao.createQuery(wc.getClause());
53  wc.setNamedParameters(q);
54  return q.getResultList();
55  } else {
56  return Collections.EMPTY_LIST;
57  }
58  } finally {
59  dao.close();
60  }
61  }
62 
63  public void checkGroup(Grid grid, CustomerOrder customerOrder, boolean open) {
64  if(lastId == 0 || lastId != customerOrder.getCustomerId()) {
65  lastId = customerOrder.getCustomerId();
66  Group group = new GroupExtended(customerOrder.getCustomer().getFullDescription());
67  group.setOpen(open);
68  grid.getRows().appendChild(group);
69  }
70  }
71 
72  private WhereClause createCriteria(List<IFilterValue> values) {
73  WhereClause wc = new WhereClause();
74  wc.addClause("select distinct cu from CustomerOrder as cu");
75  wc.addClause("where 1=1");
76  for(IFilterValue v : values) {
77  v.addConstraint(wc);
78  }
79  wc.addClause("order by cu.customerId, cu.orderDate, cu.orderId");
80  return wc;
81  }
82 
83 }
void checkGroup(Grid grid, CustomerOrder customerOrder, boolean open)
Collection< CustomerOrder > getCustomerOrders(List< IFilterValue > values)
void close()
Definition: Dao.java:71
Query createQuery(String query)
Definition: Dao.java:61