import { useMemo } from 'react'; import { Page, View, Text, Image, Document, Font, StyleSheet } from '@react-pdf/renderer'; // utils import { fDate } from 'src/utils/format-time'; import { fCurrency } from 'src/utils/format-number'; // types import { Invoice } from 'src/schemas'; import { createFullAddress } from 'src/utils/create-full-address'; import { getQuantityType } from 'src/utils/get-invoice-quantity-type'; // import signatureImage from 'src/assets/png/signature.png'; // ---------------------------------------------------------------------- Font.register({ family: 'Roboto', fonts: [{ src: '/fonts/Roboto-Regular.ttf' }, { src: '/fonts/Roboto-Bold.ttf' }], }); const useStyles = () => useMemo( () => StyleSheet.create({ col4: { width: '25%' }, col8: { width: '75%' }, col6: { width: '50%' }, mb4: { marginBottom: 4 }, mb8: { marginBottom: 8 }, mb40: { marginBottom: 40 }, h3: { fontSize: 16, fontWeight: 700 }, h4: { fontSize: 13, fontWeight: 700 }, body1: { fontSize: 11 }, body2: { fontSize: 10 }, subtitle1: { fontSize: 11, fontWeight: 700 }, subtitle2: { fontSize: 10, fontWeight: 700 }, alignRight: { textAlign: 'right' }, page: { fontSize: 9, lineHeight: 1.6, fontFamily: 'Roboto', backgroundColor: '#FFFFFF', textTransform: 'capitalize', padding: '40px 24px 120px 24px', }, footer: { left: 0, right: 0, bottom: 0, padding: 24, margin: 'auto', borderTopWidth: 1, borderStyle: 'solid', position: 'absolute', borderColor: '#DFE3E8', }, signatures: { left: 0, right: 0, bottom: 0, padding: 24, margin: 'auto', borderStyle: 'solid', position: 'absolute', }, gridContainer: { flexDirection: 'row', justifyContent: 'space-between', }, table: { display: 'flex', width: 'auto', }, tableHead: { padding: '5px 5px', flexDirection: 'row', }, tableRow: { padding: '5px 5px', flexDirection: 'row', borderBottomWidth: 1, borderStyle: 'solid', borderColor: '#DFE3E8', }, noBorder: { paddingTop: 8, paddingBottom: 0, borderBottomWidth: 0, }, tableCell_1: { width: '5%', }, tableCell_2: { width: '50%', paddingRight: 16, }, tableCell_3: { width: '15%', }, }), [] ); // ---------------------------------------------------------------------- type Props = { invoice: Invoice; currentStatus: string; }; export default function InvoiceMKPDF({ invoice, currentStatus }: Props) { const { items, dueDate, discount, invoiceTo, issueDate, totalAmount, invoiceFrom, invoiceNumber, subTotal, currency, quantityType, } = invoice; const styles = useStyles(); return ( Invoice No. {invoiceNumber} {invoiceFrom.name} VAT Number: 4057020552553 IBAN: MK07210701001535321 SWIFT: TUTNMK22 Invoice from {invoiceFrom.name} {createFullAddress(invoiceFrom.address)} {invoiceFrom.phoneNumber} {invoiceFrom.email} Invoice to {invoiceTo.name} {invoiceTo.companyId && ( Company ID: {invoiceTo.companyId} )} {createFullAddress(invoiceTo.address)} {invoiceTo.phoneNumber} {invoiceTo.email} Invoice Number {invoiceNumber} Date Issued {fDate(issueDate)} Due date {fDate(dueDate)} Invoice Details # Description {getQuantityType(invoice)} Unit price Total {items.map((item, index) => ( {index + 1} {item.title} {item.description} {item.quantity} {item.price} {fCurrency(item.price * item.quantity, currency)} ))} Subtotal {fCurrency(subTotal, currency)} {!!discount && ( Discount {fCurrency(-discount, currency)} )} {/* Taxes {fCurrency(taxes)} */} Total {fCurrency(totalAmount, currency)} {/* Add this block for signature lines */} {/* */} {invoiceFrom.representative} {invoiceFrom.name} {invoiceTo.representative} {invoiceTo.name} NOTES VAT is not calculated according to article 14, paragraph 3, point 5 from the VAT act. Have a question? {invoiceFrom.email} ); }