source: src/sections/invoice/view/invoice-details-view.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: 1.2 KB
Line 
1'use client';
2
3// @mui
4import Container from '@mui/material/Container';
5// routes
6import { paths } from 'src/routes/paths';
7// components
8import { useSettingsContext } from 'src/components/settings';
9import CustomBreadcrumbs from 'src/components/custom-breadcrumbs';
10//
11import { useGetInvoice } from 'src/api/invoice';
12import InvoiceDetails from '../invoice-details';
13
14// ----------------------------------------------------------------------
15
16type Props = {
17 id: string;
18};
19
20export 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.