source: src/sections/invoice/view/invoice-copy-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// api
8import { useGetInvoice } from 'src/api/invoice';
9// components
10import { useSettingsContext } from 'src/components/settings';
11import CustomBreadcrumbs from 'src/components/custom-breadcrumbs';
12//
13import InvoiceNewEditForm from '../invoice-new-edit-form';
14
15// ----------------------------------------------------------------------
16
17type Props = {
18 id: string;
19};
20
21export default function InvoiceCopyView({ id }: Props) {
22 const settings = useSettingsContext();
23
24 const { currentInvoice } = useGetInvoice({ id });
25
26 return (
27 <Container maxWidth={settings.themeStretch ? false : 'lg'}>
28 <CustomBreadcrumbs
29 heading="Edit"
30 links={[
31 {
32 name: 'Dashboard',
33 href: paths.dashboard.root,
34 },
35 {
36 name: 'Invoice',
37 href: paths.dashboard.invoice.root,
38 },
39 { name: currentInvoice?.invoiceNumber },
40 ]}
41 sx={{
42 mb: { xs: 3, md: 5 },
43 }}
44 />
45
46 {currentInvoice && <InvoiceNewEditForm isCopy currentInvoice={currentInvoice} />}
47 </Container>
48 );
49}
Note: See TracBrowser for help on using the repository browser.