-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTransactions.java
More file actions
399 lines (375 loc) · 14.4 KB
/
Copy pathTransactions.java
File metadata and controls
399 lines (375 loc) · 14.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
import java.util.*;
import java.lang.Math;
import java.time.LocalDate;
import java.io.*;
import java.text.SimpleDateFormat;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.DefaultTableModel;
public class Transactions {
public static int typeOfTransaction = 0; //1 = Deposit, 2 = Withdraw, 3 = Transfers
public static double amount = 0.0; //sets the amount that is being deposited, withdrawed, or transfered
public static String memo = ""; //description of what the transaction was for
private static String username = Data.generaldata.get(0); //gets username from array
public static int balanceindex = 0; //where the balance is in the data file/array list
public static double balance = 0.0; //converts the string balance from array to double
public static String transactiontype = ""; //electronic transfer, deposit, withdraw, payment, foreign exchange
private static String originalTypeOfAccount = ""; //for transfers: when otheraccount is set a typeOfTransaction
private static String originalMethod = ""; //for transfers: when othemethod is set as typeOfMethod
public static String investmenttype = ""; //bonds, cods, annuities - for moneymarket
private static String accounts[] = {"Savings", "Checkings", "Investors", "Loans"};
private static Scanner input = new Scanner(System.in);
public static String transfertype = "";
public static void ATM() throws IOException{
int choice = 0;
System.out.println("Select an Account");
do{
System.out.println("1. Savings Account");
System.out.println("2. Checkings Account");
System.out.println("3. Sign Out");
System.out.print("Enter Choice: ");
choice = input.nextInt();
}
while(choice < 0 || choice > 3);
if(choice == 1){
Data.typeOfAccount = "Savings"; //updates type of account if user picked savings
balanceindex = 3;
}
else if(choice == 2){
Data.typeOfAccount = "Checkings"; //updates type of account if user picked checkings
balanceindex = 4;
}
else{
UserMenu.main(null); //brings user to bank menu/home
}
System.out.println("--------------------");
System.out.println("What would you like to do?");
choice = 0;
do{
System.out.println("1. Deposit");
System.out.println("2. Withdraw");
System.out.println("3. View Balance");
System.out.println("4. Sign Out.");
System.out.print("Enter Choice: ");
choice = input.nextInt();
}
while(choice < 0 || choice > 4);
if(choice == 1){
typeOfTransaction = 1;
System.out.println("--------------------");
System.out.print("How much would you like to deposit? $");
amount = input.nextDouble();
memo = "ATM Deposit";
}
else if(choice == 2){
Boolean overDraft = false;
do{
typeOfTransaction = 2;
System.out.println("--------------------");
System.out.print("How much would you like to withdraw? $");
amount = input.nextDouble();
overDraft = overdraft();
}
while(overDraft == true);
memo = "ATM Withdrawl";
}
else if(choice == 3){
System.out.println("--------------------");
}
else{
UserMenu.main(null);
}
transactions();
}
public static void variables(){
if(Data.typeOfAccount.equals("Investors")){
balanceindex = 2;
}
else if(Data.typeOfAccount.equals("Savings")){
balanceindex = 3;
}
else if(Data.typeOfAccount.equals("Checkings")){
balanceindex = 4;
}
else if(Data.typeOfAccount.equals("Loans")){
}
}
public static void getbalance() throws IOException{
variables();
String filename = username + "_" + Data.typeOfAccount + "Transactions.csv"; //names csv file based on username
File file = new File(filename); //describing the file
FileWriter fw = new FileWriter(file , true);
FileReader fr = new FileReader(file);
BufferedWriter bw = new BufferedWriter(fw);
BufferedReader br = new BufferedReader(fr);
String line = "";
String bal = "";
if(br.readLine() != null){
while((line = br.readLine()) != null){ //gets last balance of transaction history
String [] values = line.split(",");
bal = values[4];
}
}
else{
if(Data.typeOfAccount.equals("Investors")){
bal = Data.investordata.get(balanceindex);
}
if(Data.typeOfAccount.equals("Loans")){
bal = "0";
}
else{
bal = Data.customerdata.get(balanceindex);
}
}
balance = Double.parseDouble(bal);
if(Data.typeOfAccount.equals("Investors")){
bal = Data.investordata.set(balanceindex, bal);
}
else{
bal = Data.customerdata.set(balanceindex, bal);
}
br.close();
bw.close();
fw.close();
fr.close();
}
public static void transactions() throws IOException{
getbalance();
if(typeOfTransaction == 1){ //gets balance after deposit
transactiontype = "Deposit";
balance = balance + amount;
balance = Math.round(balance*100.0)/100.0;
}
else if(typeOfTransaction == 2){//gets balance after withdrawl
transactiontype = "Withdrawl";
balance = balance - amount;
balance = Math.round(balance*100.0)/100.0;
}
else if(typeOfTransaction == 3){//gets balance after transfer
transactiontype = "Transfer";
balance = balance - amount;
balance = Math.round(balance*100.0)/100.0;
}
else if(typeOfTransaction == 4){//gets balance after transfer
transactiontype = "Recieved";
balance = balance + amount;
balance = Math.round(balance*100.0)/100.0;
}
if(Data.typeOfAccount.equals("Investors")){
Data.investordata.set(balanceindex, balance + "");
System.out.println("Investor Balance: " + Data.investordata.get(balanceindex));
}
else{
Data.customerdata.set(balanceindex, balance + "");
System.out.println(Data.typeOfAccount + " Balance: " + Data.customerdata.get(balanceindex));
}
addTransaction();
}
public static void transfer() throws IOException{
originalMethod = Data.method;
originalTypeOfAccount = Data.typeOfAccount;
//System.out.println(originalTypeOfAccount);
Data.method = "Transfer";
memo = "Electronic Transfer";
if(transfertype.equals("Out")){
typeOfTransaction = 3;
}
else{
typeOfTransaction = 4;
}
int i = 1;
String otheraccount[] = new String[3];
for(String str: accounts){
if(str.equals(Data.typeOfAccount)){
}
else{
otheraccount[i-1] = str;
i++;
}
}
int account = 0;
if(transfertype.equals("Out")){
System.out.println("Where would you like to transfer money to?");
}
else{
System.out.println("Where would you like to transfer money from?");
}
do{
System.out.println("1. " + otheraccount[0]);
System.out.println("2. " + otheraccount[1]);
System.out.println("3. " + otheraccount[2]); //if user were to have another account
System.out.print("Enter Choice: ");
account = input.nextInt();
}
while(account < 0 || account > 3);
String transferaccount = otheraccount[account - 1];
System.out.println(transferaccount);
Boolean overDraft = false;
do{
System.out.println("--------------------");
System.out.print("How much would you like to transfer: $");
amount = input.nextDouble();
if(transfertype.equals("Out")){
overDraft = overdraft();
}
else if(transfertype.equals("In")){
Data.typeOfAccount = transferaccount;
overDraft = overdraft();
Data.typeOfAccount = originalTypeOfAccount;
}
}
while(overDraft == true);
getbalance();
variables();
transactions();
Data.method = originalMethod;
Data.typeOfAccount = transferaccount;
if(transfertype.equals("Out")){
typeOfTransaction = 4;
}
else{
typeOfTransaction = 3;
}
variables();
transactions();
}
public static Boolean overdraft() throws IOException{
Boolean overdraft = false;
getbalance();
if(amount > balance){
System.out.println("Your " + (Data.typeOfAccount).toLowerCase() + " account balance is lower than the transaction amount. Change the amount to avoid overdraft fees.");
overdraft = true;
}
else{
overdraft = false;
}
return overdraft;
}
public static void addTransaction() throws IOException{
String filename = username + "_" + Data.typeOfAccount + "Transactions.csv"; //names csv file based on username
File file = new File(filename); //describing the file
FileWriter fw = new FileWriter(file , true);
FileReader fr = new FileReader(file);
BufferedWriter bw = new BufferedWriter(fw);
BufferedReader br = new BufferedReader(fr);
if(br.readLine() == null){
bw.write("Date,");
bw.write("Type,");
bw.write("Amount,");
bw.write("Memo,");
bw.write("Balance");
}
bw.newLine();
Date today = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
String formatteddate = dateFormat.format(today);
bw.write(formatteddate + ",");
bw.write(transactiontype + ",");
bw.write(Math.round(amount * 100.00)/100.0 + ",");
bw.write(memo + ",");
bw.write(balance + "");
bw.close();
if(!originalTypeOfAccount.equals("")){
Data.typeOfAccount = originalTypeOfAccount;
}
if(Data.method.equals("ATM")){
System.out.println("--------------------");
ATM();
}
else if(Data.method.equals("Transfer")){
return;
}
else if(Data.method.equals("moneymarket")){
MoneyMarket.menu();
}
else if(Data.method.equals("bonds")){
Bonds.bondsmain();
}
else if(Data.method.equals("Investors")){
InvestorsAccount.investormenu();
}
else if(Data.method.equals("loan payment")){
Loans.payment();
}
else if(Data.method.equals("FE")){
BankMain.menu();
}
else{
Account.accountmain();
}
}
public static void investmentclass() throws IOException{
getbalance();
if(typeOfTransaction == 6){//gets balance after transfer
transactiontype = "Investment Bought";
balance = balance - amount;
balance = Math.round(balance*100.0)/100.0;
}
else if(typeOfTransaction == 7){//gets balance after transfer
transactiontype = "Investment Sold";
balance = balance + amount;
balance = Math.round(balance*100.0)/100.0;
}
memo = investmenttype;
Data.typeOfAccount = "Investors";
addTransaction();
}
public static void loans() throws IOException{
transactiontype = "Loan Payment";
balance = balance - amount;
balance = Math.round(balance*100.0)/100.0;
addTransaction();
}
public static void statement() throws IOException{
String filename = Data.generaldata.get(0) + "_" + Data.typeOfAccount + "Transactions.csv"; //names csv file based on username
JFrame frame = new JFrame();
DefaultTableModel statement = new DefaultTableModel();
JTable table = new JTable(statement);
statement.addColumn("");
statement.addColumn("");
statement.addColumn("");
statement.addColumn("");
statement.addColumn("");
statement.addRow(new Object[] {"", "","", "", ""});
File file = new File(filename); //describing the file
FileWriter fw = new FileWriter(file , true);
FileReader fr = new FileReader(file);
BufferedReader br = new BufferedReader(fr);
String line = "";
String strdate = "";
String strtype = "";
String stramount = "";
String strmemo = "";
String strbalance = "";
while((line = br.readLine()) != null){
String [] values = line.split(",");
strdate = values[0];
strtype = values[1];
stramount = values[2];
strmemo = values[3];
strbalance = values[4];
statement.addRow(new Object[] {strdate,strtype,stramount,strmemo,strbalance});
statement.addRow(new Object[] {""});
}
br.close();
fw.close();
frame.add(table);
frame.setSize(800,800);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
System.out.println("Statement has been opened in a new tab.");
if(Data.method.equals("Loans")){
Loans.loansmenu();
}
else if(Data.typeOfAccount.equals("Investors")){
InvestorsAccount.investormenu();
}
else if(Data.method.equals("FE")){
BankMain.menu();
}
else{
Account.accountmain();
}
}
}