import { IPaymentReceived, PaymentReceivedPdfTemplateAttributes, } from '@/interfaces'; import { contactAddressTextFormat } from '@/utils/address-text-format'; export const transformPaymentReceivedToPdfTemplate = ( payment: IPaymentReceived ): Partial => { return { total: payment.formattedAmount, subtotal: payment.subtotalFormatted, paymentReceivedNumebr: payment.paymentReceiveNo, paymentReceivedDate: payment.formattedPaymentDate, customerName: payment.customer.displayName, lines: payment.entries.map((entry) => ({ invoiceNumber: entry.invoice.invoiceNo, invoiceAmount: entry.invoice.totalFormatted, paidAmount: entry.paymentAmountFormatted, })), customerAddress: contactAddressTextFormat(payment.customer), }; };