patches v1.3.11 #83

Merged
jkeffects merged 11 commits from develop into main 2025-04-10 10:47:13 +00:00
Showing only changes of commit 2e88c8db54 - Show all commits

View file

@ -300,8 +300,8 @@ export abstract class NewsletterHelper {
"pdf",
"success",
newsletterId,
pdfRecipients.length,
index,
pdfRecipients.length + 1,
index + 1,
`successfully printed for ${rec.lastname}, ${rec.firstname}`
);
})
@ -311,8 +311,8 @@ export abstract class NewsletterHelper {
"pdf",
"failed",
newsletterId,
pdfRecipients.length,
index,
pdfRecipients.length + 1,
index + 1,
`failed print for ${rec.lastname}, ${rec.firstname}`
);
});
@ -329,8 +329,8 @@ export abstract class NewsletterHelper {
"pdf",
"success",
newsletterId,
pdfRecipients.length,
pdfRecipients.length,
pdfRecipients.length + 1,
pdfRecipients.length + 1,
"sucessfully combined pdf"
);
})
@ -340,8 +340,8 @@ export abstract class NewsletterHelper {
"pdf",
"failed",
newsletterId,
pdfRecipients.length,
pdfRecipients.length,
pdfRecipients.length + 1,
pdfRecipients.length + 1,
"failed combining pdf"
);
});
@ -351,8 +351,8 @@ export abstract class NewsletterHelper {
"pdf",
"info",
newsletterId,
pdfRecipients.length,
pdfRecipients.length,
pdfRecipients.length + 1,
pdfRecipients.length + 1,
`completed printing process`
);
}