This commit is contained in:
Skylar Grant 2024-09-13 09:47:06 -04:00
parent d04ab004b1
commit 7ef2c64bc4
1 changed files with 20 additions and 18 deletions

View File

@ -23,33 +23,33 @@ module.exports = {
credentials(username, studentId) {
// Create the output text
return [
{ font: 'public/Outfit-Regular.ttf', text: `Username:` },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${username}\n` },
{ font: 'public/Outfit-Regular.ttf', text: 'Email:' },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${username}@kvcc.me.edu\n` },
{ font: 'public/Outfit-Regular.ttf', text: `Student ID:` },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${studentId}\n` },
{ font: 'public/Outfit-Regular.ttf', text: 'Note: the MyKV Portal uses your username to sign in, not email.' },
{ font: 'public/Outfit-Regular.ttf', text: `Username:`, moveDownAfter: false },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${username}`, moveDownAfter: true },
{ font: 'public/Outfit-Regular.ttf', text: 'Email:', moveDownAfter: false },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${username}@kvcc.me.edu`, moveDownAfter: true },
{ font: 'public/Outfit-Regular.ttf', text: `Student ID:`, moveDownAfter: false },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${studentId}`, moveDownAfter: true },
{ font: 'public/Outfit-Regular.ttf', text: 'Note: the MyKV Portal uses your username to sign in, not email.', moveDownAfter: true },
]
},
maineCC() {
// Create the output text
return [
{ font: 'public/Outfit-Regular.ttf', text: 'Kennebec Valley Community College is migrating email domains from @kvcc.me.edu to @mainecc.edu.\n' },
{ font: 'public/Outfit-Regular.ttf', text: `For support with this transition, please contact:` },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${mccContractor.name}` },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${mccContractor.phone}` },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${mccContractor.email}` },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${mccContractor.site}\n` }
{ font: 'public/Outfit-Regular.ttf', text: 'Kennebec Valley Community College is migrating email domains from @kvcc.me.edu to @mainecc.edu.', moveDownAfter: true },
{ font: 'public/Outfit-Regular.ttf', text: `For support with this transition, please contact:`, moveDownAfter: true },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${mccContractor.name}`, moveDownAfter: false },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${mccContractor.phone}`, moveDownAfter: false },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${mccContractor.email}`, moveDownAfter: false },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${mccContractor.site}`, moveDownAfter: true }
];
},
tempPassword(password) {
// Create the output text
return [
{ font: 'public/Outfit-Regular.ttf', text: 'We have changed your password to a temporary password, shown below. Next time you log into Microsoft you will be prompted to change your password.\n' },
{ font: 'public/Outfit-Regular.ttf', text: 'Temporary Password:' },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${password}\n` },
{ font: 'public/Outfit-Regular.ttf', text: 'Password requirements:\n8+ characters\n1+ Uppercase\n1+ Lowercase\n1+ Special (!/_=.,?)\n' }
{ font: 'public/Outfit-Regular.ttf', text: 'We have changed your password to a temporary password, shown below. Next time you log into Microsoft you will be prompted to change your password.\n', moveDownAfter: true },
{ font: 'public/Outfit-Regular.ttf', text: 'Temporary Password:', moveDownAfter: false },
{ font: 'public/RobotoMono-SemiBold.ttf', text: `${password}\n`, moveDownAfter: false },
{ font: 'public/Outfit-Regular.ttf', text: 'Password requirements:\n8+ characters\n1+ Uppercase\n1+ Lowercase\n1+ Special (!/_=.,?)\n', moveDownAfter: true }
]
}
},
@ -91,10 +91,12 @@ module.exports = {
// });
for (row of infoArray) {
// doc.moveDown();
doc.font(row.font).text(row.text, {
align: 'left',
});
if (row.moveDownAfter) {
doc.moveDown();
}
}
doc.font('public/Outfit-Regular.ttf').text(receiptFooter, {