-
Notifications
You must be signed in to change notification settings - Fork 7
/
commit.log
6769 lines (4573 loc) · 227 KB
/
commit.log
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
commit 1c0ded2dfe0d2bb2049fe499dbb64566fd5ba743
Merge: eaa52a91 61750fac
Author: Amanda-Kolopa <[email protected]>
Date: Fri Jan 29 21:23:10 2021 -0500
Merge pull request #213 from Fruity-Loops/refactor_create_edit
Refactor create edit
commit 61750fac52c90ddd8d637820bbc5026192968b3b
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 20:14:12 2021 -0500
fix: disable save button when invalid form
commit 166608a83b14ba01fb0355a3c76c01d2a6ce8497
Merge: f0f9c84c eaa52a91
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 18:34:49 2021 -0500
Merge branch 'master' into refactor_create_edit
commit f0f9c84c92583615acfb285359192a9a1002ac1e
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 18:32:48 2021 -0500
refactor: removing dead dialog component
commit 70c4ad9041035f0a6e1c363b8d1e611a544ae830
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 18:26:29 2021 -0500
fix: bad settings format in manage organizations table
commit ba9323b664474445e56dc3898a54606027d10973
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 17:34:50 2021 -0500
fix: Disable add button on template when not editing
commit 336add201be93364ff2467c959bae2332669aba6
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 16:26:19 2021 -0500
feat: add template method to handle empty org name
commit c1308e96951fc6c65b4433895f958f7590d41126
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 16:09:26 2021 -0500
chore: Removing logging statements
commit eaa52a91a0bc19e3bb9ee803fac28f056ecff870
Author: makchamp <[email protected]>
Date: Fri Jan 29 14:59:17 2021 -0500
fix: Fix special case url not matching for 'modify-members' inside system admin view
'/modify-members' is the url even when in 'sa-modify-members', Handeling the special condition
commit a4c50fc06906c8bf715a753bd12033cdb9391dad
Author: makchamp <[email protected]>
Date: Tue Jan 26 01:10:47 2021 -0500
fix: Link assign and designate sk pages to the app routing chain
We use the url to match the side nav elements and these pages we're linked to any parent so no match was happening
These pages are now linked to the audits parent URL > audits/assing-sk/designate-sk/
The Audit nav item now reroutes to the Inventory items page temporarily
commit 770d3a9b954e5c9a0e94b18464458f690a2db6f7
Author: makchamp <[email protected]>
Date: Mon Jan 25 23:31:48 2021 -0500
fix: Fix sidenav highlighting bug
Incorrect condition + bad types when in create members page
commit 28a583303b70c80c5668edde04bb07bdf835d03b
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 01:13:44 2021 -0500
Fix: potential missing id bug identified by sonar cloud
commit f4f6b33d306e6daba22f31ede34a663a2e6804fd
Merge: f47dbf48 477a9590
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 29 00:45:06 2021 -0500
Merge branch 'master' into refactor_create_edit
commit 477a959067584ec0060c8ee2328a500eeb536d6e
Merge: 836f3492 a1db7cb7
Author: Averynder <[email protected]>
Date: Thu Jan 28 20:16:22 2021 -0500
Merge pull request #208 from Fruity-Loops/refactorsprint5
Strict Configuration Refactoring
commit a1db7cb715d44c4c9d5f1659448fbaeae52a8b91
Author: Dominik Ludera <[email protected]>
Date: Thu Jan 28 20:09:56 2021 -0500
refactor: e2e refactoring strict
commit 4a7ba55fda97002c4d936aa28fd232e60b590368
Author: Dominik Ludera <[email protected]>
Date: Thu Jan 28 19:59:23 2021 -0500
refactor: added ts-ignore to e2e test
commit 382f2572430ce2687eb04c7f146cec47a0863080
Author: Dominik Ludera <[email protected]>
Date: Thu Jan 28 19:34:19 2021 -0500
lint: adding semicolon
commit f57d43a2e7eee4d3bb16d6ab00b34ca970360635
Author: Dominik Ludera <[email protected]>
Date: Thu Jan 28 19:21:25 2021 -0500
refactor: linting + added ts-ignore to spec var
commit 01769606c6537305921a11d092d4add892354cd8
Author: Dominik Ludera <[email protected]>
Date: Thu Jan 28 19:15:33 2021 -0500
refactor: added ts-ignore on spec variables
commit 938e344324889a73ef2a4dc4dfc7e03bfcede5db
Author: Dominik Ludera <[email protected]>
Date: Thu Jan 28 19:10:37 2021 -0500
refactor: refactored code such that it complies with strict configuration
commit 495399a9d16b45f6bb4ce9877b16daee2a786a20
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 24 13:22:49 2021 -0500
refactor: remove console log
commit 95eacf4909668b4736228d2b9125190d6a1db036
Author: Neeham <[email protected]>
Date: Mon Jan 18 20:40:02 2021 -0500
fix: following strict mode for unassigned variable
commit 31f99032f211fdc553864fc3ed002c665cceec19
Author: Neeham <[email protected]>
Date: Mon Jan 18 20:10:55 2021 -0500
refactor: remove/fix unused import variable, duplication, incorrect type
commit a764df7e78cc27185d645b3c9531d42c5f3f7a4e
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 11:48:38 2021 -0500
typedef-whitespace expected nospace before colon in property-declaration
commit f271375a56710988efe4c1f97c2d9d1fc575cacd
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 11:43:58 2021 -0500
lint: code linting
commit 145975d0fc00d403018a06e0b746eb9bf9707b35
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 11:38:49 2021 -0500
lint: code linting
commit 1c34db5e2c76558f3977123cd6f768a35d9c98b8
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 11:25:05 2021 -0500
lint: ts-ignore comment linting
commit d79f008bb73dbb7476e010f8fa57cf1a9c83bf54
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 10:55:43 2021 -0500
fix: added ts-ignore for testing vars
commit b6916f41d6d0d4299f1919754a3571fefe671566
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 10:52:46 2021 -0500
fix: added ts-ignore for testing vars
commit add610b1b037cfd7cb61bc7cbb471965aa55b254
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 10:38:46 2021 -0500
refactor: added TODO comments
commit 751b28ed73cebe5150b0dd8c89be62b2c2569566
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 10:34:31 2021 -0500
refactor: added explicit mem var type
commit 2df44b787478e8f9b281fe4f0a5f22c2de0ed863
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 10:19:07 2021 -0500
refactor: defined mem var types explicitly
commit 2ac5f4f1f0cd42b5d7a73490d01654fec6dbb192
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 10:04:14 2021 -0500
refactor: added null type guard
commit 4966052d0a1af573eb2227bc840012b5ff2feb13
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 10:00:45 2021 -0500
refactor: refactored mem vars types and default init
commit 3350817fdb2d156f26124020d8ba7c7db545b23a
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 08:54:15 2021 -0500
refact: extract functionality to method to provide fail safe if null
commit fc8e3bdbc8970f5e552cc18ca49e7f3869b89a71
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 08:42:16 2021 -0500
refactor: added default init for ir
commit e8dfa0cccac317fbdf73872b4625bf10d7cb2f0f
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 08:36:26 2021 -0500
refact: default intialization and left refact comments
commit 833f9032c6904abb749ed4e689419caca3ec699a
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 08:22:33 2021 -0500
refactor: defined explicit types for URL params
commit aae77d2d2c6226f4a73247a560cbe2d5618f2fa8
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 08:20:03 2021 -0500
refactor: changed type from any to object
commit 9892514e5a535c06d840ae0e8a074072f166c38e
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 08:16:52 2021 -0500
refactor: defined default init for member variables
commit 1e967436b7833fb89bfae8c470859a8a88bda180
Author: Dominik Ludera <[email protected]>
Date: Sun Jan 17 07:21:47 2021 -0500
refact: extracted orgId setting to method to avoid duplication and introduce type guard
commit 158a185879542760468945e9a74172ba15c59c29
Author: Dominik Ludera <[email protected]>
Date: Fri Jan 15 07:26:20 2021 -0500
fix: changed errorMessage instantiation and removed default constructor attribute
commit fe61d2bc726eeacf26e6a6908f8f36515d908b33
Author: Dominik Ludera <[email protected]>
Date: Fri Jan 15 07:17:55 2021 -0500
refactor: added default initializer in constructor, and specified var types
commit 90ef7035d1e764671b42931187616867c651860c
Author: Dominik Ludera <[email protected]>
Date: Fri Jan 15 07:13:06 2021 -0500
refactor: added default initializers in constructor
commit 3083da098e58580501e7677e891dd09fe0798093
Author: Dominik Ludera <[email protected]>
Date: Fri Jan 15 07:01:20 2021 -0500
refactor: fixed implicit types and left comment for error prone code when intializingForm
commit bb29bd434cdb31ed447e46d3e63ce79bd1417fe4
Author: Dominik Ludera <[email protected]>
Date: Fri Jan 15 06:22:37 2021 -0500
refactor: sidenavListrings settings is unused, flag as possible deadcode
commit 571952384b82cc720dfa2d6555cec25bcee6a399
Author: Dominik Ludera <[email protected]>
Date: Fri Jan 15 06:19:58 2021 -0500
refactor: refactor sidenav component according to ts strict mode
commit d032e3188c33da39b6f5946f0df83aeef5eebd1d
Author: Dominik Ludera <[email protected]>
Date: Fri Jan 15 05:55:23 2021 -0500
refactor: refactor toolbar component according to ts strict config
commit 836f34920820b5240f50ed4349d320b93d732f4d
Merge: 6c72472f 86d17c86
Author: Amanda-Kolopa <[email protected]>
Date: Thu Jan 28 15:47:10 2021 -0500
Merge pull request #234 from Fruity-Loops/stock_keepers_test_update
Issue #53 - fixed failing tests
commit 6c72472f51177e875dff2e47e9eadd0881f5fafc
Merge: dc279d94 d210668e
Author: Amanda-Kolopa <[email protected]>
Date: Thu Jan 28 11:14:29 2021 -0500
Merge pull request #210 from Fruity-Loops/e2e_test_update
Epics 1 and 2 UI tested
commit 86d17c86d5ee967185d12d1469715960bc2f0a32
Author: Avery <[email protected]>
Date: Wed Jan 27 18:32:10 2021 -0500
test: fixed component creation
peviously the tests were created incorrectly causing a failure, however when running multiple tests the incorrect test is specified. This fixes it by having all the components created properly
commit d210668e212b2b1a688f72e74d3adc84c30fa0c2
Author: Avery <[email protected]>
Date: Wed Jan 27 15:11:34 2021 -0500
refactor: linting e2e tests
commit 0843a4b9c06136d393dac37612a5a9c6bc8c4151
Author: Amanda-Kolopa <[email protected]>
Date: Wed Jan 27 10:02:11 2021 -0500
fix: added sleep statements to stop failing tests
commit dc279d94caf5aa77881b25f7e37a342f71f3fa36
Merge: 33e495b3 dd288f0a
Author: Nicholas Nagy <[email protected]>
Date: Mon Jan 25 14:41:56 2021 -0500
Merge pull request #209 from Fruity-Loops/US3.5
[ALTA-3.5] Assign stock-keepers to an audit
commit dd288f0ae5b9f82218fdb8d158b7778a47cd543d
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 25 07:48:16 2021 -0500
refactor: fixed the forgotten lint issues
commit 3736bba3c055be8b530c2e1f316c6d697b24b8e7
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 25 07:45:15 2021 -0500
refactor: fixed lint issues
commit d2179132606224c105b491af3182e4c5f7d727df
Author: Amanda-Kolopa <[email protected]>
Date: Sun Jan 24 20:19:58 2021 -0500
fix: removed unused service variable
commit b85c23c696420dfdf455a49a7a53d0bad125c514
Merge: a78176e6 33e495b3
Author: Amanda-Kolopa <[email protected]>
Date: Sun Jan 24 20:10:43 2021 -0500
Merge branch 'master' into US3.5
commit a78176e6c81a3dc6c213518c60efe170ef0238f2
Author: Amanda-Kolopa <[email protected]>
Date: Sun Jan 24 19:14:57 2021 -0500
Merge branch 'master' into US3.5
commit 52acf51a97e9ac166f4341e508468b2a94ec7afb
Author: Amanda-Kolopa <[email protected]>
Date: Sun Jan 24 19:10:49 2021 -0500
refactor: set service variable from let to const
commit c775af877c00b57bac5fb5364bc57346b2c1235e
Author: Amanda-Kolopa <[email protected]>
Date: Sun Jan 24 11:23:59 2021 -0500
refactor: fixed remaining sonarcloud issues and added comments to submitPreAuditData()
commit 0ddc3928456043c7632fd5a99c66e4a52829de03
Author: Amanda-Kolopa <[email protected]>
Date: Sun Jan 24 10:31:41 2021 -0500
refactor: fixed lint, pylint, sonarcloud issues
fix: audit serializer didn't add selected inventory items randomly; reverted to previous code (to review)
commit f47dbf487e4adb9f318606d066fb0e30113b2ea9
Author: Nicholas Nagy <[email protected]>
Date: Sun Jan 24 00:13:05 2021 -0500
fix: ng linting errors
commit 78085c60a4557052c0d195d8562b0fd88ddfff5f
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 23:17:56 2021 -0500
refactor: pull up submitForm & add template submitQuery
commit f5d51f05bc594ea9b29e22f14bcd736c2b9c52d3
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 23:07:29 2021 -0500
fix: bug where all users were created as admins
commit 18d93e2da88922c11e737d2cc17b28223d38de46
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 23:01:19 2021 -0500
test: updated fixtures and audit tests to match
commit b38b5add213930dac6c2b62ce92faa152a5b249f
Author: Avery <[email protected]>
Date: Sat Jan 23 22:22:32 2021 -0500
revert: original serializes back
The reason for the revert although the previous code was working is a django limitation was encountered. In order to have a many to may relationship, the models must be declared within the Class and are not available to set at run time / dynamically. If this is attempted, the many to many relationship is lost and only the linking foreign key is returned.
commit 477c45b2bfcfbb7e8c1619ac9cac1d465fa5934b
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 22:04:42 2021 -0500
refactor: pull up field errorMessage
Since this field is needed to be used in the HTML by both components, it might be a good idea to bring it up
commit de7d78fe2f72cdd5cd862b67f80536643203b59c
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 21:57:13 2021 -0500
refactor: pull up isEdit and add template for initialization
commit 96ce37bf13b67104871d9462bb2d375c7ca2396e
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 21:45:33 2021 -0500
refactor: pull up field loaded to be used between edit/create
commit 55d05fd8a7b5d4477560e13a5ac67613e9f9865e
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 21:37:11 2021 -0500
fix: errors raised on create employee
commit 02b7642a141822f5f41d0ca412b54c5fdcbbc8a5
Author: Avery <[email protected]>
Date: Sat Jan 23 21:30:51 2021 -0500
fix: fixed logic
also updated fixtures
commit bee7e895afad5e5080a61f3f6e30198006c2f57a
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 21:36:14 2021 -0500
fix: updated fixtures
commit aa76c2de4a8257142ce1a8d1ea97af29ec889584
Merge: 5abb9079 d425d4f2
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 21:27:58 2021 -0500
Merge remote-tracking branch 'origin/US3.5' into US3.5
commit 7ba6b619ed12095181d6ca127b333b860a690b1d
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 21:17:07 2021 -0500
refactor: remove dead code in employee-view components
removing commented out scss, inlining the border element in the scss file of the mat button
deleting unused variables in the edit and create employee components
commit 5abb90791b213fabcbc2849f5e49c1fbd8c56e18
Merge: 3b085ffe 4f051e02
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 21:12:26 2021 -0500
Merge remote-tracking branch 'origin/US3.5' into US3.5
commit d425d4f225e4ef8cc8697c79420404e7b78d2160
Author: Avery <[email protected]>
Date: Sat Jan 23 20:59:11 2021 -0500
test: added list test
commit 3b085ffed06ded53923f0720abb0cfda1b821691
Merge: fc3938d0 cb2d3df2
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 20:55:16 2021 -0500
Merge remote-tracking branch 'origin/US3.5' into US3.5
commit fc3938d030f35963fbdd45e2f39bafa7986db05e
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 20:55:00 2021 -0500
feat: updated UI for availability column
commit 4f051e02eca4808d616fb6c8bef5cc639e8380be
Author: Avery <[email protected]>
Date: Sat Jan 23 20:43:34 2021 -0500
fix: missing information needed for front end
commit cb2d3df298f5e61faf8a86483b4b504b555bbdf7
Author: Avery <[email protected]>
Date: Sat Jan 23 20:25:26 2021 -0500
feat: merged both audit serializers into one
commit 70c50b32fd91aa30fd3841c49897bb8ef20aa893
Merge: 8280ed83 8b9e57a9
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 20:16:22 2021 -0500
Merge remote-tracking branch 'origin/US3.5' into US3.5
commit 8280ed838035bf614e2154d0a1e76aec3864eaf9
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 20:16:13 2021 -0500
feat: assign-sk component displays Available and Busy stock-keepers
commit 9923baafcf7ab4b4ee7270eadaf8bd1dfe18ac59
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 20:06:35 2021 -0500
refactor: pull down common HTML attr to merge HTML files
I pulled down the common HTML attributes so that both creating and editing employees can use the same HTML file
commit 591ef141c60c1d220c52fa61bd25d3170152ef69
Author: Amanda-Kolopa <[email protected]>
Date: Sat Jan 23 19:33:47 2021 -0500
feat: started Availability column for assigning stock-keepers
test: fix failing tests
commit 92187240f7717d88c5f256866c7abe5998d2cbf1
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 18:33:46 2021 -0500
fix: fields displayed when they weren't supposed to (employees)
commit bbfacc6e97efd5d817c2a0c6bc5340aa259df88d
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 18:07:10 2021 -0500
refactor: remove dead location
commit dd9b577724c75c24b29d224fe8a6ee561d7d3816
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 17:53:26 2021 -0500
feat: Add control forms to the edit employee component
commit b763144e7123a52750386d7b87697969a44d6e6e
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 14:24:44 2021 -0500
fix: Using old name for attribute
commit 525b3281da473514dc78854268a966992cd07285
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 14:09:32 2021 -0500
refactor: pull up field and method for title out of HTML
commit 25b4d567d8ec87874a03eef1c87513a615a61caa
Author: Nicholas Nagy <[email protected]>
Date: Sat Jan 23 12:45:15 2021 -0500
chore: arrange create/edit employee directories and gave good names
commit 60b74f5d262563fb167def71c444c8372d6308a6
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 21:57:05 2021 -0500
chore: reorganize organization folders for better coherence
commit 08eeb67f00932dde2dfb69245c9b18ce00b78b18
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 21:52:52 2021 -0500
chore: pull up orgError and add abstract method to be implemented
commit 037ae3b8ab94527da879e3f0bbdab37425cd7f05
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 21:45:49 2021 -0500
refactor: pulling up organization info fields
commit 7e2bd9eaa9ed908db900e92693fcf6d5e7f39fe9
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 21:19:39 2021 -0500
refactor: pull up organization title and add initialization template
Add initialization template method for the organization title, so that initialization can happen in the constructor and that the functionality is consistent across all classes
commit a81c705cb6c1aef3ded5f4fcf5d4206e6c9eb311
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 21:00:33 2021 -0500
refactor: pull up editing info and create template method
The template method is used to get associated info about whether the component can edit or not based on the subclass
commit b0076744a440f359bd5d84e7c19587198fa7333b
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 17:21:53 2021 -0500
chore: organize files and remove unnecessary constructor fields
commit 22a00fde2ec88226b1596a4739381354878a72c4
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 14:33:06 2021 -0500
refactor: pull up method and add template method for submitting template
commit 517e4f5dd8e6b7fb3d2cbfb3ff08584ec0e0f9d4
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 14:11:59 2021 -0500
refactor: pull up title description and errormessage fields
commit 095adb49ea45b7b77b210985021dad2a9c027fac
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 13:59:13 2021 -0500
refactor: pull up remove item method
commit be1534691f0fb9d4a3014fbacc536f25d500e367
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 13:53:10 2021 -0500
refactor: pull up method addItem and pull up field template
commit a8a2c0d56f2b8a8fbc9955cf16e114e095ac1ba5
Author: Nicholas Nagy <[email protected]>
Date: Fri Jan 22 13:33:21 2021 -0500
refactor: add template method for initializing form
commit 8b9e57a94a552aa7ea505935c098f5f49b0a23c8
Author: Avery <[email protected]>
Date: Thu Jan 21 01:09:02 2021 -0500
fix: migrations
commit c71512e06782a5bdad7cbf0d9d21ba05ef3533f5
Author: Amanda-Kolopa <[email protected]>
Date: Wed Jan 20 23:45:22 2021 -0500
test: attempt to fix failing test
commit 38cc92ac1346f51a9da6262b8fbcc19ac1bd37cc
Author: Amanda-Kolopa <[email protected]>
Date: Wed Jan 20 23:24:34 2021 -0500
refactor: fixed lint issues
also:
feat: disabled "Assign" button if no bins have been designated to an SK
commit f3d6d027d509b3b41c97f160f8f705eb08e98a24
Author: Amanda-Kolopa <[email protected]>
Date: Wed Jan 20 22:31:01 2021 -0500
refactor: fixed pylint issues
commit 06c732d27c3b2c64ece98ebbec58e96ba6cfa1cf
Author: Amanda-Kolopa <[email protected]>
Date: Wed Jan 20 22:14:10 2021 -0500
test: fix failing test of IM initiates audit for their org
commit d5a0fae30324c348b4b80f766067c96442e00b9a
Author: Amanda-Kolopa <[email protected]>
Date: Wed Jan 20 21:32:33 2021 -0500
fix: UI of stock-keepers don't overflow into bins column + updated organizations.json
commit b3889ab923da8c50f18700da0811a041e1a5fa93
Author: Avery <[email protected]>
Date: Tue Jan 19 19:28:00 2021 -0500
chore: cleanup E2E tests
This includes fixes to the comments, the describe descriptions and the addition of all files to be tested within the protractor
commit 703ca386e8ff8fd26d02f9abe746fc6ccfddcf1b
Author: Avery <[email protected]>
Date: Tue Jan 19 19:23:29 2021 -0500
refactor: move file
This moves the navigation file outside of epic1 as it is to be used for all epics
commit 152278b2172ad54092436bbb746d4aa58ff0a2e0
Author: Avery <[email protected]>
Date: Tue Jan 19 19:22:26 2021 -0500
test: changed settings method
It will now search for the first name and last name in the settings id
commit 8d9b41140604dd3c861b4bacf3ea6a9327bfba97
Author: Avery <[email protected]>
Date: Tue Jan 19 19:19:17 2021 -0500
test: added AT 2.3, 2.5
commit 1c6555edba95107427aea984e4ed87a149439692
Author: Avery <[email protected]>
Date: Tue Jan 19 16:15:56 2021 -0500
test: added AT 2.2
commit 92912eb0a98568275854b7b3a6dc6946a116355d
Author: Avery <[email protected]>
Date: Tue Jan 19 13:54:07 2021 -0500
test: added AT 2.1
this also requires the login function be changed slightly as IMs are redirected to the dashboard once logged in
commit b35d46c8e8e976618cbd96a0b38fc6ae526a6afe
Author: Avery <[email protected]>
Date: Mon Jan 18 05:31:11 2021 -0500
refactor: remove duplicate comment
The test is already described within the describe function, there's no need to keep the same string twice
commit 4886acfa43e09412dfd10d497cd3cf1244ce66ca
Author: Avery <[email protected]>
Date: Mon Jan 18 04:43:01 2021 -0500
test: Fixed AT 1.4, 1.5, 1.6
This also includes the appropriate id changes in the front end to allow for all of the options to be obtainable
commit 508c83e6d46ddc32e8a2df1bc7ad9e9f49e5a9b0
Author: Avery <[email protected]>
Date: Mon Jan 18 03:50:34 2021 -0500
test: fixed AT 1.3: A,B,C
This also adds the appropriate html ids within the client side to have access to them when running the test
commit 24869c248ac177dd8a1a8ccc61b0aca233dcf213
Author: Avery <[email protected]>
Date: Mon Jan 18 03:48:06 2021 -0500
test: fixed AT 1.1
commit 3be869fb183d0118ddf1f7f5895d05569318d8aa
Author: Avery <[email protected]>
Date: Mon Jan 18 00:17:08 2021 -0500
fix: setup needed for logging in
This will be used for all future tests allowing them to be flexible and not depend on the previous ones. It will also move the tests into their appropriate "epic" folders
commit 33e495b309ab1da6b0101f45dbbb7f4ad192e3d4
Merge: ab1100fb bc1f4b28
Author: Averynder <[email protected]>
Date: Wed Jan 20 16:45:02 2021 -0500
Merge pull request #205 from Fruity-Loops/mobile_2
[U4.3 & U.4.4] Barcode scanning with external bluetooth scanner, camera and manual input
commit bc1f4b28571628e394c9fd266589456d3f15914a
Author: makchamp <[email protected]>
Date: Tue Jan 19 01:49:06 2021 -0500
fix: fix sonar exclusions following mobile folder migartion
+ java exclusion was not working
commit 83d09191deb91c6b555d22a1d9de5aecc7a7254a
Author: makchamp <[email protected]>
Date: Tue Jan 19 01:24:07 2021 -0500
config: Modify capacitor live reload server configuration
Reset to 'default' url
commit ed672c396cda8cb5564b37a0d6de8bf70dd982d5
Author: makchamp <[email protected]>
Date: Tue Jan 19 00:58:21 2021 -0500
config: Create mobile directory in project root to house mobile app file
It is more clear this way
commit e60edd85df63956b2002940ebc97a52a5de4446f
Author: makchamp <[email protected]>
Date: Fri Jan 15 18:26:43 2021 -0500
fix: Invalid HTTP_HOST header
Add 'localhost' to ALLOWED_HOSTS.
commit 0c2abbcf3435aefa689a794840b7405c0c2c638d
Author: makchamp <[email protected]>
Date: Thu Jan 14 18:02:43 2021 -0500
feat: Handling Andoird camera permissions
The prompt to allow camera permissions will only be shown when the user requests to scan with the camera
https://ionicframework.com/docs/native/android-permissions
commit c8b6af5cacf4f94fb7a3c20905dafee3bafd5a9e
Author: makchamp <[email protected]>
Date: Wed Jan 13 23:07:38 2021 -0500
feat: Implement manual barcode input
Allows user to input the barcode manually
When requested, an alert dialogue opens with an input field to enter the barcode
commit 41e67c405e963c4fccbce8aab8d4da9a3b7efa40
Author: makchamp <[email protected]>
Date: Wed Jan 13 22:39:35 2021 -0500
feat: Validating scans
Checking if the scanned barcode matches an item
Will need to replace with backend requests later
commit b62241ffa37673560bb8c82f4cde6ef619ec0de2
Author: makchamp <[email protected]>
Date: Wed Jan 13 22:16:57 2021 -0500
feat: Implement barcode scanning using the phone camera
If the scanner is lost or not available, the camera can be used.
I am using the ionic plugin 'Barcode Scanner'
Camera permissions need to be allowed prior to using this (not yet handled in the code)
commit 686db0ca4571d94236bc7e0a0131a6d911992c4e
Author: makchamp <[email protected]>
Date: Wed Jan 13 21:28:24 2021 -0500
feat: Implement top 'loading' bar for in progress scans
Bar shows below toolbar at the top of the screen when a scan has been initiated
Includes a ion-progress-bar of the 'intermediate' type
commit f31ded46157ade6668ed79fe3600d55cf22060b5
Author: makchamp <[email protected]>
Date: Wed Jan 13 19:59:32 2021 -0500
feat: Settinng up Audits page with audit service and model
New audit service and model
hardcoding dummy audits temporarily for testing purposes (and because the backend api is not yet fully useable)
list view to scroll throught the audits
commit a649dbfd49701bbe94508dd347922bf02d9a1d4a
Author: makchamp <[email protected]>
Date: Wed Jan 13 00:33:19 2021 -0500
feat: Using rxjs fromEvent observable instead of HostListener to listen to events from specific elements
The scanning should only occur on a specific page (or from on specifc components within a page)
HostListener is a global listener. It is possible to add a directive and focus it on specifc componenents but the solution would be longer.
With fromEvent simply unsubscribing from the event in ngOnDestroy() is enough.
commit 5b83318421c5441edba966b7effc792e5cb9173b
Author: makchamp <[email protected]>
Date: Tue Jan 12 00:14:01 2021 -0500
feat: External barcode scanner initial groundwork
The barcode scanner sends input (as a normal keyboard would) when a barcode has been scanned
To detect and read the scanned value, I listen to keypress events on the document using angular's HostListener
Each number(or key) in the barcode will trigger the event, ending with the 'Enter' key.
The scanner is connected via bluetooth from the device's settings
commit 4c89831b86e9ecedd74fc34088dd85aa77ce165a
Author: makchamp <[email protected]>
Date: Mon Jan 11 23:00:18 2021 -0500
config: Configure npm scripts for live reload of android and ios apps
To start the live reload server for the mobile apps now we can now run the commands:
'npm run live-android'
or
'npm run live-ios'
This will generate a url that will have to be added to the .env file of the django server (for ANROID_URL and/or IOS_URL)
Also changed 'npm start' to run 'ionic serve' instead of 'ng serve'
commit a93a7c4c56ca9922cb72b269105c35bf4558ca8b
Author: makchamp <[email protected]>
Date: Mon Jan 11 22:26:18 2021 -0500
config: Localtunnel and cors origins configuartion for android and ios
android origin url 'http://localhost'
ios origin url 'capacitor://localhost'
source: https://ionicframework.com/docs/troubleshooting/cors
Localtunnel is used as android only allows HTTPS requests by default
To start localtunnel for the django server
npx localtunnel --port 8000 --subdomain {CUSTOM_DOMAIN}
The custom domain provided (or generated if none is provided) needs to be added to both environment files
- For the ionic app, set api_root to the custom domain
- In the .env file for the django server, set HOST_URL to the custom domain
commit b924342f1c8898eeff87bb8be1dbb51577cee2fc
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 18 22:42:03 2021 -0500
fix: bins and stock-keepers in UI are separated into columns
commit 44bf05040cdb969041501eeb80ff0f78eaa4938f
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 18 21:09:23 2021 -0500
chore: added TODOs to review when executing performance testing
commit e2a7a9a7c853746efccbb0ed7c559178c632ecf7
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 18 21:06:55 2021 -0500
refactor: reusing found object to add to array instead of findIndex
commit 596005bbb3b372a2236971ae90dbbf0dca8c4c59
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 18 20:30:30 2021 -0500
chore: removed print statements, TODO, useless variables
commit bec050a66e34bb5af56b9a947098b0a6e5fa2a10
Merge: df7e2151 ab1100fb
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 18 20:08:40 2021 -0500
Merge branch 'master' into US3.5
commit df7e2151e849a38ecc4626100d5b4f0c17d18dea
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 18 20:05:41 2021 -0500
fix: modified InventoryManagerAudit permissions to call InventoryManager superclass
commit ab1100fbcc583ddbfee9dfe7090854ac994a17fa
Merge: 15583cd0 d67953df
Author: Amanda-Kolopa <[email protected]>
Date: Mon Jan 18 10:19:21 2021 -0500
Merge pull request #204 from Fruity-Loops/organization-management
Organization management
commit d67953df6dd43da1bbffc783bf4f248bf62cd70f
Author: Nicholas Nagy <[email protected]>
Date: Mon Jan 18 10:11:18 2021 -0500
fix: enabled button when input doesn't match
Disabling the button for when the input of the user doesn't match the name (title) of the organization.
commit 6aff148a9d45682926e77387f66bf8ed66412c03
Author: Nicholas Nagy <[email protected]>
Date: Sun Jan 17 23:35:02 2021 -0500
fix: linting errors from angular
commit ad48318f8d16b0568d84a3149b8b090612716682
Merge: 613b511a 5eaa1cfe
Author: Nicholas Nagy <[email protected]>
Date: Sun Jan 17 23:28:27 2021 -0500
Merge remote-tracking branch 'origin/organization-management' into organization-management
commit 613b511a8d6a658426eebc5357a072607324bf4d
Author: Nicholas Nagy <[email protected]>
Date: Sun Jan 17 23:28:07 2021 -0500
feat: Add Input text validation for disabling organizations
commit 334a5484d05981d2274195a3e5606ce2beb347ec
Merge: c237c465 15583cd0
Author: Amanda-Kolopa <[email protected]>
Date: Sun Jan 17 19:19:03 2021 -0500
Merge branch 'master' into US3.5
commit c237c465fb9313ecd9f354f105b66a39368cfe34
Author: Amanda-Kolopa <[email protected]>
Date: Sun Jan 17 18:28:43 2021 -0500