BrightSide Workbench Full Report + Source Code
AnnualTransaction.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2011 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 package org.turro.financials.model.document;
19 
20 import org.turro.contacts.Contact;
21 import org.turro.contacts.db.ContactsPU;
22 import org.turro.util.CompareUtil;
23 
28 public class AnnualTransaction implements Comparable<AnnualTransaction> {
29 
30  private String opKey, contractor, view;
31  private double operationsAmount[];
32 
33  public AnnualTransaction(String view, String opKey, String contractor) {
34  this.view = view;
35  this.opKey = opKey;
36  this.contractor = contractor;
37  operationsAmount = new double[4];
38  }
39 
40  public String getView() {
41  return view;
42  }
43 
44  public String getOpKey() {
45  return opKey;
46  }
47 
48  public double getOperationsAmount(int quarter) {
49  return operationsAmount[quarter - 1];
50  }
51 
52  public void addOperationsAmount(int quarter, double operationsAmount) {
53  this.operationsAmount[quarter - 1] += operationsAmount;
54  }
55 
56  public double getOperationsAmountSum() {
57  double result = 0.0;
58  for(int i = 0; i < 4; i++) {
59  result += operationsAmount[i];
60  }
61  return result;
62  }
63 
64  public Contact getContact() {
65  return new ContactsPU().find(Contact.class, contractor);
66  }
67 
68  @Override
69  public int compareTo(AnnualTransaction o) {
70  int result = CompareUtil.compare(view, o.view);
71  if(result == 0) {
72  result = CompareUtil.compare(opKey, o.opKey);
73  }
74  if(result == 0) {
75  result = CompareUtil.compare(contractor, o.contractor);
76  }
77  return result;
78  }
79 
80 }
void addOperationsAmount(int quarter, double operationsAmount)
AnnualTransaction(String view, String opKey, String contractor)