-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq
More file actions
1972 lines (1343 loc) · 59.6 KB
/
Copy pathq
File metadata and controls
1972 lines (1343 loc) · 59.6 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
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
[33mcommit 01185050df9790f27dfaae4ee7034990a24f98ed[m[33m ([m[1;36mHEAD[m[33m -> [m[1;32mmain[m[33m, [m[1;31morigin/main[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Mar 5 04:32:16 2025 +0200
optimizing DI services
[33mcommit 82227777e2031707bc4af7a5c4096499e1b9d167[m[33m ([m[1;32mBillUpdate[m[33m)[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Mar 3 00:49:45 2025 +0200
implemented certified bill ownership
[33mcommit 51689035458dca93e7e78a5a1ca36cada0d99a60[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Mar 2 23:43:59 2025 +0200
unnecessary operations removed, most of requests depend on GetBills
[33mcommit 0331699000eaaff98dc8dcd35af0d89a2c58cbde[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Feb 20 00:47:04 2025 +0200
removed bills get by date EP, improved date validation (string to dateTime)
[33mcommit 306ebc86b5b4a28565674e6600cf5e6251062c6d[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Feb 9 18:50:49 2025 +0200
focused on fixing sql output, improved sql queries
[33mcommit 8d62c37745c8f891b0a10bf5d1d3488fb9e7ebbb[m
Merge: 6c47985 a182d51
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Feb 6 00:46:06 2025 +0200
merging
[33mcommit 6c479856cb2b169714f82aa5e7ed6f4b2f3b1a69[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Feb 6 00:45:19 2025 +0200
looked after Student and Test data services
[33mcommit a182d5196eeb790caab6b402685314e9525c0d6b[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Feb 5 11:30:43 2025 +0300
fix test mark page
[33mcommit e0932dc780664ec25b2ca948a665ac4aed2a2703[m
Merge: d0129ed 72ad059
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Feb 5 11:10:58 2025 +0300
merge the latest version of back-end
[33mcommit d0129ed46114d7eafff1f369eff6ce785247c1e1[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Feb 5 11:09:25 2025 +0300
Save the latest changes on front-end section
[33mcommit 72ad05965fbe1c8fffdb471f388d6c95abe69b67[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Jan 28 15:51:10 2025 +0200
settings hotfix
[33mcommit 29fc614fd1f3357bef039570acb97e7f7afbb69c[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Jan 27 18:18:23 2025 +0200
Exception Handling For Teacher and Student Data, sql performance check, stored procedures queries improved
[33mcommit 889e804f80dc951688ac0a80fb13a5a13aa014cb[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Jan 25 01:04:43 2025 +0200
added endpoint: /Report/{reportId}/Student/Top that give top student in each class
[33mcommit 1d9fcc5eede36086d3bd197f729a2a8fbddba317[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Fri Jan 24 23:26:32 2025 +0200
applied consistency on absences in student caching
[33mcommit 433073ce0d0267e3a89e7a7d633d5ebb9749218d[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Fri Jan 24 16:46:27 2025 +0200
student caching done
[33mcommit b78ffa5721e7ead1a83aafb26892e83e7e142d8a[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Fri Jan 24 15:32:37 2025 +0200
hotfix
[33mcommit 0a06df0ee0ff7bfd4985319f8b9cd6877e8a390c[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Fri Jan 24 15:20:17 2025 +0200
init caching
[33mcommit 694ff807952980afb2536ff11493c719234d72c0[m
Merge: 453f7c3 b78ffa5
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Fri Jan 24 15:39:05 2025 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 453f7c3aae91a761c1d6109787fcceb1ff9f3fa7[m
Merge: f1d2412 0a06df0
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Fri Jan 24 15:30:11 2025 +0300
merge the latest version of back-end
[33mcommit f1d2412d0d8c9784da454f6b8786d84d38d7ec8b[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Fri Jan 24 15:29:36 2025 +0300
change the folder structer
[33mcommit 0a3a1847fbbd852a1b3c25bbd003a02c94895620[m
Merge: 1e0b541 5cb3c84
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Jan 22 23:22:10 2025 +0300
merge the latest version
[33mcommit 5cb3c84dacf1e44ce3a77967e5d9652db90dae4a[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Jan 22 23:17:45 2025 +0200
top students init
[33mcommit 1e0b541597b6fb71820beb763236f692bc12b886[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Jan 22 23:13:51 2025 +0300
fix some bugs
[33mcommit 5374c2107563f463df860e5653258261b3f33edb[m
Merge: d891a87 f5033a4
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Mon Jan 20 18:38:13 2025 +0300
merege the latest version of backend
[33mcommit d891a87048be87d1776b7055a689599f17573fc5[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Mon Jan 20 18:31:45 2025 +0300
Fix some bugs in statistics page
[33mcommit f5033a46b12fbf9ae5dc33f03a40a2f0d36b5937[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Jan 19 17:54:45 2025 +0200
naming mistakes in teacher pagenation corrected
[33mcommit 0344d1d0c27ac5094611621d88d579d8362be926[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Jan 19 17:43:57 2025 +0200
bill processing improved
[33mcommit bcb410f288b59d075ce0ca200c4c139614ae3b07[m
Merge: be6fc3e af13fea
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Jan 19 15:03:16 2025 +0200
front-end merge
[33mcommit be6fc3e7cd7d7385a36dc04a1cd3677342e68476[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Jan 19 15:02:41 2025 +0200
changed test correction process
[33mcommit af13fea653e4c56448b5c1232eb321231a742500[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Jan 16 23:56:02 2025 +0300
fix some bugs
[33mcommit 38ef31c83b47366c02deb127e5c5f68ab7a80d80[m
Merge: 80efc3d 9ccb07a
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Jan 16 22:08:10 2025 +0200
pull merge
[33mcommit 80efc3d9ed4631c43f4ee576245af946e3a450af[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Jan 16 22:06:58 2025 +0200
bill/Rest/type null return resolved, settings params varchars replaced with nvarchar
[33mcommit 9ccb07a84b8c767705872710e567bd7d5da5812f[m
Merge: 281248b ba9e668
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Jan 16 21:39:21 2025 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 281248b153497354622a0cd4460e41b720e918a0[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Jan 16 21:38:42 2025 +0300
fix some bugs
[33mcommit ba9e6684889e21b1ee1bd2cc962010b8c1c12889[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Jan 16 20:12:28 2025 +0200
new dataset added and replaced the old one, backup saved
[33mcommit 04cea77a01a18993c072d0c0b6683007dc84c50c[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Jan 16 18:37:20 2025 +0300
finishing build settings page
[33mcommit 4c16234e8e1dda48d2ab3d7d38ca8d19cd6209a2[m
Merge: 54cbab0 42aba65
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Jan 16 16:25:07 2025 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 42aba653be3a50d12c0eaa59c6c437e0cc401104[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Jan 16 16:17:06 2025 +0200
hotfix: change password back to service
[33mcommit 54cbab03b8f0c458ce40cad75c1edab6126ab98a[m
Merge: 189c5fc 9b023d7
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Jan 16 16:24:32 2025 +0300
Resolve some bugs
[33mcommit 9b023d7919f824b4ca0f089f02fb078574e4295b[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Jan 16 15:21:45 2025 +0200
clean up settings
[33mcommit dbefcb7640e59ff3518f2ea82a6f37246e940b2c[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Jan 16 15:13:07 2025 +0200
hotfix: always logged out problem solved
[33mcommit b968dd21d35f48eb8b4fb0418af5690668bdf71e[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Jan 16 15:07:35 2025 +0200
settings modified, password encryption added
[33mcommit 189c5fc8acd0a2ca4bd2d7a8792d9ef958bfcfa1[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Jan 16 15:36:05 2025 +0300
add the logic to setting components
[33mcommit e45a85f61aee0ea3f96ae98971b30b22c9cf9869[m
Merge: 75c1ed2 6f1c331
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Jan 15 17:27:19 2025 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 75c1ed2ed54fe650fb8f61cbcf41de1da9fb8cfd[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Jan 15 17:23:39 2025 +0300
Saving the latest changes
[33mcommit 6f1c3315952c3af6e3e97d7bf5e309f4f109ecee[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Jan 14 22:59:04 2025 +0200
code optimized
[33mcommit a2ddba6aa24315a161663801cab54b25c133025c[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Jan 14 17:20:56 2025 +0200
settings and auth added
[33mcommit 87af8ac700661711c65b8550c610ada152726294[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Jan 11 10:02:25 2025 +0200
removed path param at student api/ POST student absence
[33mcommit d6bbcbcacde363f597f3b761308757fffe7dda6b[m
Merge: 8fa71ea c08ca17
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Jan 11 09:39:13 2025 +0200
merge
[33mcommit 8fa71eae07cdc11426c8bee5a20dc9d0f871957b[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Jan 11 09:38:19 2025 +0200
fixed studentId list parameters, replaced with array
[33mcommit 04fe70a0470f6caf512ea0ad63ecf0685c342a04[m
Merge: b1f9e5b 87af8ac
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Jan 11 10:08:26 2025 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit b1f9e5bc40ee808e329316d3aa71cd963e05ddf1[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Jan 11 10:08:21 2025 +0300
no things
[33mcommit 242d121395f7279e15f07a98ab09dec7bf46bd71[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Jan 11 09:42:23 2025 +0300
fix some bugs in backend
[33mcommit c08ca170cc0cab45cb84bfc3008f871f626b239c[m
Merge: 65bbd7e 586d949
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Jan 11 09:17:02 2025 +0300
merge the lastest version of backend
[33mcommit 65bbd7e8ae99e6fa9d51d489021957384592dc25[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Jan 11 09:14:34 2025 +0300
translate the entyer application
[33mcommit 586d94926800d3d8c828484744d715459a0f98b2[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Fri Jan 10 22:39:37 2025 +0200
changed student absence to sequence of absences instead
[33mcommit 924733224a158593a2a56fcd3b9b61bfe474c1fb[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Dec 30 20:15:05 2024 +0200
added date filter on student absence
[33mcommit b7d1d3c7b864090ed28cd8918fd6d7e922dc88b2[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Dec 30 17:05:03 2024 +0200
Added absence attribute into report printing json format
[33mcommit c6e4fabe0be45c5a62ad1b7d3ffadc9abb9603f3[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Dec 28 13:26:36 2024 +0200
Check attendance Feature Added
[33mcommit 044d1917cc0f73b10b4758257bae71214ee7bb10[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Dec 28 12:31:33 2024 +0200
code optimazation
[33mcommit 491cbdde3d0562c14aa7d4893bdb1baa1d54559f[m
Merge: 37aecc3 8ded974
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Dec 18 23:28:06 2024 +0200
added arabic
[33mcommit 8ded97462b1a301d8917d9b2d9d7cd3c76b5f43a[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Dec 18 21:18:50 2024 +0300
finish statistics page
[33mcommit 37aecc3f8aefb7ce14492e150605a38760c4126a[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Dec 17 12:26:31 2024 +0200
bill data improvements
[33mcommit 1e2fda1a39de92f3f2bfd92d110e538935b4cc2b[m
Merge: 9a49b03 5966703
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Dec 14 19:52:13 2024 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 9a49b03613a442cc907d68f4f205afeadeeee346[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Dec 14 19:52:02 2024 +0300
fix some bugs
[33mcommit 5966703519cdbe79c62524daca0988491e682ca6[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Dec 14 15:39:04 2024 +0200
hotfix pages number in teacher and student pagination
[33mcommit a33907725ce74fe084a9e1e4185593b2d66c7658[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Dec 14 15:28:26 2024 +0200
bugs fixed
[33mcommit f1c6d2aae17e2cf57e7ce37ad3c044ef56446b6f[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Dec 14 15:27:42 2024 +0200
bugs reported fixed, new database version required
[33mcommit 892171dfc8fe6c40f8ad6fcb5188ece5f5db1888[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Fri Dec 13 15:32:20 2024 +0300
fix some bug
[33mcommit f1d30c6e1af34031c6e0cd4852afbf99de4c8513[m
Merge: f608359 06298a4
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Dec 10 20:03:09 2024 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit f6083598fdfd85daa30714e526a69313969a27f7[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Dec 10 20:02:17 2024 +0300
there is no changes, Just for do pull
[33mcommit 06298a4a678bc21d7eb8762eddb39766784741de[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Dec 9 12:39:58 2024 +0200
added class filter by grade
[33mcommit e327628c8abbe304c8adc6298677d948a94b3309[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Dec 7 21:21:36 2024 +0200
updating student endpoint
[33mcommit 719165185a458d9aceea17849134e6922f0b7b3d[m
Merge: bd1c3ac e327628
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Dec 7 21:24:48 2024 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit bd1c3ac92fcd1992111dfe8e7c72a46ff59c592a[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Dec 7 21:24:35 2024 +0300
some changes
[33mcommit 2c5adc9312bc046432398bfe0b028eaa80099d3a[m
Merge: 9a65980 c09602b
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Dec 7 20:40:46 2024 +0300
merge data
[33mcommit 9a65980247e5c8e576790d62ffd5fcde978e92d1[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sat Dec 7 20:39:50 2024 +0300
finish build statistics page nut need to some logic, fix some bug in other pages like ( filtering class by grade and add search field
[33mcommit c09602b909eef1f3a34a3e3676d5caa5d48a9e9c[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Fri Dec 6 22:37:20 2024 +0200
grade details added, fixed triggers logic
[33mcommit 51d9e2c8d045af8e8616013983131e85d7e95b60[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Dec 5 02:59:33 2024 +0200
added teacher rate, optimized pagination
[33mcommit fe1df11d57e710c9d305f567108b4e132cb521fd[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Dec 4 22:10:56 2024 +0200
grade issue solved, added validations and a grade filter at /Report Get Request
[33mcommit f8b01d5fd4653fe21a7fd84978804732b82e7a4e[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Fri Nov 29 00:24:27 2024 +0200
added report grade validation
[33mcommit 6d01f450c036ba9f55ef71e4bccb7dc6da4e1f28[m
Merge: fadec4b 2eb7615
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Nov 28 16:51:00 2024 +0300
merge the latest version of back-end
[33mcommit fadec4bfc3a5403d5f0ed2edc597bd30ce06493d[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Thu Nov 28 16:49:32 2024 +0300
include a new package
[33mcommit 2eb7615c9fa65d3b2e491feafee751417ad112ef[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Nov 27 19:35:37 2024 +0200
commit changes
[33mcommit b944fdf729889c2aeb3adb0be961514dfd9e7561[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Nov 27 16:45:04 2024 +0200
removed 2 unused functions and replaced with 1 parameterized function
[33mcommit 68bf011975d003f15f1de5a80aac3e8bb54c191b[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Nov 27 16:41:19 2024 +0200
added date filter for income and outcome
[33mcommit fcb1fb5f647e1f4975d302e15cd73ce522d4fde7[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Nov 27 12:38:51 2024 +0200
improved date search in Bill
[33mcommit 5a8efb1ff3d5049665eb9f703007048eeb67374f[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Nov 26 14:47:30 2024 +0200
fixed class problem
[33mcommit 1d830a4f855431f97722580dbb1054a62b44ef6a[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Nov 26 14:17:40 2024 +0200
merge
[33mcommit b0b6bd4ce1d441ff943f460f05eb50ca53412f7b[m
Merge: 30d671b 45b7bfa
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Nov 26 14:16:02 2024 +0200
merging
[33mcommit 30d671b66cd2f9ae115efbe3b409f66990f429e1[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Nov 26 14:13:38 2024 +0200
npm installed
[33mcommit 538f3829f91e3776fed719640bd61fcc4d2654de[m
Merge: 1a3e1e2 5a8efb1
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Nov 26 14:50:50 2024 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 1a3e1e2c75900d255c12010c6be17e5c4261d262[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Nov 26 14:50:45 2024 +0300
fix some bugs
[33mcommit 45b7bfaebcd38a5fffc602a075c7d473036b557c[m
Merge: 8ccedf8 854713a
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Nov 26 14:13:25 2024 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 8ccedf84df4e31356b6bb1a0f302220acefe47cc[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Nov 26 14:13:03 2024 +0300
merge
[33mcommit d0426324403b86d23ed17d0a05ed01560307b174[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Nov 26 14:11:42 2024 +0300
merge latest version
[33mcommit 44ad1a0e5e61b70a9330c8e36e0af9b6d2e13e7e[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Nov 25 17:02:36 2024 +0200
date filter added
[33mcommit b12597712307b0891553cd668651cb9bb968cb1e[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Nov 25 14:27:39 2024 +0200
Bills pagination updated
[33mcommit 854713a1ccaf673f4e10e51e23e5d93576a82b3e[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Nov 24 21:25:06 2024 +0200
teacher proc modified
[33mcommit fb0a2fb2df80ed3ec5d36a2916ddeaaaba9ce884[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sun Nov 24 17:52:11 2024 +0300
there are errors
[33mcommit 94a43a7b7b3ccab2df64df56d85d19d4c027929e[m
Merge: 60e6a33 940052d
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sun Nov 24 16:54:58 2024 +0300
merge
[33mcommit 60e6a339800f01d3caa60ae9fe3b93f15abf6b93[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Sun Nov 24 16:49:26 2024 +0300
fix some bug in some pages
[33mcommit 940052d823a89ff84d935f417ffb8253fcc451ad[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Nov 21 18:07:27 2024 +0200
Added Grade API
[33mcommit 6a6c34f1397c086a34b175e382f0eb981654a4e5[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Nov 20 13:28:25 2024 +0200
merge2
[33mcommit 0124d4fc6fe93fdc35d130a628afdf57d446b131[m
Merge: c4c24bd af58ace
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Nov 20 13:18:34 2024 +0200
merge
[33mcommit c4c24bdc3a6a4381967d339f611d78497cb444a9[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Wed Nov 20 13:17:57 2024 +0200
copy paste files
[33mcommit af58ace8da3c6858e6aa399509f952c453753c5f[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Wed Nov 20 12:55:32 2024 +0300
some changes
[33mcommit e10f41299966b66599e93ce8891157fb6f92688c[m
Merge: b812d35 ad995cc
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Nov 19 17:47:12 2024 +0300
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit b812d354e62d6baa800a1980cc807ad0c0b2bde1[m
Author: A-sleh <146457544+A-sleh@users.noreply.github.com>
Date: Tue Nov 19 17:46:51 2024 +0300
some changes on code
[33mcommit ad995cc2af41fe40f37afad67c5ec1863b8a4316[m[33m ([m[1;32mfeature_gen[m[33m)[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Nov 17 03:45:04 2024 +0200
generic grades added and will be supported
[33mcommit a1f2d1f9102beaf5f153f6517a8615913c10e9dc[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Nov 14 23:47:51 2024 +0400
optimize class section
[33mcommit 553790a84fd859413000a08b9a5e755bf561a7ce[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Nov 14 17:51:51 2024 +0200
added pagination for Teacher Request /Teacher
[33mcommit 9e4dba4bf18d9d7ef210b4ede8bf3ec70f134703[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Wed Nov 13 21:07:21 2024 +0400
finish optimize subject section
[33mcommit 551ef70f5465b6a72593310a8e1ccf690613b232[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Fri Nov 8 21:01:19 2024 +0400
optimize test pages
[33mcommit 3a588093e7d43dd6d9911477464914ecec7bdea6[m
Merge: b4acf64 59741dd
Author: A-sleh <businessabdo9@gmail.com>
Date: Tue Nov 5 22:41:38 2024 +0400
merge the latest version of backEnd
[33mcommit b4acf64402b68102b418878649d3bfe4497d8090[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Tue Nov 5 22:38:51 2024 +0400
optimize reports details pages and printing page
[33mcommit f96656127833e2f0153e7e8b36a16e7387acb46a[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Tue Nov 5 15:54:35 2024 +0400
create some custom hooks and did an optimizrion on many components
[33mcommit 59741dd6f9b88e7f522d68c3fb7f769107935ca2[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Nov 5 00:56:52 2024 +0200
code optimized, json format improved and endpoints changes, all mentioned in changes.txt
[33mcommit 4afecb44205a0add04fae3eec591f2b10083195b[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Sun Nov 3 01:51:08 2024 +0400
optimiz all bills page
[33mcommit 3e2b15d16109c77ce92f9ed15f1f5ab71ed8b4ac[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Fri Nov 1 23:59:26 2024 +0400
optimize some components
[33mcommit 198f5e1c5c9f27544c076379a41d2fcd6bc40403[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Fri Nov 1 23:43:04 2024 +0400
optimiz some components
[33mcommit 7684670d265455a493a8a637db349ea7f2d5e571[m
Merge: 2135404 adb9174
Author: A-sleh <businessabdo9@gmail.com>
Date: Fri Nov 1 17:22:27 2024 +0400
optimize studnet bills page
[33mcommit a1956ea00877872d305925afdc4f5938d79e3bce[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 31 17:42:28 2024 +0200
added mark, totalMark, FatherName for the json pdf printing format
[33mcommit adb9174cfa9e2a5196e4d6cb78f3f99d55109bf3[m
Merge: eba290d 56ebf36
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 31 16:50:38 2024 +0200
merge
[33mcommit eba290df294cc7e95c924be266a0e282e715f6dd[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 31 16:50:09 2024 +0200
customized json format for pdf printing
[33mcommit 2135404bf27b5f37fc812b86c04db94d08b26f4e[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 31 18:40:55 2024 +0400
some change
[33mcommit 8854e4cdf540c9a33f0bb3c87051a0ac9dceaa0c[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 31 16:28:40 2024 +0200
exam average null fixed
[33mcommit a35fbac6a92174eac49d7043f139a6a96a939ee9[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 31 15:58:29 2024 +0200
error fix (exam avg null)
[33mcommit 118a1f7602a341d52e0521f5edadcb574eee7282[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 31 15:56:22 2024 +0200
error fixed
[33mcommit 93d5ac144a7ae4c5d9be82162284219164500199[m
Merge: c70c7b3 c166de7
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 31 15:54:32 2024 +0200
merge
[33mcommit c70c7b3974e60eab954157a8195132a0f215a664[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 31 15:53:49 2024 +0200
added new endpoint to prepare PDFS results for reach class (Report/{reportId}/Class/{classId)/Result
[33mcommit 56ebf36cf3813fe58f16fbf23f41d9f69fa9f104[m
Merge: fd498fe a35fbac
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 31 17:21:39 2024 +0400
merge the latest version of back-end
[33mcommit fd498fe5afe398fef49cb052022e57a386f84f0b[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 31 17:20:45 2024 +0400
remove some import unused in router file
[33mcommit c166de7d46a81e7d1e66eefb0b4971170e317771[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 31 16:47:11 2024 +0400
optimize sidebar ,and replace the routes and rout with createBrowserRouter object
[33mcommit a479c7bb613049dc2d2e999c302e82ddf5a714f0[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 31 13:16:48 2024 +0400
refactor side bar
[33mcommit 7ea5d79340fbc95f5d25e06c9145aa03633834c5[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 31 13:05:47 2024 +0400
refactor side bar
[33mcommit 005ed550dce23bbd2899dd7fcddbf47a759e369e[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 31 12:24:15 2024 +0400
refactor side bar
[33mcommit d09ad80306340e5050cf6a7eb95aac6cbd146674[m
Merge: c769b09 fdf2ef5
Author: A-sleh <businessabdo9@gmail.com>
Date: Wed Oct 30 21:00:20 2024 +0400
merge the latest back-end version
[33mcommit c769b09849c71ea7e5ead1ea976bbd94ea13e468[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Wed Oct 30 20:59:34 2024 +0400
begin do optimization (new teacher , student , class page ) , also optimize create new bill page
[33mcommit fdf2ef5814ea183f149f7852005949aeba382f91[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sun Oct 27 19:38:15 2024 +0200
added new report endpoint to bring reports results to specified student
[33mcommit 5fd0c46e36fb1b61505220f7ce755e950260f542[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Sat Oct 26 13:25:26 2024 +0400
add an animation to teacher and student more information page
[33mcommit 59eb357620e2eaef520173b57d293ddcad27f83a[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Sat Oct 26 12:30:37 2024 +0400
create studnet more information page but needed to new enpoint to get student report (i used a demo data)
[33mcommit d400535c9260d7aa3949164357f5c2a62786cc1e[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Fri Oct 25 15:44:14 2024 +0400
fix bug in manage teacher page
[33mcommit bda8ec853d8bf6e2b77e4bcafc6810dfd993d1a2[m
Merge: 7b7944c c251634
Author: A-sleh <businessabdo9@gmail.com>
Date: Fri Oct 25 14:54:33 2024 +0400
merge the latest version of back-end
[33mcommit 7b7944c13990be9749e34e4541af15eca5b2e185[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Fri Oct 25 14:53:33 2024 +0400
Create remove teachers from class
in manage class page but needed to add logic
[33mcommit c25163414d49dced70651aace82361b0e679afed[m
Merge: 96d3558 b47cfb8
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 24 20:38:42 2024 +0300
merge
[33mcommit 96d35588506edbfefad0429ba66c17044bedade3[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 24 20:38:05 2024 +0300
fixed insert subject to teacher problem
[33mcommit b47cfb868fdd9b650329b0200fcbfbbab424e623[m
Merge: 69c6770 cfca258
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 24 17:18:06 2024 +0400
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 69c67706ac7d94ec9e7edc4b269c179403befae5[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Thu Oct 24 17:17:37 2024 +0400
add show teacher in manage class page
[33mcommit cfca25811318b485e3675c2919acd89092d2e05e[m
Merge: fc32b0e 5962e4d
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 24 16:13:58 2024 +0300
merge
[33mcommit fc32b0ee6523e38402fe70c6b1cc44e06e05d01d[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Thu Oct 24 16:12:56 2024 +0300
added new TeacherSubject Endpoint to get all teachers subjects filterable by grade
[33mcommit 9ce74b8bd44805d6cf8127e9881fe8be73bece5d[m
Merge: cfee24b b6bf410
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Oct 22 12:55:07 2024 +0300
front end merge
[33mcommit cfee24bf7d63dff28da7120a112a4bbca2b72e36[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Tue Oct 22 12:52:07 2024 +0300
added query parameters to Class, Report, Test EndPoits, deleted unuseful func (TestGetMarksByClass) and replaced with bool query parameter(showLinked) inside TestGetMarks
[33mcommit 5962e4d459bb5575b8a2b645d6ad6a07b7885912[m
Merge: 7b75eda 9ce74b8
Author: A-sleh <businessabdo9@gmail.com>
Date: Tue Oct 22 13:05:34 2024 +0400
Merge branch 'main' of https://github.com/A-sleh/Student-Institute-Management
[33mcommit 7b75eda2649377c2ef72ae30d9f8609a5041ceef[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Tue Oct 22 13:05:08 2024 +0400
some changes on manage report test pate
[33mcommit 45530ae0efb7f7fde96206feab99ff57d2450496[m
Merge: 654ad1c cea14b0
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Oct 21 20:26:58 2024 +0300
merge
[33mcommit 654ad1c49fa475c2caeb372db0e0cd69255b5dd7[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Mon Oct 21 20:26:04 2024 +0300
added new endpoint, sql modified, 2 more endpoints modified
[33mcommit b6bf4109fa9ec0577f792ce27245f22f6386303d[m
Merge: 99408da 45530ae
Author: A-sleh <businessabdo9@gmail.com>
Date: Mon Oct 21 20:33:33 2024 +0400
merge the lastest version of backEnd
[33mcommit 99408da527ab6d0c9003a45ee99d62eb8003302c[m
Author: A-sleh <businessabdo9@gmail.com>
Date: Mon Oct 21 20:29:08 2024 +0400
create manage and show reports
[33mcommit f25160e7c74b1193763b44118150de352adf5a89[m
Author: RabooV01 <rabii961ra@gmail.com>
Date: Sat Oct 19 10:50:56 2024 +0300