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:
1.2 KB
|
Rev | Line | |
---|
[5d6f37a] | 1 | 'use client';
|
---|
| 2 |
|
---|
| 3 | // @mui
|
---|
| 4 | import Container from '@mui/material/Container';
|
---|
| 5 | // routes
|
---|
| 6 | import { paths } from 'src/routes/paths';
|
---|
| 7 | // components
|
---|
| 8 | import { useSettingsContext } from 'src/components/settings';
|
---|
| 9 | import CustomBreadcrumbs from 'src/components/custom-breadcrumbs';
|
---|
| 10 | //
|
---|
| 11 | import { useGetInvoice } from 'src/api/invoice';
|
---|
| 12 | import InvoiceDetails from '../invoice-details';
|
---|
| 13 |
|
---|
| 14 | // ----------------------------------------------------------------------
|
---|
| 15 |
|
---|
| 16 | type Props = {
|
---|
| 17 | id: string;
|
---|
| 18 | };
|
---|
| 19 |
|
---|
| 20 | export default function InvoiceDetailsView({ id }: Props) {
|
---|
| 21 | const settings = useSettingsContext();
|
---|
| 22 |
|
---|
| 23 | const { currentInvoice } = useGetInvoice({ id });
|
---|
| 24 |
|
---|
| 25 | return (
|
---|
| 26 | <Container maxWidth={settings.themeStretch ? false : 'lg'}>
|
---|
| 27 | <CustomBreadcrumbs
|
---|
| 28 | heading={currentInvoice?.invoiceNumber}
|
---|
| 29 | links={[
|
---|
| 30 | {
|
---|
| 31 | name: 'Dashboard',
|
---|
| 32 | href: paths.dashboard.root,
|
---|
| 33 | },
|
---|
| 34 | {
|
---|
| 35 | name: 'Invoice',
|
---|
| 36 | href: paths.dashboard.invoice.root,
|
---|
| 37 | },
|
---|
| 38 | { name: currentInvoice?.invoiceNumber },
|
---|
| 39 | ]}
|
---|
| 40 | sx={{ mb: { xs: 3, md: 5 } }}
|
---|
| 41 | />
|
---|
| 42 |
|
---|
| 43 | {currentInvoice && <InvoiceDetails invoice={currentInvoice} />}
|
---|
| 44 | </Container>
|
---|
| 45 | );
|
---|
| 46 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.