BrightSide Workbench Full Report + Source Code
WorkOrderCombobox.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.workorder;
20 
21 import java.util.LinkedList;
22 import java.util.List;
23 import javax.persistence.EntityManager;
24 import javax.persistence.Query;
25 import org.turro.string.ObjectString;
26 import org.turro.elephant.db.SQLHelper;
27 import org.turro.elephant.db.WhereClause;
28 import org.turro.erp.db.ErpPU;
29 import org.turro.erp.entity.Resource;
30 import org.turro.erp.entity.TaskStatus;
31 import org.turro.erp.entity.WorkOrder;
32 import org.turro.zkoss.input.GenericCombobox;
33 
38 public class WorkOrderCombobox extends GenericCombobox<WorkOrder> {
39 
40  private boolean activeTasks = true;
41 
42  @Override
43  public void populateList(String value, LinkedList list, int nRows) {
44  EntityManager em = new ErpPU().getEntityManager();
45  try {
46  WhereClause wc = SQLHelper.getWhereClause(new String[]{
47  "wo.description", "r.description"
48  }, value);
49  Query q = em.createQuery(
50  "select distinct wo from WorkOrder wo " +
51  "left join wo.orderReferences r " +
52  "left join r.tasks t " +
53  "where wo.workOrderId = :woid " +
54  (activeTasks ? "or (t.status <> :status " : "") +
55  wc.getClause() + ")");
56  q.setMaxResults(nRows);
57  wc.addNamedValue("woid", ObjectString.parseString(value, Long.class, true));
58  if(activeTasks) {
60  }
61  wc.setNamedParameters(q);
62  List<Resource> l = q.getResultList();
63  for(Object o : l) {
64  list.add(getTextFromObject((WorkOrder) o));
65  }
66  } finally {
67  em.close();
68  }
69  }
70 
71  @Override
72  public String getTextFromObject(WorkOrder value) {
73  return value.getWorkOrderId() + " " + value.getSomeDescription().replaceAll("\n", "");
74  }
75 
76 }
static WhereClause getWhereClause(String[] fields, String value)
Definition: SQLHelper.java:64
void addNamedValue(String name, Object value)
void populateList(String value, LinkedList list, int nRows)
EntityManager getEntityManager()
Definition: Dao.java:202