admitCard.vue
22.8 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
<template>
<v-container fluid class="body-color">
<!-- **** Admit Card 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 xs12 sm12 lg10 class="ml-2">
<v-autocomplete
v-model="getReport.examId"
label="Please Select Exam"
:items="examData"
item-text="examName"
item-value="_id"
:rules="examRules"
@change="getExamList"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg3 v-if="getReport.examId">
<v-layout>
<v-flex xs12 sm12 lg10 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-if="getReport.classId">
<v-layout>
<v-flex xs12 sm12 lg10 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-if="getReport.sectionId">
<v-layout>
<v-flex xs12 sm12 lg10 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-layout>
<v-flex xs12 sm12 lg10 class="ml-2">
<v-autocomplete
label="Please Select View Type"
type="text"
:rules="typeRules"
:items="typeList"
v-model="getReport.form"
item-text="name"
item-value="value"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg3>
<v-btn
@click="getSchedule"
round
dark
:loading="loading"
class="open-dialog-button mt-3"
>Get Report</v-btn>
</v-flex>
</v-layout>
</v-flex>
</v-form>
</v-card>
<div v-show="showTable">
<v-flex xs12 sm12 md10 style="margin:auto">
<v-layout>
<v-flex xs12>
<v-btn class="open-dialog-button right" round dark @click="printAdmitReport()">
Print
<v-icon right dark>print</v-icon>
</v-btn>
</v-flex>
</v-layout>
<div id="printMe" v-if="frontPart">
<v-card
style="
background-color: #fff;
border: 1px solid #ddd;
color: rgba(0,0,0,0.87);
overflow-x: auto;
display: block;
padding:14px !important;
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;"
>
<v-layout style="border-bottom: 1px solid #ddd;margin: 8px; auto">
<v-flex xs3 style="margin-bottom:0px">
<img
:src="userData.schoolLogoUrl"
style="widht:80px;height:80px;"
alt="logo"
v-if="userData.schoolLogoUrl"
/>
<img
src="/static/default_thumb.png"
style="widht:80px;height:80px;"
v-else-if="!userData.schoolLogoUrl"
/>
<div class="school-name">
<h3>{{ schoolData.address }}</h3>
<p>{{ schoolData.mobile }}</p>
</div>
</v-flex>
<v-flex xs5 style="text-align:center;margin-bottom:0px">
<p
style="font-size:24px;color: #700CE8;letter-spacing:1px;margin-bottom: 4px"
>{{ schoolData.name }}</p>
<p>{{ schoolData.email }}</p>
<div>
<h4>{{ getScheduleList.scheduleData[0].examId.examName }} Exam Admit Card</h4>
</div>
</v-flex>
<v-flex xs4 style="text-align:center;margin-bottom:0px">
<!-- <img
v-if="getScheduleList.studentData.profilePicUrl"
:src="getScheduleList.studentData.profilePicUrl"
style="widht:80px;height:80px;"
/>
<img
v-if="!getScheduleList.studentData.profilePicUrl"
src="/static/icon/user.png"
style="widht:80px;"
/>-->
<img
src="/static/icon/user.png"
v-if="!getScheduleList.studentData.profilePicUrl"
width="80"
/>
<img
:src="getScheduleList.studentData.profilePicUrl"
onerror="this.src='/static/icon/user.png';"
v-if="getScheduleList.studentData.profilePicUrl"
width="80"
/>
</v-flex>
</v-layout>
<v-layout>
<v-flex xs5 style="margin-bottom:10px">
<p style="font-size: 16px;margin:0px;margin-bottom:8px;">
<b>Name :</b>
<span>{{getScheduleList.studentData.name}}</span>
</p>
<p style="font-size: 16px;margin:0px;margin-bottom:8px;">
<b>Class :</b>
<span>{{getScheduleList.studentData.classId.classNum}}</span>
</p>
<p style="font-size: 16px;margin:0px;margin-bottom:8px;">
<b>Roll :</b>
<span>{{getScheduleList.studentData.rollNo}}</span>
</p>
</v-flex>
<v-flex xs5 style="margin-bottom:10px">
<p style="font-size: 16px;margin:0px;margin-bottom:8px;">
<b>Section :</b>
<span>{{getScheduleList.studentData.sectionId.name }}</span>
</p>
<p style="font-size: 16px;margin:0px;margin-bottom:8px;">
<b>Blood Group :</b>
<span style="color: #707478">{{getScheduleList.studentData.bloodGroup }}</span>
</p>
<p style="font-size: 16px;margin:0px;margin-bottom:8px;">Subject in which Appearing</p>
</v-flex>
</v-layout>
<table
class="mb-5 tableRsponsive feeTypeTable"
style="border: 1px solid lightgrey;
border-collapse: collapse;!important
table-layout: auto !important;
width: 100% !important;"
>
<thead style="border: 1px solid lightgrey !important;">
<tr style="border: 1px solid lightgrey !important;padding:4px;">
<td style="border: 1px solid lightgrey !important;padding: 6px;">No</td>
<td style="border: 1px solid lightgrey !important;padding: 6px;">Exam Date</td>
<td style="border: 1px solid lightgrey !important;padding: 6px;">Start Time</td>
<td style="border: 1px solid lightgrey !important;padding: 6px;">End Time</td>
<td style="border: 1px solid lightgrey !important;padding: 6px;">Subject Name</td>
</tr>
</thead>
<tbody style="border: 1px solid lightgrey !important;">
<tr v-for="(scheduleData,i) in getScheduleList.scheduleData" :key="i">
<td style="border:1px solid lightgrey !important; padding:6px;">{{ i + 1 }}</td>
<td
style="border: 1px solid lightgrey !important;padding: 6px;"
>{{ scheduleData.date ? scheduleData.date : '-' }}</td>
<td
style="border: 1px solid lightgrey !important;padding: 6px;"
>{{ scheduleData.timeFrom ? scheduleData.timeFrom : "-" }}</td>
<td
style="border: 1px solid lightgrey !important;padding: 6px;"
>{{ scheduleData.timeTo ? scheduleData.timeTo : "-"}}</td>
<td
style="border: 1px solid lightgrey !important;padding: 6px;"
>{{ scheduleData.subjectName ? scheduleData.subjectName : "-" }}</td>
</tr>
<tr v-if="getScheduleList.scheduleData.length === 0">
<td style="border: 1px soild lightgrey !importand;padding:6px;">-</td>
<td style="border: 1px solid lightgrey !important;padding: 6px;">-</td>
<td style="border: 1px solid lightgrey !important;padding: 6px;">-</td>
<td style="border: 1px solid lightgrey !important;padding: 6px;">-</td>
<td style="border: 1px solid lightgrey !important;padding: 6px;">-</td>
</tr>
</tbody>
</table>
</v-card>
</div>
<div id="printMe" v-if="backPart">
<v-card
style="
text-align:center
background-color: #fff;
border: 1px solid #ddd;
color: rgba(0,0,0,0.87);
overflow-x: auto;
display: block;
padding:14px !important;
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;"
>
<div
style="
margin-bottom: 16px;
overflow: hidden;
padding: 50px 90px;"
>
<ol style="
margin: 0;
margin-bottom: 10px;">
<p
style="
margin-bottom: 16px;
line-height: 20px;
text-align: left;"
>
<b>1. Do not Carry these Electronic Gadgets:</b>
Electronic gadgets(Bluetooth devices,head phones,pen/buttonhole cameras,scanner,calculator,storage devices etc)
in the examination lab. These items are strictly prohibited from examination lab.
</p>
<p
style="
margin-bottom: 16px;
line-height: 20px;
text-align: left;"
>
<b>2. Do not Carry these Ornaments:</b>
Candidates should also not wear charms,veil,items containing such as rings,bracelet,earings,nose-pin,chains,
necklace,pendants,badge,broach,hair-pin,hair-band.
</p>
<p
style="
margin-bottom: 16px;
line-height: 20px;
text-align: left;"
>
<b>3. What Candidates wear to Examination hall:</b>
Candidates should not wear clothes with full sleeves or big button,etc. Candidates are adviced to wear open footwear
like slippers,sandals instead of shoes as the candidates could be asked to remove shoes by the frisking staff.
</p>
<p
style="
margin-bottom: 16px;
line-height: 20px;
text-align: left;"
>
<b>4. Do not carry Stationary:</b>
Pen/pencil and paper for rough work would be provided in examination lab. Electronic watch (timer)will be available
on the computer screen alloted to the candidates.
</p>
<p
style="
margin-bottom: 16px;
line-height: 20px;
text-align: left;"
>
<b>5. Do not Carry Bags:</b>
Don not Carry back pack, College bag or any other bag like hand bag. If candidates brings any bag, they must make a
arrangement for safe custody of these items.The Commission shall not make any arrangement nor be responsible for the
safe custody of such items.
</p>
<p
style="
margin-bottom: 16px;
line-height: 20px;
text-align: left;"
>
<b>6. What will Happen if you carry Prohibited items to Exam Hall:</b>
If any such prohibited item is found in the possession of a candidate in examination lab, his/her candidature is liable
to be canceled and legal/criminal proceedings could be initiated against him/her. He/she would also liable to be debarred
from appearing in future examinations of the Commission for a period of 3 years.
</p>
<p
style="
margin-bottom: 16px;
line-height: 20px;
text-align: left;
"
>
<b>7. Candidate should not create Disturbance in Exam Hall:</b>
If any candidate is found obstructing the conduct of examination or creating disturbances at the examination venue,
his/her candidature shall be summarily canceled.
</p>
</ol>
</div>
</v-card>
</div>
</v-flex>
</div>
<v-snackbar
:timeout="timeout"
:top="y === 'top'"
:right="x === 'right'"
:vertical="mode === 'vertical'"
v-model="snackbar"
:color="color"
>{{ text }}</v-snackbar>
<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";
var qs = require("qs");
export default {
data: () => ({
snackbar: false,
color: "",
y: "top",
x: "right",
mode: "",
timeout: 10000,
text: "",
showLoader: false,
valid: true,
userData: {},
frontPart: false,
backPart: false,
loading: false,
showTable: false,
showData: false,
hideprintAdmitReport: false,
examRules: [(v) => !!v || "Exam Field is required"],
classRules: [(v) => !!v || "Class Field Required"],
sectionRules: [(v) => !!v || "Section Field is required"],
studentRules: [(v) => !!v || "Student Field is required"],
typeRules: [(v) => !!v || "Type Field is required"],
backgroundRules: [(v) => !!v || "Background Field is required"],
pagination: {
rowsPerPage: 10,
},
search: "",
classList: [],
studentData: {},
scheduleData: {},
examData: [],
addSection: [],
getStudentsList: [{ name: "Select All", _id: "selectAll" }],
getScheduleList: [],
getScheduleListArray: [],
getReport: {},
examName: [],
typeList: [
{
name: "Front Part",
value: "frontPart",
},
{
name: "Back Part",
value: "backPart",
},
],
backgroundList: ["Yes", "No"],
headers: [
{
text: "No",
align: "",
sortable: false,
value: "No",
},
{
text: "Exam Date",
align: "center",
sortable: false,
value: "date",
},
{
text: "Start Time",
align: "center",
sortable: false,
value: "timeFrom",
},
{
text: "End Time",
align: "center",
sortable: false,
value: "timeTo",
},
{
text: "Subject Name",
align: "center",
sortable: false,
value: "subjectName",
},
],
}),
mounted() {
this.token = this.$store.state.token;
this.getClass();
this.getExamList();
this.getUserData();
},
methods: {
getExamList() {
this.showLoader = true;
this.loadingSearch = true;
http()
.get("/getExamsList", {
headers: { Authorization: "Bearer " + this.token },
})
.then((response) => {
this.examData = response.data.data;
this.showLoader = false;
this.loadingSearch = false;
})
.catch((error) => {
this.showLoader = false;
this.loadingSearch = 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);
}
});
},
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) => {
for (var i = 0; i < response.data.data.length; i++) {
this.getStudentsList.push(response.data.data[i]);
}
this.showLoader = false;
})
.catch((error) => {
console.log("err====>", error);
this.showLoader = false;
});
},
getSchedule() {
if (this.$refs.form.validate()) {
this.showLoader = true;
let studentId = [];
if (this.getReport.studentId == "selectAll") {
studentId = [];
for (var i = 1; i < this.getStudentsList.length; i++) {
studentId.push(this.getStudentsList[i]._id);
}
} else {
studentId = this.getReport.studentId;
}
console.log("this.getReport.studentId - ", studentId);
http()
.get("/getScheduleForParticularStudent", {
params: {
examId: this.getReport.examId,
classId: this.getReport.classId,
sectionId: this.getReport.sectionId,
studentId: studentId,
},
paramsSerializer: (params) => {
return qs.stringify(params);
},
})
.then((response) => {
this.showTable = true;
this.getScheduleList = response.data.data;
this.schoolData = response.data.data.studentData.schoolId;
if (response.data.data.scheduleData.length === 0) {
this.showLoader = false;
this.snackbar = true;
this.text = "Data not found!";
this.color = "error";
return;
}
this.showData = true;
if (this.getReport.form === "frontPart") {
this.frontPart = true;
this.backPart = false;
}
if (this.getReport.form === "backPart") {
this.frontPart = false;
this.backPart = true;
}
this.showLoader = false;
})
.catch((error) => {
this.showLoader = false;
});
}
},
printAdmitReport() {
// Pass the element id here
this.$htmlToPaper("printMe");
},
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);
}
});
},
// created() {
// this.$root.$on("app:search", search => {
// this.search = search;
// });
// },
// beforeDestroy() {
// // dont forget to remove the listener
// this.$root.$off("app:search");
// }
},
};
</script>
<style>
.admincardreport {
border: 1px solid #ddd;
overflow: hidden;
padding: 20px 50px;
/* margin-bottom: 10px;
min-height: 443px; */
}
.line {
border-bottom: 1px solid #ddd;
overflow: hidden;
padding-bottom: 10px;
vertical-align: middle;
/* margin-bottom: 4px; */
}
.school-logo {
float: left;
}
.student-logo {
position: absolute;
top: 221px;
right: 221px;
}
.school-name {
box-sizing: border-box;
align-items: center;
}
/* .student-info {
float: left;
width: max-content;
text-align: initial;
} */
.student-info {
width: 50%;
float: left;
text-align: initial;
}
.student-info p {
width: 50%;
float: left;
margin-bottom: 1px;
padding: 0 0px;
font-size: 12px;
}
.admitcardreportbackend ol {
margin: 0;
margin-bottom: 10px;
}
.admitcardreportbackend p {
line-height: 20px;
text-align: left;
}
</style>