progressCardReport.vue
27.9 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
<template>
<v-container fluid class="body-color">
<!-- ****** Progress Card Report Table****** -->
<v-card flat class="elevation-0 transparent">
<v-form ref="form" v-model="valid" lazy-validation>
<v-flex xs12 sm12 lg12>
<v-layout wrap>
<v-flex xs12 sm12 lg3>
<v-layout>
<v-flex xs3 sm3 lg2 class="subheading mt-4">
<label class="right">Class:</label>
</v-flex>
<v-flex xs9 sm6 lg8 class="ml-2">
<v-select
v-model="getReport.classId"
label="Select your class"
type="text"
:items="classList"
item-text="classNum"
item-value="_id"
:rules="classRules"
@change="getSections(getReport.classId)"
required
></v-select>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg3>
<v-layout>
<v-flex xs3 sm3 lg2 class="subheading mt-4">
<label class="right">Section:</label>
</v-flex>
<v-flex xs9 sm6 lg8 class="ml-2">
<v-select
:items="addSection"
label="Select your Section"
v-model="getReport.sectionId"
item-text="name"
item-value="_id"
name="Select Section"
@change="getStudents"
:rules="sectionRules"
required
></v-select>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg3>
<v-layout>
<v-flex xs3 sm3 lg2 class="subheading mt-4">
<label class="right">Student:</label>
</v-flex>
<v-flex xs9 sm6 lg8 class="ml-2">
<v-select
:items="getStudentsList"
label="Select your student"
v-model="getReport.studentId"
item-text="name"
item-value="_id"
:rules="studentRules"
required
></v-select>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg3>
<v-btn
style="margin: auto;
display: block;"
@click="getMarkReportList"
round
dark
:loading="loading"
class="open-dialog-button mt-3"
>Get Report</v-btn>
</v-flex>
</v-layout>
</v-flex>
</v-form>
</v-card>
<v-layout v-show="showReport">
<v-flex xs12>
<v-card class="transparent elevation-0">
<v-container grid-list-md class="report">
<v-flex xs12 sm12>
<v-layout wrap>
<!-- ****** TABLE DATA MARK ****** -->
<v-flex xs12 sm12 md12>
<v-layout>
<v-flex xs12>
<v-btn
class="open-dialog-button"
:loading="printLoader"
round
dark
@click="printProgressReport()"
>
Print
<v-icon right dark>print</v-icon>
</v-btn>
</v-flex>
</v-layout>
<div id="printMe">
<card class="elevation-0" v-for="(value, id, Index) in filterData" :key="Index">
<v-card
class="ma-3"
style="
border: 1px solid lightgrey;
margin-bottom:0px;
padding: 0px"
>
<div style="border: 1px solid lightgray;">
<v-layout>
<v-flex xs12 sm12 md12>
<div
style="
border-bottom: 1px solid #ddd;
overflow: hidden;
vertical-align: middle;
margin: 10px;
padding-bottom: 0px;"
>
<!-- <v-flex xs12 sm12 md12> -->
<v-layout>
<div class="school-logo">
<img
:src="userData.schoolLogoUrl"
v-if="userData.schoolLogoUrl"
style="width:40px !important;height:40px !important; float: left;"
/>
<img
src="/static/schoolIcons/INTRACK_White.png"
v-else-if="!userData.schoolLogoUrl"
style="width:40px !important;height:40px !important; float: left;"
/>
</div>
<div class="school-name">
<h3>{{ schoolData.name }}</h3>
</div>
</v-layout>
<!-- </v-flex> -->
</div>
<!-- Profile School -->
<v-flex xs12 sm12 md12 lg12 style="margin:0px 0px; ">
<v-layout>
<div
style="flex-basis: 40%;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
max-width: 40%;"
>
<div
style="padding: 4px;
padding-left: 16px !important;"
>
<p
style="font-size:20px;margin-bottom: 0px;"
>{{ schoolData.name }}</p>
<p
style="font-size: 15px;color: #707478;margin:0px;margin-bottom:8px;"
>{{ schoolData.address }}</p>
<p
style="font-size: 15px;color: #707478;margin:0px;margin-bottom:8px;"
>Phone : {{ schoolData.mobile }}</p>
<p
style="font-size: 15px;color: #707478;margin:0px;margin-bottom:8px;"
>Email : {{ schoolData.email }}</p>
</div>
</div>
<!-- Profile Student Report Card-->
<div
style="flex-basis: 40%;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
max-width: 40%;"
>
<div v-for="(studentMark,i,index) in value" :key="index">
<p
v-if="index == 0"
style="font-size:20px;margin-bottom: 0px;"
>{{ studentMark[0].studentId.name }}</p>
<p
v-if="index == 0"
style="font-size: 15px;color: #707478;margin:0px;margin-bottom:8px;"
>
Class :
<b>{{ studentMark[0].classId.classNum }}</b>
</p>
<p
v-if="index == 0"
style="font-size: 15px;color: #707478;margin:0px;margin-bottom:8px;"
>
Section :
<b>{{ studentMark[0].sectionId.name }}</b>
</p>
<p
v-if="index == 0"
style="font-size: 15px;color: #707478;margin:0px;margin-bottom:8px;"
>
Roll NO :
<b>{{ studentMark[0].studentId.rollNo }}</b>
</p>
</div>
</div>
<div
style="
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
max-width: 20%;"
>
<div v-for="(studentMark,i,index) in value" :key="index">
<div
style="padding-top:16px"
v-if="index == 0"
class="hidden-sm-only hidden-xs-only"
>
<img
src="/static/icon/user.png"
v-if="!studentMark[0].studentId.profilePicUrl"
style="width:60px;height:60px;"
/>
<img
:src="studentMark[0].studentId.profilePicUrl"
v-else-if="studentMark[0].studentId.profilePicUrl"
style="width:60px;height:60px;"
/>
</div>
</div>
</div>
</v-layout>
</v-flex>
</v-flex>
</v-layout>
<v-card
v-for="studentMarks in value"
:key="studentMarks"
style="
background-color: #fff;
border-color: #fff;
color: rgba(0,0,0,0.87);
overflow-x: auto;
display: block;
webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2), 0px 0px 0px 0px rgba(0,0,0,0.14), 0px 0px 0px 0px rgba(0,0,0,0.12) !important;
box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2), 0px 0px 0px 0px rgba(0,0,0,0.14), 0px 0px 0px 0px rgba(0,0,0,0.12) !important;"
>
<table
v-for="(studentMark,key) in studentMarks"
:key="key"
class="tableRsponsive feeTypeTable subheading"
style="border: 1px solid black;
border-collapse: collapse;!important
table-layout: auto !important;
width: 100% !important;
overflow: hidden;"
>
<thead
style="border: 1px solid transparent !important"
v-if="key == 0"
>
<tr style="border: 1px solid transparent !important">
<td
colspan="4"
style="text-align: inherit !important;
border-right: inherit;
border-top: inherit;
padding:14px;"
>{{studentMark.examId.examName}}</td>
</tr>
<tr style="border: 1px solid lightgrey !important;padding:4px;">
<td
rowspan="2"
style="border: 1px solid lightgrey !important;padding: 0px;"
>Subject</td>
<template>
<td
v-for="(studentMarkData,i) in studentMark.studentsMarks"
:key="i"
colspan="2"
style="border: 1px solid lightgrey !important;padding: 0px;"
>{{studentMarkData.markDistributionId.distributionType}}</td>
<td
style="border: 1px solid lightgrey !important;padding: 0px;"
>Total Marks</td>
</template>
</tr>
<tr style="border: 1px solid lightgrey !important;">
<template v-for="(exam, ind) in studentMark.studentsMarks">
<td
:key="ind"
style="border: 1px solid lightgrey !important;padding: 0px;"
>Marks</td>
<td
:key="ind"
style="border: 1px solid lightgrey !important;padding: 0px;"
>Highest Marks</td>
</template>
</tr>
</thead>
<tbody
style="border: 1px solid lightgrey !important;"
v-if="key == 0"
>
<tr v-for="studentMark in studentMarks" :key="studentMark">
<td
style="border: 1px solid lightgrey !important;padding: 0px;"
>{{studentMark.subjectName}}</td>
<template v-for="(exam, index) in studentMark.studentsMarks">
<td
:key="index"
style="border: 1px solid lightgrey !important;padding: 0px;"
>{{exam.marksScored}}</td>
<td
:key="index"
style="border: 1px solid lightgrey !important;padding: 0px;"
>{{exam.markDistributionId.markValue}}</td>
</template>
<td
style="border: 1px solid lightgrey !important;padding: 0px;"
>{{studentMark.totalMarks}}</td>
</tr>
</tbody>
<tfoot v-if="key == studentMarks.length - 1">
<tr style="border: 1px solid lightgrey !important;">
<td
colspan="5"
class="subheding"
style="
border: 1px solid #e2e7eb;
text-align:center
padding: 0px;"
>Total Marks</td>
<td
colspan="7"
style="border: 1px solid lightgrey !important;padding: 0px;"
>{{ studentMark.allSubjectTotalMarks }}</td>
</tr>
<tr>
<td
colspan="5"
class="subheding"
style="
border: 1px solid #e2e7eb;
text-align:center
padding: 0px;"
>Grade</td>
<td
colspan="7"
style="border: 1px solid lightgrey !important;padding: 0px;"
>{{ studentMark.grade ? studentMark.grade : "-" }}</td>
</tr>
<tr>
<td
colspan="5"
style="
border: 1px solid #e2e7eb;
text-align:center
padding: 0px;"
class="subheding"
>Average Mark</td>
<td
colspan="7"
style="border: 1px solid lightgrey !important;padding: 0px;"
>-</td>
</tr>
<tr>
<td
colspan="5"
style="
border: 1px solid #e2e7eb;
text-align:center
padding: 0px; !important;
font-size: 16px !important;"
class="subheding"
>GPA</td>
<td
colspan="7"
style="border: 1px solid lightgrey !important;padding: 0px !important;font-size: 16px !important;"
>-</td>
</tr>
</tfoot>
</table>
</v-card>
</div>
</v-card>
<p style="page-break-after: always;"> </p>
</card>
</div>
</v-flex>
</v-layout>
</v-flex>
</v-container>
</v-card>
</v-flex>
</v-layout>
<div class="loader" v-if="showLoader">
<v-progress-circular indeterminate color="white"></v-progress-circular>
</div>
</v-container>
</template>
<script>
import http from "@/Services/http.js";
import moment from "moment";
import _ from "underscore";
export default {
data: () => ({
showLoader: false,
cardData: [],
token: "",
markDistributions: [],
markParticularDistributionData: [],
loading: false,
valid: true,
loading: false,
showReport: false,
printLoader: false,
addSection: [],
filterData: [],
getStudentsList: [],
classRules: [(v) => !!v || "Class is required"],
sectionRules: [(v) => !!v || "Class is required"],
studentRules: [(v) => !!v || "Student is required"],
getReport: {},
classList: [],
output: null,
userData: {},
newData: [],
gradeAPlus: "A+",
gradeA: "A",
gradeBPlus: "B+",
gradeB: "B",
gradeCPlus: "C+",
gradeC: "C",
totalMarks: "",
}),
mounted() {
this.token = this.$store.state.token;
this.getClass();
this.getUserData();
},
methods: {
clear() {
this.$refs.form.reset();
},
getClass() {
this.showLoader = true;
http()
.get("/getClassesList", {
headers: { Authorization: "Bearer " + this.token },
})
.then((response) => {
this.classList = response.data.data;
this.showLoader = false;
})
.catch((error) => {
this.showLoader = false;
// console.log("err====>", err);
});
},
getSections(_id) {
this.showLoader = true;
http()
.get(
"/getSectionsList",
{ params: { classId: _id } },
{
headers: { Authorization: "Bearer " + this.token },
}
)
.then((response) => {
this.addSection = response.data.data;
this.showLoader = false;
})
.catch((err) => {
this.showLoader = false;
// console.log("err====>", err);
});
},
getStudents() {
this.showLoader = true;
http()
.get("/getStudentWithClass", {
params: {
classId: this.getReport.classId,
sectionId: this.getReport.sectionId,
},
})
.then((response) => {
response.data.data.unshift({
name: "Select All",
_id: "Select All",
});
this.getStudentsList = response.data.data;
this.showLoader = false;
})
.catch((error) => {
console.log("err====>", error);
this.showLoader = false;
});
},
getMarkReportList() {
this.showLoader = true;
this.showReport = true;
var getSelectMarks = {};
if (this.getReport.studentId == "Select All") {
getSelectMarks = {
classId: this.getReport.classId,
sectionId: this.getReport.sectionId,
};
} else if (this.getReport.studentId != "Select All") {
getSelectMarks = {
classId: this.getReport.classId,
sectionId: this.getReport.sectionId,
studentId: this.getReport.studentId,
};
}
http()
.get("/getParticularMark", {
params: getSelectMarks,
headers: { Authorization: "Bearer " + this.token },
})
.then((response) => {
console.log("===response===", response.data.data[0].schoolId);
this.cardData = response.data.data;
this.schoolData = response.data.data[0].schoolId;
let newData = response.data.data;
for (var i = 0; i < newData.length; i++) {
newData[i].examination = newData[i].examId._id;
newData[i].studentsId = newData[i].studentId._id;
}
var studentMarkArray = [];
studentMarkArray = _.groupBy(newData, ["studentsId"]);
for (let data in studentMarkArray) {
studentMarkArray[data] = _.groupBy(studentMarkArray[data], [
"examination",
]);
}
this.filterData = studentMarkArray;
for (let data in this.filterData) {
for (let item in this.filterData[data]) {
var allSubjectTotalMarks = 0;
for (let i = 0; i < this.filterData[data][item].length; i++) {
var totalMarks = 0;
for (
let j = 0;
j < studentMarkArray[data][item][i].studentsMarks.length;
j++
) {
totalMarks +=
studentMarkArray[data][item][i].studentsMarks[j]
.marksScored;
}
this.filterData[data][item][i].totalMarks = totalMarks;
allSubjectTotalMarks += this.filterData[data][item][i]
.totalMarks;
this.filterData[data][item][
i
].allSubjectTotalMarks = allSubjectTotalMarks;
}
// this.totalMarks = totalMarks;
if (totalMarks > 90) {
this.filterData[data][item].grade = this.gradeAPlus;
} else if (totalMarks > 80 && totalMarks < 90) {
this.filterData[data][item].grade = this.gradeA;
} else if (totalMarks > 70 && totalMarks < 80) {
this.filterData[data][item].grade = this.gradeBPlus;
} else if (totalMarks > 60 && totalMarks < 70) {
this.filterData[data][item].grade = this.gradeB;
} else if (totalMarks > 50 && totalMarks < 60) {
this.filterData[data][item].grade = this.gradeCPlus;
} else if (totalMarks > 40 && totalMarks < 50) {
this.filterData[data][item].grade = this.gradeC;
}
}
}
// console.log("this.filterData-----------last", this.filterData);
this.showLoader = false;
})
.catch((error) => {
// console.log("err====>", err);
this.showLoader = false;
this.snackbar = true;
// this.text = error.response.data.message;
// if (error.response.status === 401) {
// this.$router.replace({ path: "/" });
// this.$store.dispatch("setToken", null);
// this.$store.dispatch("Id", null);
// }
});
},
printProgressReport() {
this.printLoader = true;
setTimeout(() => {
// Pass the element id here
this.$htmlToPaper("printMe");
this.printLoader = false;
}, 4000);
},
getUserData() {
http()
.get("/getParticularUserDetail")
.then((response) => {
this.userData = response.data.data;
})
.catch((error) => {
if (error.response.status === 401) {
this.$router.replace({ path: "/" });
this.$store.dispatch("setToken", null);
this.$store.dispatch("Id", null);
}
});
},
},
};
</script>
<style scoped>
table {
border-collapse: collapse;
border: 1px solid #e2e7eb;
}
th,
td {
border: 1px solid #e2e7eb;
padding: 0px;
text-align: center;
}
table.feeTypeTable {
table-layout: auto !important;
width: 100% !important;
}
.bg-sky {
background-color: #98b2cc !important;
}
.bg-sky-light {
background-color: #89a0b8;
}
.bg-purple {
background-color: #9583ac;
}
.bg-skyDark {
background-color: #956785;
}
/* .report {
overflow: hidden;
max-width: 794px;
margin: 0px auto;
margin-bottom: 10px;
padding: 30px;
} */
.line {
border-bottom: 1px solid #ddd;
overflow: hidden;
padding-bottom: 10px;
vertical-align: middle;
margin-bottom: 4px;
}
.school-logo {
float: left;
}
.school-name {
box-sizing: border-box;
}
.school-info {
width: 100%;
overflow: hidden;
}
.school-address {
float: left;
width: 40%;
}
.student-data {
float: right;
width: 40%;
}
.student-info {
float: left;
}
@media screen and (max-width: 380px) {
.tableRsponsive {
/* display: block; */
position: relative;
overflow: scroll;
}
}
</style> s