source: src/sections/invoice/invoice-pdf.tsx@ 057453c

main
Last change on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago

feat: implement employees

  • Property mode set to 100644
File size: 481 bytes
RevLine 
[057453c]1import { Invoice } from 'src/schemas';
[5d6f37a]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.