236 lines
7.3 KiB
TypeScript
236 lines
7.3 KiB
TypeScript
import { mdiChartTimelineVariant, mdiUpload } from '@mdi/js';
|
|
import Head from 'next/head';
|
|
import React, { ReactElement, useEffect, useState } from 'react';
|
|
import DatePicker from 'react-datepicker';
|
|
import 'react-datepicker/dist/react-datepicker.css';
|
|
import dayjs from 'dayjs';
|
|
|
|
import CardBox from '../../components/CardBox';
|
|
import LayoutAuthenticated from '../../layouts/Authenticated';
|
|
import SectionMain from '../../components/SectionMain';
|
|
import SectionTitleLineWithButton from '../../components/SectionTitleLineWithButton';
|
|
import { getPageTitle } from '../../config';
|
|
|
|
import { Field, Form, Formik } from 'formik';
|
|
import FormField from '../../components/FormField';
|
|
import BaseDivider from '../../components/BaseDivider';
|
|
import BaseButtons from '../../components/BaseButtons';
|
|
import BaseButton from '../../components/BaseButton';
|
|
import FormCheckRadio from '../../components/FormCheckRadio';
|
|
import FormCheckRadioGroup from '../../components/FormCheckRadioGroup';
|
|
import FormFilePicker from '../../components/FormFilePicker';
|
|
import FormImagePicker from '../../components/FormImagePicker';
|
|
import { SelectField } from '../../components/SelectField';
|
|
import { SelectFieldMany } from '../../components/SelectFieldMany';
|
|
import { SwitchField } from '../../components/SwitchField';
|
|
import { RichTextField } from '../../components/RichTextField';
|
|
|
|
import { update, fetch } from '../../stores/documents/documentsSlice';
|
|
import { useAppDispatch, useAppSelector } from '../../stores/hooks';
|
|
import { useRouter } from 'next/router';
|
|
import { saveFile } from '../../helpers/fileSaver';
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
import ImageField from '../../components/ImageField';
|
|
|
|
import { hasPermission } from '../../helpers/userPermissions';
|
|
|
|
const EditDocumentsPage = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
const initVals = {
|
|
document_number: '',
|
|
|
|
project: null,
|
|
|
|
document_type: '',
|
|
|
|
prepared_by: '',
|
|
|
|
status: '',
|
|
|
|
cash_balance: false,
|
|
|
|
payment_date: new Date(),
|
|
|
|
amount: '',
|
|
|
|
shelf_number: '',
|
|
|
|
approved_by: '',
|
|
|
|
organizations: null,
|
|
};
|
|
const [initialValues, setInitialValues] = useState(initVals);
|
|
|
|
const { documents } = useAppSelector((state) => state.documents);
|
|
|
|
const { currentUser } = useAppSelector((state) => state.auth);
|
|
|
|
const { id } = router.query;
|
|
|
|
useEffect(() => {
|
|
dispatch(fetch({ id: id }));
|
|
}, [id]);
|
|
|
|
useEffect(() => {
|
|
if (typeof documents === 'object') {
|
|
setInitialValues(documents);
|
|
}
|
|
}, [documents]);
|
|
|
|
useEffect(() => {
|
|
if (typeof documents === 'object') {
|
|
const newInitialVal = { ...initVals };
|
|
Object.keys(initVals).forEach(
|
|
(el) => (newInitialVal[el] = documents[el]),
|
|
);
|
|
setInitialValues(newInitialVal);
|
|
}
|
|
}, [documents]);
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(update({ id: id, data }));
|
|
await router.push('/documents/documents-list');
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Edit documents')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title={'Edit documents'}
|
|
main
|
|
>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
enableReinitialize
|
|
initialValues={initialValues}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
<FormField label='DocumentNumber'>
|
|
<Field name='document_number' placeholder='DocumentNumber' />
|
|
</FormField>
|
|
|
|
<FormField label='Project' labelFor='project'>
|
|
<Field
|
|
name='project'
|
|
id='project'
|
|
component={SelectField}
|
|
options={initialValues.project}
|
|
itemRef={'projects'}
|
|
showField={'name'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='DocumentType' labelFor='document_type'>
|
|
<Field
|
|
name='document_type'
|
|
id='document_type'
|
|
component='select'
|
|
>
|
|
<option value='BPV'>BPV</option>
|
|
|
|
<option value='JV'>JV</option>
|
|
|
|
<option value='RV'>RV</option>
|
|
</Field>
|
|
</FormField>
|
|
|
|
<FormField label='PreparedBy'>
|
|
<Field name='prepared_by' placeholder='PreparedBy' />
|
|
</FormField>
|
|
|
|
<FormField label='Status' labelFor='status'>
|
|
<Field name='status' id='status' component='select'>
|
|
<option value='Filed'>Filed</option>
|
|
|
|
<option value='InProgress'>InProgress</option>
|
|
</Field>
|
|
</FormField>
|
|
|
|
<FormField label='CashBalance' labelFor='cash_balance'>
|
|
<Field
|
|
name='cash_balance'
|
|
id='cash_balance'
|
|
component={SwitchField}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='PaymentDate'>
|
|
<DatePicker
|
|
dateFormat='yyyy-MM-dd hh:mm'
|
|
showTimeSelect
|
|
selected={
|
|
initialValues.payment_date
|
|
? new Date(
|
|
dayjs(initialValues.payment_date).format(
|
|
'YYYY-MM-DD hh:mm',
|
|
),
|
|
)
|
|
: null
|
|
}
|
|
onChange={(date) =>
|
|
setInitialValues({ ...initialValues, payment_date: date })
|
|
}
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField label='Amount'>
|
|
<Field type='number' name='amount' placeholder='Amount' />
|
|
</FormField>
|
|
|
|
<FormField label='ShelfNumber'>
|
|
<Field name='shelf_number' placeholder='ShelfNumber' />
|
|
</FormField>
|
|
|
|
<FormField label='ApprovedBy'>
|
|
<Field name='approved_by' placeholder='ApprovedBy' />
|
|
</FormField>
|
|
|
|
<FormField label='organizations' labelFor='organizations'>
|
|
<Field
|
|
name='organizations'
|
|
id='organizations'
|
|
component={SelectField}
|
|
options={initialValues.organizations}
|
|
itemRef={'organizations'}
|
|
showField={'name'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<BaseDivider />
|
|
<BaseButtons>
|
|
<BaseButton type='submit' color='info' label='Submit' />
|
|
<BaseButton type='reset' color='info' outline label='Reset' />
|
|
<BaseButton
|
|
type='reset'
|
|
color='danger'
|
|
outline
|
|
label='Cancel'
|
|
onClick={() => router.push('/documents/documents-list')}
|
|
/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
EditDocumentsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'UPDATE_DOCUMENTS'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default EditDocumentsPage;
|