source: src/sections/invoice/invoice-pdf.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 487 bytes
Line 
1import { Invoice } from 'mvpmasters-shared';
2import InvoiceEEPDF from './invoice-ee-pdf';
3import InvoiceMKPDF from './invoice-mk-pdf';
4
5type Props = {
6 invoice: Invoice;
7 currentStatus: string;
8};
9
10export default function InvoicePDF({ invoice, currentStatus }: Props) {
11 return invoice.invoiceFrom.companyNumber === '16911123' ? (
12 <InvoiceEEPDF invoice={invoice} currentStatus={currentStatus} />
13 ) : (
14 <InvoiceMKPDF invoice={invoice} currentStatus={currentStatus} />
15 );
16}
Note: See TracBrowser for help on using the repository browser.