undo: count of print

This commit is contained in:
Julian Krauser 2025-04-10 12:45:29 +02:00
parent 2a7a0ad523
commit 2e88c8db54

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`
);
}