BrightSide Workbench Full Report + Source Code
CustomerFilter.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.crm.zul.customer;
20 
21 import java.util.Collection;
22 import java.util.List;
23 import org.turro.crm.db.CrmPU;
24 import org.turro.crm.entity.Customer;
25 import org.turro.elephant.context.Application;
26 import org.turro.elephant.db.WhereClause;
27 import org.turro.jpa.Dao;
28 import org.turro.plugin.filter.IFilterValue;
29 import org.turro.vendor.VendorUtil;
30 import org.turro.zkoss.filter.Filter;
31 
36 public class CustomerFilter extends Filter<Customer> {
37 
38  public CustomerFilter() {
39  }
40 
41  @Override
42  public Collection<Customer> getObjectValues(List<IFilterValue> values) {
43  Dao dao = new CrmPU();
44  WhereClause wc = createCriteria(values);
45  return dao.getResultList(wc);
46  }
47 
48  private WhereClause createCriteria(List<IFilterValue> values) {
49  WhereClause wc = new WhereClause();
50  wc.addClause("select distinct cust from Customer as cust");
51  wc.addClause("left join cust.activitySectors actsec");
52  wc.addClause("left join cust.technologies tech");
53  wc.addClause("left join cust.customerSectors cussec");
54  if(!Application.getApplication().isInRole("customer:all")) {
55  wc.addClause("left join cust.customerOwners custown");
56  wc.addClause("where custown.vendor = :vendorlim");
57  wc.addNamedValue("vendorlim", VendorUtil.getCurrent());
58  } else {
59  wc.addClause("where 1=1");
60  }
61  for(IFilterValue v : values) {
62  v.addConstraint(wc);
63  }
64  wc.addClause("order by cust.name");
65  return wc;
66  }
67 
68 }
Collection< Customer > getObjectValues(List< IFilterValue > values)
void addNamedValue(String name, Object value)
static Vendor getCurrent()
Definition: VendorUtil.java:32