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 | // 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 |
|
---|
| 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 currentInvoice={currentInvoice} />}
|
---|
| 47 | </Container>
|
---|
| 48 | );
|
---|
| 49 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.