BrightSide Workbench Full Report + Source Code
ReceiptItemRowRenderer.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.purchase;
20 
21 import java.util.Date;
22 import org.turro.string.Strings;
23 import org.turro.command.Command;
24 import org.turro.command.Context;
25 import org.turro.elephant.context.Application;
26 import org.turro.elephant.util.DateFormats;
27 import org.turro.elephant.util.DecimalFormats;
28 import org.turro.elephant.util.ZkossUtils;
29 import org.turro.elephant.zkoss.Modal;
30 import org.turro.erp.entity.ReceiptItem;
31 import org.turro.erp.entity.Task;
32 import org.turro.erp.entity.WorkOrder;
33 import org.turro.financials.entity.Contract;
34 import org.turro.util.PhraseBuilder;
35 import org.turro.zkoss.label.LabelAdapter;
36 import org.turro.zkoss.label.PercentLabel;
37 import org.zkoss.zk.ui.Executions;
38 import org.zkoss.zk.ui.event.Event;
39 import org.zkoss.zk.ui.event.EventListener;
40 import org.zkoss.zk.ui.event.Events;
41 import org.zkoss.zul.*;
42 
47 public class ReceiptItemRowRenderer implements RowRenderer {
48 
49  private ReceiptsGrid grid;
50 
52  this.grid = grid;
53  }
54 
55  @Override
56  public void render(final Row row, Object data, int index) throws Exception {
57  if(row instanceof Group) {
58  ReceiptItem dro = (ReceiptItem) data;
59  PhraseBuilder pb = new PhraseBuilder();
60  Contract provider = dro.getProvider();
61  if(provider != null) {
62  pb.addWord(provider.getName());
63  }
64  if(dro.getDocumentDate() != null) {
65  pb.addWord(Application.getString("lDate"));
66  pb.addWord(DateFormats.format(dro.getDocumentDate(), true));
67  }
68  if(!Strings.isBlank(dro.getDocumentNumber())) {
69  pb.addWord(Application.getString("lNumber"));
70  pb.addWord(dro.getDocumentNumber());
71  }
72  row.appendChild(new Label(pb.toString()));
73  } else if(row instanceof Groupfoot) {
75  row.appendChild(new Space());
76  row.appendChild(new Label("" + dros.items));
77  A docProps = new A(Application.getString("lDocumentProperties"), "/_zul/images/properties.png");
78  docProps.addEventListener(Events.ON_CLICK, new EventListener() {
79  @Override
80  public void onEvent(Event event) throws Exception {
81  doEdit(dros);
82  }
83  });
84  row.appendChild(docProps);
85  row.appendChild(new Space());
86  row.appendChild(new Space());
87  row.appendChild(new Label(DecimalFormats.format(dros.quatity)));
88  row.appendChild(new Label(DecimalFormats.format(dros.cost)));
89  row.appendChild(new Space());
90  } else {
91  final ReceiptItem dr = (ReceiptItem) data;
92  row.appendChild(grid.getEditBox(row, dr));
93  row.appendChild(new Label(dr.getName()));
94  Vlayout vbox = new Vlayout();
95  row.appendChild(vbox);
96  Task task = dr.getOrderItem().getRequiredUsage().getTask();
98  if(wo != null) {
99  vbox.appendChild(new Label(wo.getFullDescription()));
100  vbox.appendChild(new LabelAdapter(new Label(wo.getContract().getName())).setSclass("softLabel"));
101  }
102  if(task != null) {
103  vbox.appendChild(new LabelAdapter(new Label(task.getFullDescription())).setSclass("softLabel"));
104  }
105  row.appendChild(new Label(dr.getDescription()));
106  vbox = new Vlayout();
107  row.appendChild(vbox);
108  if(dr.getStartWorking() != null) {
109  vbox.appendChild(new Label(DateFormats.format(dr.getStartWorking(), dr.getOrderItem().getRequiredUsage() == null)));
110  }
111  if(task != null && task.getDelivery() != null) {
112  Label l = new Label(DateFormats.format(task.getDelivery(), true));
113  if(task.getDelivery().after(new Date())) {
114  l.setStyle("color:green;font-size:11px;");
115  } else {
116  l.setStyle("color:red;font-size:11px;");
117  }
118  vbox.appendChild(l);
119  }
120  vbox = new Vlayout();
121  row.appendChild(vbox);
122  vbox.appendChild(new Label(DecimalFormats.format(dr.getUnits())));
124  vbox.appendChild(new LabelAdapter(new PercentLabel(dr.getDedication())).setSclass("softLabel"));
125  }
126  vbox = new Vlayout();
127  row.appendChild(vbox);
128  vbox.appendChild(new Label(DecimalFormats.format(dr.getCost())));
129  vbox.appendChild(new LabelAdapter(new Label(DecimalFormats.format(dr.getAmount()))).setSclass("softLabel"));
130 
131  Toolbarbutton del = new Toolbarbutton(null, "/_zul/images/edit-delete.png");
132  del.addEventListener(Events.ON_CLICK, new EventListener() {
133  @Override
134  public void onEvent(Event event) throws Exception {
135  ZkossUtils.confirmDeletion(null, new Command() {
136  @Override
137  public Object execute(Context context) {
138  grid.deleteReceipt(dr);
139  return null;
140  }
141  });
142  }
143  });
144  row.appendChild(del);
145  }
146  }
147 
148  private void doEdit(ReceiptItemModel.ReceiptItemSummary dros) {
149  Window w = (Window) Executions.createComponents("/WEB-INF/_zul/erp/purchase/editReceiptGroup.zul", null, null);
150  w.setMode(Window.MODAL);
151  Events.sendEvent(Events.ON_USER, w, dros);
152  Modal.doModal(w, new Command() {
153  @Override
154  public Object execute(Context context) {
155  grid.refresh();
156  return null;
157  }
158  });
159  }
160 
161 }
static String getString(String key)
static final String format(Date d, boolean dateOnly)
static String format(Number value, String pattern)
static int doModal(String file)
Definition: Modal.java:38
RequiredUsage getRequiredUsage()
Definition: OrderItem.java:249
void render(final Row row, Object data, int index)
Component getEditBox(final Row row, final ReceiptItem dr)