-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGUI.java
1829 lines (1620 loc) · 81 KB
/
GUI.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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import GameHandlerPackage.*;
import SupermarketPackage.*;
import SupermarketPackage.Articles.Article;
import static GameHandlerPackage.SystemHandler.*;
import SupermarketPackage.Articles.Material;
import org.javatuples.Pair;
import org.javatuples.Triplet;
import org.reflections.Reflections;
import java.awt.*;
import java.awt.event.*;
import java.io.File;
import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.time.LocalDateTime;
import java.time.temporal.ChronoUnit;
import java.util.*;
import java.util.List;
import javax.swing.*;
import javax.swing.text.DefaultFormatterFactory;
import javax.swing.text.InternationalFormatter;
import javax.swing.text.NumberFormatter;
public class GUI {
//Erstes Panel Komponente
private JPanel panelMain;
private JTextField nameLogin;
private JLabel nameLabel;
private JLabel passwortLabel;
private JPasswordField passwortLogin;
private JButton bestätigenButton;
//Alle Panels
private JPanel Loginpanel;
private JPanel Dashboardpanel;
private JPanel Filialebetreten;
private JPanel Filiale;
private JPanel Warenkorb;
private JPanel ArtikelPanel;
private JPanel Tablet;
private JPanel TabletÜbersicht;
private JPanel TabletSelect;
private JPanel Kassen;
private JPanel Cart;
private JPanel EinkaufAbschluss;
private JPanel Gesamtwert;
private JPanel Schüpercard;
private JPanel ProduktHinzufügen;
private JPanel Employeepanel;
private JPanel Mitarbeiter;
private JPanel keineGeldNoch;
//Alle normalen Buttons
private JLabel welcomeText;
private JButton filialeBetretenButton;
private JButton tabletBenutzenButton;
private JButton schüpercardButton;
private JButton ausloggenButton;
private JButton TabletMenuName;
private JButton artikelInDenWarenkorbButton;
private JButton bestätigenButton1;
private JButton anDieKasseGehenButton;
private JButton ButtonArtikelSuchen;
private JButton TabletMenuSupermarkt;
private JButton TabletMenuArtikelSupermarkt;
private JButton backButton;
private JButton TabletMenuFiliale;
private JButton schüpercardErstellenButton;
private JButton zurückButton;
private JButton zurückButtonFiliale1;
private JButton zurückButtonWarenkorb;
private JButton zurückButtonKasse;
private JButton zurückButtonSchüpercard;
private JButton Zurück;
private JButton buttonZurückTablet;
private JButton zurückButtonSchüpperkarteErstellt;
private JButton bezahlButtonKasse;
private JButton TabletMenuTyp;
private JButton arbeitenGehenButton;
private JButton kündenButton;
private JButton regalHinzufügenButton;
private JButton produktHinzufügenButton;
private JButton eingebenButton;
private JButton erstellungAbschliessenButton;
//ButtonGroups
ButtonGroup g = new ButtonGroup();
//Radiobuttons für die Supermarktketten-Auswahl
private JRadioButton migrosRadioButton;
private JRadioButton coopRadioButton;
private JRadioButton aldiRadioButton;
//Dropdownmenü um die Artikel auszuwählen(Tablet)
private JComboBox comboBox1;
private JComboBox TabletSupermarktWählen;
private JComboBox TabletArtikelWählen;
private JComboBox TabletTypWählen;
private JComboBox TabletFilialeWählen;
//Label / Texte
private JLabel TabletSupermarktWählenLabel;
private JLabel TabletArtikelWählenLabel;
private JLabel TabletFilialeWählenLabel;
private JLabel TabletTypWählenLabel;
private JPanel SchüperkarteErstellt;
private JPanel SchüpercardNummer;
private JLabel name;
private JLabel schüpperpunkte;
private JLabel guthaben;
private JLabel ArtikelFindenOutput;
private JButton ChiefMenu;
private JPanel ChiefPanel;
private JButton HireEmployee;
private JButton mitarbeiterKündigenButton;
private JLabel labelFalsch;
public JSpinner spinnerRegal;
private JTextField chipsÄpfelUswTextField;
private JTextField a500CHFTextField;
private JTextField trueFalseTextField;
private JLabel labelFalschProdukt;
private JSpinner spinnerMenge;
private JTextField produktnameTextField;
private JComboBox comboBoxProduktart;
private JButton zurückZumMenuButton;
private JButton GetPresentEmployees;
private JButton promoteEmployeeButton;
private JLabel ChiefOutput;
private JButton employeeMenuButton;
private JButton zurückButtonHinzufügen;
private JPanel SpinnerPanelProdukte;
private JPanel FoodPanel;
private JTextField PreisTextField;
private JTextField DatumTextField;
private JComboBox comboBoxFleisch;
private JButton produktErstellenButton;
private JButton zurückButtonFleisch;
private JButton zurückButton1;
private JLabel labelFalschFleisch;
private JComboBox ChiefMenuComboBox;
private JButton ChiefMenuEnter;
private JPanel ChiefMenuActionPanel;
private JLabel ChiefMenuActionPanelLabel;
private JButton ChiefMenuALLEmployees;
private JSpinner spinnerMengeFleisch;
private JPanel BuildingMatPanel;
private JTextField produktnamenBuild;
private JTextField PreisFeld;
private JSpinner spinnerMengeMat;
private JTextField trueFalseTextBuild;
private JSpinner spinnerTonnen;
private JComboBox comboBoxMaterial;
private JButton zurückButtonMaterial;
private JButton produktErstellenBuildingMat;
private JPanel ProduktErstellt;
private JButton zurückZumMenüButton;
private JLabel labelUnkorrektFleisch;
private JLabel labelFalschBuild;
private JLabel labelInkorrektBuild;
private JPanel Arbeiten;
private JButton arbeitVerlassenButton;
private JPanel RegalHinzufügen;
private JSpinner spinnerAnzRegale;
private JButton gewählteAnzahlHinzufügenButton;
private JPanel RegaleErstellt;
private JButton zurückZumMenüButton1;
private JPanel Selfscanner;
private JPanel Entscheidung;
private JButton selfscannerButton;
private JButton normaleKasseButton;
private JPanel PreisGesamt;
private JPanel ProdukteWarenkorb;
private JPanel ProdukteGescannt;
private JButton scanButton;
private JComboBox ProdukteWarenkorbComb;
private JFormattedTextField ChiefSalaryField;
private JLabel ChiefHireSalaryLabel;
private JLabel ErrorMessageScan;
private JButton bezahlenButtonScan;
private JPanel produkteGescanntList;
private JButton auswählenButton;
private JLabel labelFalschRadio;
private JButton zurückButton2;
private JButton schüpercardMitPunktenAufladenButton;
private JTextField textFieldSchüpercard;
private JLabel labelFalschSchüp;
private JLabel labelRichtigSchüp;
private JButton convertSchüpperpointsButton;
private JPanel SpinnerPanelRegal;
private JPanel Admin;
private JButton personHinzufügenButton;
private JButton shopErstellenButton;
private JButton supermarktketteErstellenButton;
private JPanel PersonenHInzufügen;
private JTextField textFieldBenutzernamen;
private JTextField textFieldPasswort;
private JTextField textFieldPasswortRep;
private JButton benutzerHinzufügenButton;
private JPanel ShopHinzufügen;
private JTextField textFieldShopname;
private JTextField textFieldChief;
private JTextField selfCheckout;
private JTextField textFieldPlace;
private JTextField textFieldEarnings;
private JButton shopErstellenButton1;
private JButton zurückButton3;
private JPanel SupermarktketteHinzufügen;
private JTextField textFieldSupermarktkettenName;
private JButton ketteErstellenButton;
private JButton zurückButton4;
private JLabel benutzerLabelRichtig;
private JLabel benutzerLabelFalsch;
private JButton testTest;
private JComboBox comboBoxFirmaAdmin;
private JLabel labelRichtigShop;
private JLabel labelFalschShop;
private JButton changePassword;
private JPanel changePasswordPanel;
private JButton backToDashboardPw;
private JLabel passwordOutput;
private JButton changePasswordSubmit;
private JButton changePasswordButton;
private JTextField oldPassword;
private JTextField newPassword;
private JTextField repeatPassword;
private JButton resetButton;
private JLabel labelKetteRichtig;
private JLabel labelKetteFalsch;
private JButton ausloggenButtonAdmin;
private JPanel PanelRadios;
private JComboBox comboBoxBarcode;
private JComboBox comboBoxBarcodeFleisch;
private JComboBox comboBoxSelfCheckout;
private JFormattedTextField formattedTextFieldPreisFleisch;
private JFormattedTextField formattedTextFieldPreisMat;
private JLabel lohn;
private JLabel EinkommenLaden;
private JLabel ShopChief;
private JButton zurückButton5;
private JComboBox comboBoxOhneBarcode;
private JButton manuelHinzufügenButton;
private JComboBox comboBoxOrteShop;
private JComboBox comboBoxChief;
private JList gescannteProdukteList;
//Hashmap für die Produkte in einem Laden
HashMap<String, JSpinner> produkte = new HashMap<>();
String currentTabletFuntion;
float greatPrice = 0;
//Hashmap um Spinner Komponente zu speichern
HashMap<String, JSpinner> spinnerHashMap = new HashMap<>();
private int greatValue;
private final DefaultListModel model = new DefaultListModel();
public static JFrame frame = new JFrame("Yanick und Marcs Wirtschaftsspass");
LocalDateTime startWorkTime;
//Konstruktor indem alle Funktionen verwaltet werden
public GUI() {
labelKetteFalsch.setVisible(false);
labelKetteRichtig.setVisible(false);
labelFalschShop.setVisible(false);
labelRichtigShop.setVisible(false);
benutzerLabelRichtig.setVisible(false);
benutzerLabelFalsch.setVisible(false);
labelRichtigSchüp.setVisible(false);
labelFalschSchüp.setVisible(false);
labelFalschRadio.setVisible(false);
ErrorMessageScan.setVisible(false);
labelFalsch.setVisible(false);
labelUnkorrektFleisch.setVisible(false);
labelFalschBuild.setVisible(false);
labelInkorrektBuild.setVisible(false);
labelFalschFleisch.setVisible(false);
invisibler();
Loginpanel.setVisible(true);
ChiefMenu.setVisible(false);
this.bestätigenButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (SystemHandler.adminCheck(nameLogin.getText(), new String(passwortLogin.getPassword()))) {
if (SystemHandler.login(nameLogin.getText(), new String(GUI.this.passwortLogin.getPassword()))) {
invisibler();
labelFalsch.setVisible(false);
Admin.setVisible(true);
}
} else {
if (SystemHandler.login(nameLogin.getText(), new String(passwortLogin.getPassword()))) {
invisibler();
labelFalsch.setVisible(false);
Dashboardpanel.setVisible(true);
setDashboardInformation();
showSpecialButtons();
} else {
labelFalsch.setVisible(true);
}
}
}
});
//Key listener wenn das Passwort angegeben wurde und Enter gedrückt wird
passwortLogin.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == KeyEvent.VK_ENTER) {
if (SystemHandler.adminCheck(nameLogin.getText(), new String(passwortLogin.getPassword()))) {
if (SystemHandler.login(nameLogin.getText(), new String(GUI.this.passwortLogin.getPassword()))) {
invisibler();
Admin.setVisible(true);
labelFalsch.setVisible(false);
}
} else {
if (SystemHandler.login(nameLogin.getText(), new String(passwortLogin.getPassword()))) {
invisibler();
labelFalsch.setVisible(false);
Dashboardpanel.setVisible(true);
setDashboardInformation();
showSpecialButtons();
} else {
labelFalsch.setVisible(true);
}
}
}
super.keyPressed(e);
}
});
//Falls der Benutzer schon beim Benutzernamen Enter drückt, oder diesen noch ändern muss
nameLogin.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == KeyEvent.VK_ENTER) {
if (SystemHandler.adminCheck(nameLogin.getText(), new String(passwortLogin.getPassword()))) {
if (SystemHandler.login(nameLogin.getText(), new String(GUI.this.passwortLogin.getPassword()))) {
invisibler();
Admin.setVisible(true);
labelFalsch.setVisible(false);
}
} else {
if (SystemHandler.login(nameLogin.getText(), new String(passwortLogin.getPassword()))) {
invisibler();
labelFalsch.setVisible(false);
Dashboardpanel.setVisible(true);
setDashboardInformation();
showSpecialButtons();
} else {
labelFalsch.setVisible(true);
}
}
}
super.keyPressed(e);
}
});
//Der Kunde betritt die Filiale
//Nun hat der Kunde die Wahl in welcher Filiale er einkaufen gehen will
filialeBetretenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (getSelectedUser().getMoney() > 0) {
invisibler();
PanelRadios.removeAll();
for (String key : SystemHandler.getSupermarketChainMap().keySet()) {
JRadioButton radioButtonNew = new JRadioButton(key);
radioButtonNew.setFont(new Font("Serif", Font.PLAIN, 26));
g.add(radioButtonNew);
PanelRadios.add(radioButtonNew);
}
Filialebetreten.setVisible(true);
} else {
invisibler();
keineGeldNoch.setVisible(true);
}
}
});
tabletBenutzenButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//Hier gehts in den Aldi
invisibler();
Tablet.setVisible(true);
TabletÜbersicht.setVisible(true);
}
});
//Mit diesem Button fügt der Benutzer die Artikel in den Warenkorb ein
artikelInDenWarenkorbButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
for (String key : spinnerHashMap.keySet()) {
if ((Integer) spinnerHashMap.get(key).getValue() != 0) {
for (int key2 : SystemHandler.getSupermarketChainMap().get(getCurrentCompany()).getShopMap().get(getCurrentShop()).getShelfList().keySet()) {
for (Pair<Article, Integer> key3Pair : SystemHandler.getSupermarketChainMap().get(getCurrentCompany()).getShopMap().get(getCurrentShop()).getShelfList().get(key2).getArticleList().values()) {
Article key3 = key3Pair.getValue0();
if (key3.getName().equals(key)) {
getSelectedUser().getCart().addArticle(new Pair<>(SystemHandler.getSupermarketChainMap().get(getCurrentCompany()).getShopMap().get(getCurrentShop()).getShelfList().get(key2).getArticleList().get(key3.getName()).getValue0(), (Integer) spinnerHashMap.get(key).getValue()));
SystemHandler.getSupermarketChainMap().get(getCurrentCompany()).getShopMap().get(getCurrentShop()).getShelfList().get(key2).takeArticle(key, (Integer) spinnerHashMap.get(key).getValue());
greatValue += SystemHandler.getSupermarketChainMap().get(getCurrentCompany()).getShopMap().get(getCurrentShop()).getShelfList().get(key2).getArticleList().get(key3.getName()).getValue0().getPrice() * (Integer) spinnerHashMap.get(key).getValue();
}
}
}
}
}
generateProducts(getCurrentShop());
Gesamtwert.removeAll();
Gesamtwert.repaint();
Gesamtwert.revalidate();
JLabel labelNew = new JLabel("Insgesamt: " + greatValue + "CHF");
labelNew.setFont(new Font("Serif", Font.PLAIN, 30));
Gesamtwert.add(labelNew);
}
});
/*Der anDieKasseGehenButton ist ein äusserst komplizierter Button. Er ist kaum nachvollziehbar
* der Kunde wird gezwungen zu zahlen bar. Zahlt er mit Karte, landet er im Garte*/
anDieKasseGehenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
showPrice();
Entscheidung.setVisible(true);
}
});
//Dieser Button bestätigt die ausgewählte Filiale
bestätigenButton1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
setCurrentShop(comboBox1.getSelectedItem().toString());
generateProducts(comboBox1.getSelectedItem().toString());
invisibler();
Warenkorb.setVisible(true);
}
});
bezahlButtonKasse.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
getSelectedUser().getCart().getArticleList().clear();
EinkaufAbschluss.setVisible(true);
}
});
backButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
getSelectedUser().getCart().getArticleList().clear();
Cart.removeAll();
getSelectedUser().decreaseMoney(greatValue);
getSupermarketChainMap().get(getCurrentCompany()).getShopMap().get(getCurrentShop()).increaseEarnings(greatValue);
System.out.println(getSupermarketChainMap().get(getCurrentCompany()).getShopMap().get(getCurrentShop()).getEarnings());
invisibler();
greatValue = 0;
labelRichtigSchüp.setVisible(false);
labelFalschSchüp.setVisible(false);
schüpercardMitPunktenAufladenButton.setVisible(true);
Dashboardpanel.setVisible(true);
}
});
//Tablet start
TabletMenuSupermarkt.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
currentTabletFuntion = "supermarket";
fillDropdownWithSupermarkets(TabletSupermarktWählen);
TabletÜbersicht.setVisible(false);
TabletSelect.setVisible(true);
TabletSupermarktWählen.setVisible(true);
TabletSupermarktWählenLabel.setVisible(true);
TabletArtikelWählen.setVisible(true);
TabletArtikelWählenLabel.setVisible(true);
TabletFilialeWählen.setVisible(false);
TabletFilialeWählenLabel.setVisible(false);
TabletTypWählen.setVisible(false);
TabletTypWählenLabel.setVisible(false);
}
});
TabletMenuTyp.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
currentTabletFuntion = "typ";
fillDropdownWithArticlesByType(TabletTypWählen);
TabletÜbersicht.setVisible(false);
TabletSelect.setVisible(true);
TabletTypWählen.setVisible(true);
TabletTypWählenLabel.setVisible(true);
TabletSupermarktWählen.setVisible(false);
TabletSupermarktWählenLabel.setVisible(false);
TabletFilialeWählen.setVisible(false);
TabletFilialeWählenLabel.setVisible(false);
TabletArtikelWählen.setVisible(false);
TabletArtikelWählenLabel.setVisible(false);
}
});
TabletMenuFiliale.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
currentTabletFuntion = "shop";
fillDropdownWithSupermarkets(TabletSupermarktWählen);
fillDropdownWithShops((String) TabletSupermarktWählen.getSelectedItem(), TabletFilialeWählen);
fillDropdownWithArticlesFromSupermarketFromShop((String) TabletSupermarktWählen.getSelectedItem(), (String) TabletFilialeWählen.getSelectedItem(), TabletArtikelWählen);
TabletÜbersicht.setVisible(false);
TabletSelect.setVisible(true);
TabletSupermarktWählen.setVisible(true);
TabletSupermarktWählenLabel.setVisible(true);
TabletArtikelWählen.setVisible(true);
TabletArtikelWählenLabel.setVisible(true);
TabletFilialeWählen.setVisible(true);
TabletFilialeWählenLabel.setVisible(true);
TabletTypWählen.setVisible(false);
TabletTypWählenLabel.setVisible(false);
}
});
TabletMenuName.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
currentTabletFuntion = "name";
fillDropdownWithAllArticles(TabletArtikelWählen);
TabletÜbersicht.setVisible(false);
TabletSelect.setVisible(true);
TabletSupermarktWählen.setVisible(false);
TabletSupermarktWählenLabel.setVisible(false);
TabletArtikelWählen.setVisible(true);
TabletArtikelWählenLabel.setVisible(true);
TabletFilialeWählen.setVisible(false);
TabletFilialeWählenLabel.setVisible(false);
TabletTypWählen.setVisible(false);
TabletTypWählenLabel.setVisible(false);
}
});
TabletSupermarktWählen.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (TabletSupermarktWählen.getItemCount() > 0) {
String supermarket = (String) TabletSupermarktWählen.getSelectedItem();
fillDropdownWithArticlesFromSupermarket(supermarket, TabletArtikelWählen);
}
}
});
TabletTypWählen.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
currentTabletFuntion = "typ";
TabletÜbersicht.setVisible(false);
TabletSelect.setVisible(true);
TabletSupermarktWählen.setVisible(false);
TabletSupermarktWählenLabel.setVisible(false);
TabletArtikelWählen.setVisible(false);
TabletArtikelWählenLabel.setVisible(false);
TabletFilialeWählen.setVisible(false);
TabletFilialeWählenLabel.setVisible(false);
TabletTypWählen.setVisible(true);
TabletTypWählenLabel.setVisible(true);
fillDropdownWithArticlesByType(TabletTypWählen);
}
});
TabletFilialeWählen.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String supermarket = (String) TabletSupermarktWählen.getSelectedItem();
String shopName = (String) TabletFilialeWählen.getSelectedItem();
TabletArtikelWählen.removeAllItems();
if (currentTabletFuntion.equals("shop") && shopName != null) {
fillDropdownWithArticlesFromSupermarketFromShop(supermarket, shopName, TabletArtikelWählen);
}
}
});
ButtonArtikelSuchen.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
SupermarketPackage.Tablet Tablet1 = new Tablet();
switch (currentTabletFuntion) {
case "supermarket": {
String supermarketName = (String) TabletSupermarktWählen.getSelectedItem();
String articleName = (String) TabletArtikelWählen.getSelectedItem();
List<Triplet<Shop, Article, Integer>> articleInSystemList = Tablet1.findArticleInSystem(articleName, supermarketName);
StringBuilder output = new StringBuilder();
output.append("<html>");
for (Triplet<Shop, Article, Integer> t : articleInSystemList) {
String shopName = t.getValue0().getName();
int amount = t.getValue2();
int shelfId = Tablet1.findArticle(articleName, shopName, supermarketName);
output.append("In der Filiale ").append(shopName).append(" ist das Produkt ").append(articleName).append(" ").append(amount).append("x im Regal ").append(shelfId).append(" vorhanden <br/>");
}
ArtikelFindenOutput.setText(output.append("</html>").toString());
break;
}
case "typ": {
String typ = (String) TabletTypWählen.getSelectedItem();
StringBuilder output = new StringBuilder();
output.append("<html>");
for (SupermarketChain supermarket : SystemHandler.getSupermarketChainMap().values()) {
for (Shop shop : supermarket.getShopMap().values()) {
for (Shelf shelf : shop.getShelfList().values())
for (Pair<Article, Integer> articlePair : shelf.getArticleList().values()) {
if (articlePair.getValue0().getClass().getSimpleName().equals(typ)) {
output.append("Im Supermarkt ").append(supermarket.getName()).append(" hat es in der Filiale ").append(shop.getName()).append(" das Produkt ").append(articlePair.getValue0().getName()).append(" ").append(articlePair.getValue1()).append("x im Regal ").append(shelf.getID()).append("<br/>");
}
}
}
}
ArtikelFindenOutput.setText(output.append("</html>").toString());
break;
}
case "shop": {
String supermarketName = (String) TabletSupermarktWählen.getSelectedItem();
String shopName = (String) TabletFilialeWählen.getSelectedItem();
String articleName = (String) TabletArtikelWählen.getSelectedItem();
List<Triplet<Shop, Article, Integer>> articleInSystemList = Tablet1.findArticleInShop(articleName, shopName, supermarketName);
StringBuilder output = new StringBuilder();
output.append("<html>");
for (Triplet<Shop, Article, Integer> t : articleInSystemList) {
int amount = t.getValue2();
int shelfId = Tablet1.findArticle(articleName, shopName, supermarketName);
output.append("In der Filiale ").append(shopName).append(" ist das Produkt ").append(articleName).append(" ").append(amount).append("x im Regal ").append(shelfId).append(" vorhanden <br/>");
}
ArtikelFindenOutput.setText(output.append("</html>").toString());
break;
}
case "name": {
String articleName = (String) TabletArtikelWählen.getSelectedItem();
StringBuilder output = new StringBuilder();
output.append("<html>");
for (SupermarketChain supermarket : SystemHandler.getSupermarketChainMap().values()) {
for (Shop shop : supermarket.getShopMap().values()) {
for (Shelf shelf : shop.getShelfList().values()) {
for (Pair<Article, Integer> pair : shelf.getArticleList().values()) {
assert articleName != null;
if (articleName.equals(pair.getValue0().getName())) {
output.append("Im Supermarkt ").append(supermarket.getName()).append(" hat es in der Filiale ").append(shop.getName()).append(" das Produkt ").append(pair.getValue0().getName()).append(" ").append(pair.getValue1()).append("x im Regal ").append(shelf.getID()).append("<br/>");
}
}
}
}
}
ArtikelFindenOutput.setText(output.append("</html>").toString());
break;
}
}
}
});
//Tablet ende
schüpercardButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(getSelectedUser().getCard() == null){
convertSchüpperpointsButton.setVisible(false);
}else{
convertSchüpperpointsButton.setVisible(true);
}
invisibler();
Schüpercard.setVisible(true);
}
});
ausloggenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Loginpanel.setVisible(true);
labelFalsch.setVisible(false);
nameLogin.setText("");
passwortLogin.setText("");
SystemHandler.logout();
}
});
//Alle Zurückbuttons welche wir brauchen um das Programm dynamisch zu gestalten
zurückButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Dashboardpanel.setVisible(true);
}
});
zurückButtonFiliale1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Filialebetreten.setVisible(true);
}
});
zurückButtonKasse.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Warenkorb.setVisible(true);
}
});
zurückButtonWarenkorb.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Shop shop = getSupermarketChainMap().get(getSupermarketChainMap().get(getSelectedUser().getCurrentCompanyWork().getName()).getName()).getShopMap().get(getSelectedUser().getCurrentShopWork().getName());
for (Pair<Article, Integer> v : getSelectedUser().getCart().getArticleList().values()) {
int shelfId = shop.getArticlePositionList().get(v.getValue0().getName());
boolean barcode = v.getValue0().isBarcode();
String articleType = v.getValue0().getArticleType();
if(articleType.equals("Food")){
shop.getSupermarketChain().getShopMap().get(shop.getName()).getShelfById(shelfId).increaseArticleAmountFood(v.getValue0().getName(), v.getValue1());
}else if (articleType.equals("BuildingMaterial")){
shop.getSupermarketChain().getShopMap().get(shop.getName()).getShelfById(shelfId).increaseArticleAmountBuildingMaterial(v.getValue0().getName(), v.getValue1());
}
}
getSelectedUser().getCart().setFullPrice(0);
getSelectedUser().getCart().getArticleList().clear();
invisibler();
Cart.removeAll();
Filiale.setVisible(true);
}
});
zurückButtonSchüpercard.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Dashboardpanel.setVisible(true);
}
});
Zurück.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Dashboardpanel.setVisible(true);
}
});
buttonZurückTablet.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
ArtikelFindenOutput.setText("");
invisibler();
Tablet.setVisible(true);
TabletÜbersicht.setVisible(true);
}
});
schüpercardErstellenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
SchüpercardNummer.removeAll();
getSelectedUser().addSchüppercard();
JLabel labelNew = new JLabel("Ihre Schüpercardnummer: " + getSelectedUser().getCard().getCardnumber());
labelNew.setFont(new Font("Serif", Font.PLAIN, 26));
labelNew.setHorizontalAlignment(SwingConstants.CENTER);
SchüpercardNummer.repaint();
SchüpercardNummer.revalidate();
schüpercardErstellenButton.setVisible(false);
invisibler();
SchüpercardNummer.add(labelNew);
SchüperkarteErstellt.setVisible(true);
showSpecialButtons();
}
});
zurückButtonSchüpperkarteErstellt.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Dashboardpanel.setVisible(true);
}
});
arbeitenGehenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Mitarbeiter.setVisible(true);
startWorkTime = DigitalClock.SimpleDigitalClock.realTime;
}
});
regalHinzufügenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
SpinnerModel sm = new SpinnerNumberModel(1, 1, Integer.MAX_VALUE, 1);
spinnerAnzRegale = new JSpinner(sm);
Component mySpinnerEditor = spinnerAnzRegale.getEditor();
JFormattedTextField jftf = ((JSpinner.DefaultEditor) mySpinnerEditor).getTextField();
jftf.setColumns(25);
spinnerAnzRegale.setFont(new Font("Serif", Font.PLAIN, 22));
SpinnerPanelRegal.add(spinnerAnzRegale);
RegalHinzufügen.setVisible(true);
}
});
produktHinzufügenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
comboBoxProduktart.removeAllItems();
invisibler();
fillDropdownWithArticlesByType(comboBoxProduktart);
System.out.println(getSelectedUser().getCurrentShopWork().getShelfList().size());
SpinnerModel sm = new SpinnerNumberModel(1, 1, getSupermarketChainMap().get(getSupermarketChainMap().get(getSelectedUser().getCurrentCompanyWork().getName()).getName()).getShopMap().get(getSelectedUser().getCurrentShopWork().getName()).getShelfList().size(), 1);
spinnerRegal = new JSpinner(sm);
spinnerRegal.setFont(new Font("Serif", Font.PLAIN, 22));
Dimension dimension = new Dimension(800, 35);
SpinnerPanelProdukte.removeAll();
spinnerRegal.setPreferredSize(dimension);
SpinnerPanelProdukte.add(spinnerRegal);
ProduktHinzufügen.setVisible(true);
ProduktHinzufügen.repaint();
ProduktHinzufügen.revalidate();
}
});
eingebenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
fillDropdownsTrueFalsePro();
if (comboBoxProduktart.getSelectedItem().equals("Food")) {
Arrays.asList(Fleischsorten.values())
.forEach(fleisch -> comboBoxFleisch.addItem(fleisch));
invisibler();
FoodPanel.setVisible(true);
} else if (comboBoxProduktart.getSelectedItem().equals("BuildingMaterial")) {
Arrays.asList(Material.values())
.forEach(material -> comboBoxMaterial.addItem(material));
invisibler();
BuildingMatPanel.setVisible(true);
} else {
System.out.println("Siuuur");
}
//Preisfelder formatieren
NumberFormat format = DecimalFormat.getInstance();
format.setMinimumFractionDigits(2);
format.setMaximumFractionDigits(2);
format.setRoundingMode(RoundingMode.HALF_UP);
InternationalFormatter formatter = new InternationalFormatter(format);
formatter.setAllowsInvalid(false);
formatter.setMinimum(0.0);
formatter.setMaximum(1000.00);
DefaultFormatterFactory factory = new DefaultFormatterFactory(formatter);
formattedTextFieldPreisFleisch.setFormatterFactory(factory);
formattedTextFieldPreisMat.setFormatterFactory(factory);
//Spinnermodel mit spinnern
SpinnerModel sm = new SpinnerNumberModel(1, 1, Integer.MAX_VALUE, 1);
spinnerMengeFleisch.setModel(sm);
spinnerMengeMat.setModel(sm);
spinnerTonnen.setModel(sm);
}
});
ChiefMenu.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
ChiefPanel.setVisible(true);
ChiefMenuActionPanel.setVisible(false);
ChiefSalaryField.setVisible(false);
ChiefHireSalaryLabel.setVisible(false);
}
});
GetPresentEmployees.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
ChiefOutput.setVisible(true);
ChiefMenuActionPanel.setVisible(false);
ChiefOutput.setText("<html>");
Shop shop = getSupermarketChainMap().get(getSupermarketChainMap().get(getSelectedUser().getCurrentCompanyWork().getName()).getName()).getShopMap().get(getSelectedUser().getCurrentShopWork().getName());
ChiefHireSalaryLabel.setVisible(false);
ChiefSalaryField.setVisible(false);
for (String p : shop.getPresentEmployees().keySet()) {
ChiefOutput.setText(ChiefOutput.getText() + p + "<br/>");
}
ChiefOutput.setText(ChiefOutput.getText() + "</html>");
}
});
zurückButtonHinzufügen.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
invisibler();
Mitarbeiter.setVisible(true);
}
});
zurückButtonFleisch.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
clearDropdownsTrueFalsePro();
invisibler();
ProduktHinzufügen.setVisible(true);
}
});
produktErstellenButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (produktnameTextField.getText().equals("") || formattedTextFieldPreisFleisch.getText().equals("")
|| comboBoxBarcodeFleisch.getSelectedItem().equals("") || DatumTextField.getText().equals("") ||
comboBoxFleisch.getSelectedItem() == null) {
labelFalschFleisch.setVisible(true);
} else {
try {
String produktname = produktnameTextField.getText();
float preis = Float.parseFloat(formattedTextFieldPreisFleisch.getText());
boolean barcode = Boolean.parseBoolean(comboBoxBarcodeFleisch.getSelectedItem().toString());
Fleischsorten fleisch = Fleischsorten.valueOf(comboBoxFleisch.getSelectedItem().toString());
String date = DatumTextField.getText();
SupermarketHandler.createFood(produktname, preis, (Integer) spinnerMengeFleisch.getValue(), barcode, date,
getSelectedUser().getCurrentShopWork().getName(), getSupermarketChainMap().get(getSelectedUser().getCurrentCompanyWork().getName()).getName(), (Integer) spinnerRegal.getValue(), fleisch);
invisibler();
ProduktErstellt.setVisible(true);
clearDropdownsTrueFalsePro();
labelFalschFleisch.setVisible(false);
} catch (Exception a) {
labelUnkorrektFleisch.setVisible(true);
}
}
}
});
HireEmployee.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
ChiefOutput.setVisible(false);