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 | |
---|
1 | import { Invoice } from 'mvpmasters-shared';
|
---|
2 | import InvoiceEEPDF from './invoice-ee-pdf';
|
---|
3 | import InvoiceMKPDF from './invoice-mk-pdf';
|
---|
4 |
|
---|
5 | type Props = {
|
---|
6 | invoice: Invoice;
|
---|
7 | currentStatus: string;
|
---|
8 | };
|
---|
9 |
|
---|
10 | export 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.