-
Notifications
You must be signed in to change notification settings - Fork 0
/
Autocomplete.java
510 lines (400 loc) · 12.8 KB
/
Autocomplete.java
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
import java.awt.EventQueue;
import java.awt.event.KeyEvent;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javaGUI.sqlconnection;
public class Autocomplete {
private ArrayList billItemlist,recordcustNameList,profitcustNameList,remainingList,paidList,totalList;
public ArrayList temp;
public ArrayList stockItemlist;
public ArrayList quantArry;
private JTextField fld;
private JTextField textFieldIdBill;
private JTextField textFieldPriceBill;
private JTextField textFieldTotalBill;
private JTextField textFieldcNameBill;
private JTextField textFieldNameBill;
private JTextField textFieldPaidBill;
private JTextField textFieldRemainingBill;
private JTextField textFieldcMobileBill ;
private JTextField textFieldPRemainingBill;
private JTextField textFieldTRemainingBill;
private JTextField textFieldCityBill;
private JTextField textFieldDateBill;
private JTextField textFieldQuantityBill;
//#########################################################################
private JTextField textFieldIdPayment;
private JTextField textFieldPricePayment;
private JTextField textFieldTotalPayment;
private JTextField textFieldcNamePayment;
private JTextField textFieldNamePayment;
private JTextField textFieldPaidPayment;
private JTextField textFieldRemainingPayment;
private JTextField textFieldcMobilePayment ;
private JTextField textFieldPRemainingPayment;
private JTextField textFieldTRemainingPayment;
private JTextField textFieldCityPayment;
private JTextField textFieldDatePayment;
private JTextField textFieldQuantityPayment;
//######################################################################################################
public java.sql.Date sqlDate;
private java.sql.Connection connection=null;
public int stockSize,cartSize,qt,qs,qc,is,ic,totalRCustomers,totalPCustomers,rcustn,pcustn,rt,rp,pt,tp,tt,pp,prt,trt;
public Autocomplete()
{
connection=sqlconnection.dbConnector();
}
//#################################################################
public void date()
{
java.util.Date utilDate = new java.util.Date();
sqlDate = new java.sql.Date(utilDate.getTime());
/*
* FOR YESTERDAY
*/
Calendar calendar = Calendar.getInstance();
calendar.add(Calendar.DATE, 8);
sqlDate= new java.sql.Date(calendar.getTimeInMillis());
}
public void billcomponents(JTextField textFieldQuantity1,JTextField textFieldName1,JTextField textFieldId1,JTextField textFieldPrice1,JTextField textFieldTotal1,JTextField textFieldcName1,JTextField textFieldPaid1,JTextField textFieldRemaining1,JTextField textFieldcMobile1,JTextField textFieldPRemaining1,JTextField textFieldTRemaining1,JTextField textFieldCity1,JTextField textFieldDate1)
{
textFieldIdBill=textFieldId1;
textFieldPriceBill=textFieldPrice1;
textFieldTotalBill=textFieldTotal1;
textFieldcNameBill=textFieldcName1;
textFieldNameBill=textFieldName1;
textFieldPaidBill=textFieldPaid1;
textFieldRemainingBill=textFieldRemaining1;
textFieldcMobileBill=textFieldcMobile1 ;
textFieldPRemainingBill=textFieldPRemaining1;
textFieldTRemainingBill=textFieldTRemaining1;
textFieldCityBill=textFieldCity1;
textFieldDateBill=textFieldDate1;
textFieldQuantityBill=textFieldQuantity1;
}
public void paymentcomponents(JTextField textFieldQuantity1,JTextField textFieldName1,JTextField textFieldId1,JTextField textFieldPrice1,JTextField textFieldTotal1,JTextField textFieldcName1,JTextField textFieldPaid1,JTextField textFieldRemaining1,JTextField textFieldcMobile1,JTextField textFieldPRemaining1,JTextField textFieldTRemaining1,JTextField textFieldCity1,JTextField textFieldDate1)
{
textFieldIdPayment=textFieldId1;
textFieldPricePayment=textFieldPrice1;
textFieldTotalPayment=textFieldTotal1;
textFieldcNamePayment=textFieldcName1;
textFieldNamePayment=textFieldName1;
textFieldPaidPayment=textFieldPaid1;
textFieldRemainingPayment=textFieldRemaining1;
textFieldcMobilePayment=textFieldcMobile1 ;
textFieldPRemainingPayment=textFieldPRemaining1;
textFieldTRemainingPayment=textFieldTRemaining1;
textFieldCityPayment=textFieldCity1;
textFieldDatePayment=textFieldDate1;
textFieldQuantityPayment=textFieldQuantity1;
}
public void keypress(KeyEvent evt,JTextField st)
{
switch(evt.getKeyCode())
{
case KeyEvent.VK_BACK_SPACE:
break;
case KeyEvent.VK_ENTER:
st.setText(st.getText());
break;
default:
EventQueue.invokeLater(new Runnable(){
@Override
public void run()
{
try
{
String txt=st.getText();
autoComplete(txt,st);
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, "=== keypress =="+e);
}
}
});
}
}
//###############################################################################################################
public void autoComplete( String st,JTextField f)
{
String complete="";
int start=st.length();
int last=st.length();
for(int a=0;a<stockItemlist.size();a++)
{
if(stockItemlist.get(a).toString().startsWith(st))
{
complete=stockItemlist.get(a).toString();
last=complete.length();
break;
}
}
if(last>start)
{
f.setText(complete);
f.setCaretPosition(last);
f.moveCaretPosition(start);
}
}
//====================================================
//#############################################CHECKING CUSTOMER EXITS OR NOT AS WELL AS HIS PREVIOUS BILLS ##################################
public int checkCustomer(JTextField textFieldcName)
{
rcustn=0;
pcustn=0;
String query1,query2,query3;
PreparedStatement pst1,pst2,pst3;
ResultSet rs1,rs2,rs3;
accountArray();
totalPCustomers=profitcustNameList.size();
totalRCustomers=recordcustNameList.size();
while(rcustn<totalRCustomers)
{
if(textFieldcName.getText().equals(recordcustNameList.get(rcustn)))
break;
rcustn++;
}
while(pcustn<totalPCustomers)
{
if(textFieldcName.getText().equals(profitcustNameList.get(pcustn)))
break;
pcustn++;
}
try{
/*query1="select Remaining from profit where Name='"+textFieldcNameBill.getText()+"'";
pst1=connection.prepareStatement(query1);
if(custn!=totalCustomers)
{
rs1=pst1.executeQuery();
while(rs1.next())
rp=Integer.parseInt(rs1.getString(1));
}
query1="select Total from profit where Name='"+textFieldcNameBill.getText()+"'";
pst1=connection.prepareStatement(query1);
if(custn!=totalCustomers)
{
rs1=pst1.executeQuery();
while(rs1.next())
tp=Integer.parseInt(rs1.getString(1));
}
*/
if(rcustn!=totalRCustomers)
{
rp=(int)remainingList.get(pcustn);
tp=(int)totalList.get(pcustn);
pp=(int)paidList.get(pcustn);
}
else
{
rp=0;
tp=0;
pp=0;
}
if(textFieldPaidBill.getText().isEmpty())
{
pt=0;
}
else{
pt=Integer.parseInt(textFieldPaidBill.getText());
}
if(textFieldTotalBill.getText().isEmpty())
{
tt=0;
}
else{
tt=Integer.parseInt(textFieldTotalBill.getText());
}
date();
DateFormat df = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
rt=tt-pt;
textFieldRemainingBill.setText(Integer.toString(rt));
prt=rp;
trt=prt+rt;
textFieldPRemainingBill.setText(Integer.toString(prt));
textFieldDateBill.setText(df.format(Calendar.getInstance().getTime()));
textFieldTRemainingBill.setText(Integer.toString(trt));
textFieldTRemainingBill.setEditable(false);
textFieldRemainingBill.setEditable(false);
textFieldPRemainingBill.setEditable(false);
textFieldDateBill.setEditable(false);
//textFieldDateBill.setText
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, "QUANTITY");
}
if(rcustn!=totalRCustomers)
return 1;
else
return 0;
}
//############################################## MAKE LISTS OF CUSTOMER NAMES,PAID AMOUNT ,TOTAL AMOUNT AND REMAINING AMMOUNT of Customers #############################(QuantityArray)
public void accountArray()
{
String qua;
PreparedStatement pst2;
String query;
ResultSet rs2;
try{
recordcustNameList=new ArrayList();
profitcustNameList=new ArrayList();
remainingList=new ArrayList();
paidList=new ArrayList();
totalList=new ArrayList();
recordcustNameList.clear();
profitcustNameList.clear();
recordcustNameList=ItemlistArray("record");
profitcustNameList=ItemlistArray("profit");
remainingList.clear();
paidList.clear();
totalList.clear();
query="select Remaining from profit";
pst2=connection.prepareStatement(query);
rs2=pst2.executeQuery();
while(rs2.next())
{
qua=rs2.getString(1);
remainingList.add(Integer.parseInt(qua));
}
query="select paid from profit";
pst2=connection.prepareStatement(query);
rs2=pst2.executeQuery();
while(rs2.next())
{
qua=rs2.getString(1);
paidList.add(Integer.parseInt(qua));
}
query="select Total from profit";
pst2=connection.prepareStatement(query);
rs2=pst2.executeQuery();
while(rs2.next())
{
qua=rs2.getString(1);
totalList.add(Integer.parseInt(qua));
}
pst2.close();
rs2.close();
// connection.close();
}
catch(Exception R1){
JOptionPane.showMessageDialog(null,
R1, "Failure", JOptionPane.ERROR_MESSAGE);
R1.printStackTrace();
}
int s=remainingList.size();
}
//##########################################################################################################
//########################################CHECK QUANTITY OF ITEMS IN STOCK AS WELL AS IN CART##############################################################
public void quantity()
{
ic=0;
is=0;
String query1,query2,query3;
PreparedStatement pst1,pst2,pst3;
ResultSet rs1,rs2,rs3;
quantityArray();
stockSize=stockItemlist.size();
cartSize=billItemlist.size();
while(is<stockSize)
{
if(textFieldNameBill.getText().equals(stockItemlist.get(is)))
break;
is++;
}
while(ic<cartSize)
{
if(textFieldNameBill.getText().equals(billItemlist.get(ic)))
break;
ic++;
}
try{
query1="select Quantity from bill where Name='"+textFieldNameBill.getText()+"'";
pst1=connection.prepareStatement(query1);
if(ic!=cartSize)
{
rs1=pst1.executeQuery();
while(rs1.next())
qc=Integer.parseInt(rs1.getString(1));
rs1.close();
}
pst1.close();
if(textFieldQuantityBill.getText().isEmpty())
{
qt=0;
}
else{
qt=Integer.parseInt(textFieldQuantityBill.getText());
}
if(is!=stockSize)
qs=(int)quantArry.get(is);
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, "QUANTITY");
}
}
//#########################################ITEM NAMES STORE IN ARRAYLIST FUNCTION#############################################################
public ArrayList ItemlistArray(String tbl)
{
try{
temp=new ArrayList();
temp.clear();
String query="select Name from "+tbl;
//String query="select * from stock";
PreparedStatement pst=connection.prepareStatement(query);
ResultSet rs=pst.executeQuery();
while(rs.next())
{
String name=rs.getString(1);
temp.add(name);
}
pst.close();
rs.close();
// connection.close();
}
catch(Exception R1){
JOptionPane.showMessageDialog(null,
R1, "Failure", JOptionPane.ERROR_MESSAGE);
R1.printStackTrace();
}
return temp;
}
//########################################################## MAKE ARRAY LIST OF QUANTITIES ############################################
public void quantityArray()
{
try{
stockItemlist=new ArrayList();
quantArry=new ArrayList();
billItemlist=new ArrayList();
stockItemlist.clear();
stockItemlist=ItemlistArray("stock");
billItemlist.clear();
billItemlist=ItemlistArray("bill");
quantArry.clear();
String query="select Quantity from stock";
PreparedStatement pst2=connection.prepareStatement(query);
ResultSet rs2=pst2.executeQuery();
while(rs2.next())
{
String qua=rs2.getString(1);
quantArry.add(Integer.parseInt(qua));
}
pst2.close();
rs2.close();
// connection.close();
}
catch(Exception R1){
JOptionPane.showMessageDialog(null,
R1, "Failure", JOptionPane.ERROR_MESSAGE);
R1.printStackTrace();
}
}
//#########################################################################################################
}