-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProduct.java
More file actions
298 lines (269 loc) · 8.11 KB
/
Product.java
File metadata and controls
298 lines (269 loc) · 8.11 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
import java.util.*;
import java.text.SimpleDateFormat;
public class Product
{
private String id;
private String name;
private double amount;
private String origin;
private int shelfLife;
private double discount;
private Calendar date;
private ArrayList<String[]> sellingOptionList;
/**
* A default constructor for objects of class Product.
*/
public Product()
{
id = "";
sellingOptionList = new ArrayList<String[]>();
name = "";
amount = 0;
origin = "";
shelfLife = 0;
discount = 0;
date = Calendar.getInstance();
}
/**
* A constructor for objects of class Product.
*/
public Product(String newId,String newName,double newAmount, String newOrigin, int newShelfLife,
double newDiscount, Calendar newDate, ArrayList<String[]> newSellingOptionList)
{
id = newId;
name = newName;
amount = newAmount;
origin = newOrigin;
shelfLife = newShelfLife;
discount = newDiscount;
date = newDate;
sellingOptionList = newSellingOptionList;
}
/**
* Create an addSellingOption method to add generate selling option details.
*/
public void addSellingOption(String newOption, String newRate, String newPrice)
{
sellingOptionList.add(generateSellingOption(newOption, newRate, newPrice));
}
/**
* Create a calToStr method to transform the date format.
*/
private String calToStr()
{
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
String calStr = sdf.format(date.getTime());
return calStr;
}
/**
* Create a countExpiryDate method to count the expiry date.
*/
private Calendar countExpiryDate()
{
Calendar expiryDate = Calendar.getInstance();
expiryDate.setTime(date.getTime());
expiryDate.add(Calendar.DATE, shelfLife);
return expiryDate;
}
/**
* Create a displayProduct method to display all product's information.
*/
public void displayProduct()
{
String inventoryOption = "";
if(sellingOptionList.get(0)[0].toUpperCase().equals("KG") || sellingOptionList.get(0)[0].toUpperCase().equals("BAG") ||
sellingOptionList.get(0)[0].toUpperCase().equals("BUNCH"))
inventoryOption = "kg";
else
inventoryOption = "wholes";
System.out.println("Product id: " + id + ", Product name: " + name + ", Category: " + getCategory() + ", Origin: " + origin);
for(int i = 0; i < sellingOptionList.size(); i++)
{
String[] sellingOption = getSellingOption(i);
String discountPrice = String.format("%.2f", Double.valueOf(sellingOption[2]) * discount);
System.out.println("Original price: AU$" + Double.valueOf(sellingOption[2]) + ", Price after discount: AU$" +
discountPrice + " for 1 " + sellingOption[0] + "(" + sellingOption[1] + " kg)");
}
System.out.println(amount + " " + inventoryOption + " in stoke");
System.out.println("Shelf life: " + shelfLife + " days, current discount: " + discount + ", Start selling date: " + calToStr());
if (ifExpired())
System.out.println("Selling condition: Expired!");
else
System.out.println("Selling condition: On selling!");
System.out.println("------------------------------------------------------------------------------------");
}
/**
* Create a generateSellingOption method to input generate selling option details.
*/
private String[] generateSellingOption(String newOption, String newRate, String newPrice)
{
String[] sellingOption = new String[3];
sellingOption[0] = newOption;
sellingOption[1] = newRate;
sellingOption[2] = newPrice;
return sellingOption;
}
/**
* Create a getAmount method to get product amount.
*/
public double getAmount()
{
return amount;
}
/**
* Create a getCategory method to get the category of product.
*/
public String getCategory()
{
if (id.charAt(0) == 'V')
return "Vegetable";
return "Fruit";
}
/**
* Create a getDate method to get the date.
*/
public Calendar getDate()
{
return date;
}
/**
* Create a getDetail method to get the product's information.
*/
public String getDetail()
{
String sellingOption = "";
int size = sellingOptionList.size();
for (int i = 0;i < size;i++)
sellingOption = sellingOption + "," + sellingOptionList.get(i)[0] + "," + sellingOptionList.get(i)[1] + "," + sellingOptionList.get(i)[2];
String detail = id + "," + name + "," + String.valueOf(amount) + "," + origin + "," + String.valueOf(shelfLife) + "," +
String.valueOf(discount) + "," + calToStr() + sellingOption;
return detail;
}
/**
* Create a getDiscount method to get the discount of product.
*/
public double getDiscount()
{
return discount;
}
/**
* Create a getId method to get product id.
*/
public String getId()
{
return id;
}
/**
* Create a getName method to get product name.
*/
public String getName()
{
return name;
}
/**
* Create a getOrigin method to get product origin.
*/
public String getOrigin()
{
return origin;
}
/**
* Create a getSellingOptionList method to get sellingOptionList index.
*/
public String[] getSellingOption(int index)
{
String[] sellingOption= sellingOptionList.get(index);
return sellingOption;
}
/**
* Create a getSellingOptionList method to get selling option list.
*/
public ArrayList<String[]> getSellingOptionList()
{
return sellingOptionList;
}
/**
* Create a getShelfLife method to get shelfLife.
*/
public int getShelfLife()
{
return shelfLife;
}
/**
* Create a ifExpired method to identify whether the date is expiried or not.
* true = expired
*/
public boolean ifExpired()
{
Calendar currentDate = Calendar.getInstance();
int ifExpired = currentDate.compareTo(countExpiryDate());
if (ifExpired >= 0)
return true;
else
return false;
}
/**
* Create a inventoryUnit method to identify the inventory unit.
*/
public char inventoryUnit()
{
if(sellingOptionList.get(0)[0].toUpperCase().equals("KG") || sellingOptionList.get(0)[0].toUpperCase().equals("BAG") ||
sellingOptionList.get(0)[0].toUpperCase().equals("BUNCH"))
return 'A';
else
return 'B';
}
/**
* Create a setAmount method to set product amount.
*/
public void setAmount(double newAmount)
{
amount = newAmount;
}
/**
* Create a getDate method to set the date.
*/
public void setDate()
{
date = Calendar.getInstance();
}
/**
* Create a setDiscount method to set the discount of product.
*/
public void setDiscount(double newDiscount)
{
discount = newDiscount;
}
public void setId(String newId)
{
id = newId;
}
/**
* Create a setName method to set new product name.
*/
public void setName(String newName)
{
name = newName;
}
/**
* Create a setOrigin method to set product origin.
*/
public void setOrigin(String newOrigin)
{
origin = newOrigin;
}
/**
* Create a setSellingOptionList method to set selling option list.
*/
public void setSellingOptionList(ArrayList newSellingOpotionList)
{
sellingOptionList = newSellingOpotionList;
}
/**
* Create a setShelfLife method to set the new shelfLife.
*/
public void setShelfLife(int newShelfLife)
{
shelfLife = newShelfLife;
}
}