-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBooking.java
More file actions
234 lines (191 loc) · 6.15 KB
/
Copy pathBooking.java
File metadata and controls
234 lines (191 loc) · 6.15 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
package model;
public class Booking {
private int id;
private String name;
private String phone;
private String email;
private String address;
private String city;
private String state;
private String postal;
private String sessionType;
private String sessionDate;
private String startTime;
private String endTime;
private int numPeople;
private String ages;
private String notes;
private String extras;
private String status;
private String username; // New field to track the user who created the booking
public Booking(int id, String name, String phone, String email, String address, String city, String state,
String postal, String sessionType, String sessionDate, String startTime, String endTime,
int numPeople, String ages, String notes, String extras) {
this.id = id;
this.name = name;
this.phone = phone;
this.email = email;
this.address = address;
this.city = city;
this.state = state;
this.postal = postal;
this.sessionType = sessionType;
this.sessionDate = sessionDate;
this.startTime = startTime;
this.endTime = endTime;
this.numPeople = numPeople;
this.ages = ages;
this.notes = notes;
this.extras = extras;
this.status = "Pending";
}
public Booking(int id, String name, String phone, String email, String address, String city, String state,
String postal, String sessionType, String sessionDate, String startTime, String endTime,
int numPeople, String ages, String notes, String extras, String username) {
this(id, name, phone, email, address, city, state, postal, sessionType, sessionDate, startTime, endTime,
numPeople, ages, notes, extras);
this.username = username;
}
// Getters and setters
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getPostal() {
return postal;
}
public void setPostal(String postal) {
this.postal = postal;
}
public String getSessionType() {
return sessionType;
}
public void setSessionType(String sessionType) {
this.sessionType = sessionType;
}
public String getSessionDate() {
return sessionDate;
}
public void setSessionDate(String sessionDate) {
this.sessionDate = sessionDate;
}
public String getStartTime() {
return startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public int getNumPeople() {
return numPeople;
}
public void setNumPeople(int numPeople) {
this.numPeople = numPeople;
}
public String getAges() {
return ages;
}
public void setAges(String ages) {
this.ages = ages;
}
public String getNotes() {
return notes;
}
public void setNotes(String notes) {
this.notes = notes;
}
public String getExtras() {
return extras;
}
public void setExtras(String extras) {
this.extras = extras;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public boolean filterBookings(String searchTerm) {
String lowerCaseTerm = searchTerm.toLowerCase();
return (name != null && name.toLowerCase().contains(lowerCaseTerm)) ||
(email != null && email.toLowerCase().contains(lowerCaseTerm));
}
public boolean filterBookings(String date, String sessionType) {
boolean matchesDate = this.sessionDate != null && this.sessionDate.equals(date);
boolean matchesType = this.sessionType != null && this.sessionType.equalsIgnoreCase(sessionType);
return matchesDate && matchesType;
}
@Override
public String toString() {
return "Booking{" +
"id=" + id +
", name='" + name + '\'' +
", phone='" + phone + '\'' +
", email='" + email + '\'' +
", address='" + address + '\'' +
", city='" + city + '\'' +
", state='" + state + '\'' +
", postal='" + postal + '\'' +
", sessionType='" + sessionType + '\'' +
", sessionDate='" + sessionDate + '\'' +
", startTime='" + startTime + '\'' +
", endTime='" + endTime + '\'' +
", numPeople=" + numPeople +
", ages='" + ages + '\'' +
", notes='" + notes + '\'' +
", extras='" + extras + '\'' +
", status='" + status + '\'' +
", username='" + username + '\'' +
'}';
}
}