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
|
---|
4 | import Container from '@mui/material/Container';
|
---|
5 | // routes
|
---|
6 | import { paths } from 'src/routes/paths';
|
---|
7 | // api
|
---|
8 | import { useGetInvoice } from 'src/api/invoice';
|
---|
9 | // components
|
---|
10 | import { useSettingsContext } from 'src/components/settings';
|
---|
11 | import CustomBreadcrumbs from 'src/components/custom-breadcrumbs';
|
---|
12 | //
|
---|
13 | import InvoiceNewEditForm from '../invoice-new-edit-form';
|
---|
14 |
|
---|
15 | // ----------------------------------------------------------------------
|
---|
16 |
|
---|
17 | type Props = {
|
---|
18 | id: string;
|
---|
19 | };
|
---|
20 |
|
---|
21 | export 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.