fix: Download invoice pdf of the payment link page

This commit is contained in:
Ahmed Bouhuolia
2024-10-05 21:46:48 +02:00
parent 2649f1c326
commit c89b2367e6
3 changed files with 15 additions and 5 deletions

View File

@@ -43,9 +43,9 @@ export class PaymentLinksApplication {
* Retrieves the sale invoice pdf of the given payment link id.
* @param {number} tenantId
* @param {number} paymentLinkId
* @returns
* @returns {Promise<Buffer> }
*/
public getPaymentLinkInvoicePdf(paymentLinkId: string) {
public getPaymentLinkInvoicePdf(paymentLinkId: string): Promise<Buffer> {
return this.getPaymentLinkInvoicePdfService.getPaymentLinkInvoicePdf(
paymentLinkId
);