source: src/sections/invoice/view/invoice-edit-view.tsx@ 057453c

main
Last change on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago

feat: implement employees

  • 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 InvoiceEditView({ id }: Props) {
22 const settings = useSettingsContext();
23
24 const { currentInvoice } = useGetInvoice({ id });
25 console.log('currentInvoice', currentInvoice);
26
27 return (
28 <Container maxWidth={settings.themeStretch ? false : 'lg'}>
29 <CustomBreadcrumbs
30 heading="Edit"
31 links={[
32 {
33 name: 'Dashboard',
34 href: paths.dashboard.root,
35 },
36 {
37 name: 'Invoice',
38 href: paths.dashboard.invoice.root,
39 },
40 { name: currentInvoice?.invoiceNumber },
41 ]}
42 sx={{
43 mb: { xs: 3, md: 5 },
44 }}
45 />
46
47 {currentInvoice && <InvoiceNewEditForm currentInvoice={currentInvoice} />}
48 </Container>
49 );
50}
Note: See TracBrowser for help on using the repository browser.