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
|
Rev | Line | |
---|
[057453c] | 1 | import { Invoice } from 'src/schemas';
|
---|
[5d6f37a] | 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.