-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPayroll.java
More file actions
243 lines (210 loc) · 6.22 KB
/
Payroll.java
File metadata and controls
243 lines (210 loc) · 6.22 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
package payroll;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.*;
public class Payroll
{
private Scanner scanner;
private PayrollMenu menu;
private ArrayList<Employee> employees;
public Payroll(String input)
{
//catch the exceptions
try
{
scanner = new Scanner(new FileReader(input));
}
catch(FileNotFoundException e)
{
System.out.println("Input file not found!");
System.exit(1);
}
menu = new PayrollMenu(scanner);
employees = new ArrayList<>();
}
public Payroll()
{
scanner = new Scanner(System.in);
menu = new PayrollMenu(scanner);
employees = new ArrayList<>();
}
public void go()
{
//welcome();
menu = new PayrollMenu(scanner);
PayrollCommand command = menu.getNextCommand();
if (command == PayrollCommand.ADD_EMPLOYEE) {
addEmployee();
}
else if (command == PayrollCommand.REMOVE_EMPLOYEE) {
removeEmployee();
}
else if (command == PayrollCommand.SHOW_EMPLOYEES) {
showEmployees();
}
else if (command == PayrollCommand.DO_WEEKLY_PAYROLL) {
doWeeklyPayroll();
}
else if (command == PayrollCommand.QUIT) {
quit();
}
}
public boolean isThere(String name)
{
boolean present = false;
for (int index = 0; index < employees.size(); index++)
{
if (name.equals(employees.get(index).getName()))
{
present = true;
}
}
return present;
}
public void welcome()
{
System.out.println("");
System.out.println("ICS H22 Lab 3: The Price You Pay");
System.out.println("Danish Khan and Adam Su");
System.out.println("");
}
public void addEmployee()
{
String employeeName;
String employeeType;
int wage;
//System.out.println("Please enter new employee name:");
employeeName = scanner.nextLine();
if (isThere(employeeName))
{
//System.out.println("The employee, "+employeeName+" is in the database.");
go();
}
//System.out.println("Please specify employee type (hourly, salaried, contract):");
employeeType = scanner.nextLine();
if (employeeType.compareToIgnoreCase("hourly") == 0) //takes in employee type
{
//System.out.println("What is the hourly wage of this employee (in cents): ");
try
{
wage = (int)(scanner.nextDouble() * 100); //takes in hourly wage
scanner.nextLine();
}
catch (InputMismatchException ime)
{
//System.out.println("Invalid entry. Hourly wage needs to be a positive integer in cents. Please try again:");
wage = (int)(scanner.nextDouble() * 100);
scanner.nextLine();
go();
}
Employee newHourlyEmployee = new hourlyEmployee(employeeName, wage); //creates new hourly employee object
employees.add(newHourlyEmployee);//add employee to array
System.out.println("SUCCESS! - New hourly employee, "+employeeName+", added successfully!");
go();
}
else if (employeeType.compareToIgnoreCase("salaried") == 0)
{
//System.out.println("What is the annual wage of this employee (in cents): ");
try
{
wage = (int)(scanner.nextDouble() * 100);
scanner.nextLine();
}
catch (InputMismatchException ime)
{
// System.out.println("Invalid entry. Annual wage needs to be a positive integer in cents. Please try again:");
wage = (int)(scanner.nextDouble() * 100);
scanner.nextLine();
go();
}
Employee newSalariedEmployee = new salariedEmployee(employeeName, wage);
employees.add(newSalariedEmployee);
System.out.println("SUCCESS! - New salaried employee, "+employeeName+", added successfully!");
go();
}
else if (employeeType.compareToIgnoreCase("contract") == 0)
{
//System.out.println("Provide the hourly wage of this employee (in cents): ");
try
{
wage = (int)(scanner.nextDouble() * 100);
scanner.nextLine();
}
catch (InputMismatchException ime)
{
//System.out.println("Invalid entry. Provide a positive integer (in cents.)");
wage = (int)(scanner.nextDouble() * 100);
scanner.nextLine();
go();
}
Employee newContractEmployee = new contractEmployee(employeeName, wage);
employees.add(newContractEmployee);
System.out.println("SUCCESS! - New contract employee, "+employeeName+", added successfully!");
go();
}
//System.out.println("Invalid employee type. Please try again.");
go();
}
public void removeEmployee()
{
String name;
boolean found = false;
int i = 0;
//scanner = new Scanner(System.in);
//System.out.println("Please input the full name of the employee you wish to remove: ");
name = scanner.nextLine();
while (i < employees.size() && (found == false))
{
if (name.compareToIgnoreCase(employees.get(i).getName()) == 0)
{
employees.remove(i);
found = true;
}
i++;
}
if (found == false) {
System.out.println("ERROR! - The employee, "+name+", was not found in the database and could not be removed.");
}
else {
System.out.println("SUCCESS! - Employee, "+name+", successfully removed from the database!");
}
}
private void showEmployees()
{
int c;
for (c = 0; c < employees.size(); c++)
{
System.out.println(employees.get(c).toString());
}
go();
}
public void doWeeklyPayroll()
{
ArrayList<String> payroll = new ArrayList<>();
int d = 0;
int e = 0;
int hoursWorked;
for (d = 0; d < employees.size(); d++)
{
// System.out.println("Provide the amount of hours that " +employees.get(d).getName()+
// " worked this week?");
String temp;
temp = scanner.nextLine();
hoursWorked = scanner.nextInt();
scanner.nextLine();
String tempPayroll;
tempPayroll = employees.get(d).createWeeklyPaycheck(hoursWorked).toString();
payroll.add(d, tempPayroll);
}
for (e = 0; e < payroll.size(); e++)
{
System.out.println (payroll.get(e));
}
go();
}
public void quit()
{
System.out.println("Exit");
System.exit(1);
}
}