1260 lines
26 KiB
TypeScript
1260 lines
26 KiB
TypeScript
import React, { ReactElement, useEffect } from 'react';
|
|
import Head from 'next/head'
|
|
import DatePicker from "react-datepicker";
|
|
import "react-datepicker/dist/react-datepicker.css";
|
|
import dayjs from "dayjs";
|
|
import {useAppDispatch, useAppSelector} from "../../stores/hooks";
|
|
import {useRouter} from "next/router";
|
|
import { fetch } from '../../stores/invoices/invoicesSlice'
|
|
import {saveFile} from "../../helpers/fileSaver";
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
import ImageField from "../../components/ImageField";
|
|
import LayoutAuthenticated from "../../layouts/Authenticated";
|
|
import {getPageTitle} from "../../config";
|
|
import SectionTitleLineWithButton from "../../components/SectionTitleLineWithButton";
|
|
import SectionMain from "../../components/SectionMain";
|
|
import CardBox from "../../components/CardBox";
|
|
import BaseButton from "../../components/BaseButton";
|
|
import BaseDivider from "../../components/BaseDivider";
|
|
import {mdiChartTimelineVariant} from "@mdi/js";
|
|
import {SwitchField} from "../../components/SwitchField";
|
|
import FormField from "../../components/FormField";
|
|
|
|
import {hasPermission} from "../../helpers/userPermissions";
|
|
|
|
|
|
const InvoicesView = () => {
|
|
const router = useRouter()
|
|
const dispatch = useAppDispatch()
|
|
const { invoices } = useAppSelector((state) => state.invoices)
|
|
|
|
const { currentUser } = useAppSelector((state) => state.auth);
|
|
|
|
|
|
const { id } = router.query;
|
|
|
|
function removeLastCharacter(str) {
|
|
console.log(str,`str`)
|
|
return str.slice(0, -1);
|
|
}
|
|
|
|
useEffect(() => {
|
|
dispatch(fetch({ id }));
|
|
}, [dispatch, id]);
|
|
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('View invoices')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={removeLastCharacter('View invoices')} main>
|
|
<BaseButton
|
|
color='info'
|
|
label='Edit'
|
|
href={`/invoices/invoices-edit/?id=${id}`}
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{hasPermission(currentUser, 'READ_ORGANIZATIONS') &&
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Organization</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>{invoices?.organization?.name ?? 'No data'}</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Vendor</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>{invoices?.vendor?.name ?? 'No data'}</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Contract</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>{invoices?.contract?.contract_number ?? 'No data'}</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Project</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>{invoices?.project?.name ?? 'No data'}</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>ExpenseCategory</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>{invoices?.expense_category?.name ?? 'No data'}</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>InvoiceNumber</p>
|
|
<p>{invoices?.invoice_number}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='InvoiceDate'>
|
|
{invoices.invoice_date ? <DatePicker
|
|
dateFormat="yyyy-MM-dd hh:mm"
|
|
showTimeSelect
|
|
selected={invoices.invoice_date ?
|
|
new Date(
|
|
dayjs(invoices.invoice_date).format('YYYY-MM-DD hh:mm'),
|
|
) : null
|
|
}
|
|
disabled
|
|
/> : <p>No InvoiceDate</p>}
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='ReceivedAt'>
|
|
{invoices.received_at ? <DatePicker
|
|
dateFormat="yyyy-MM-dd hh:mm"
|
|
showTimeSelect
|
|
selected={invoices.received_at ?
|
|
new Date(
|
|
dayjs(invoices.received_at).format('YYYY-MM-DD hh:mm'),
|
|
) : null
|
|
}
|
|
disabled
|
|
/> : <p>No ReceivedAt</p>}
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='DueDate'>
|
|
{invoices.due_date ? <DatePicker
|
|
dateFormat="yyyy-MM-dd hh:mm"
|
|
showTimeSelect
|
|
selected={invoices.due_date ?
|
|
new Date(
|
|
dayjs(invoices.due_date).format('YYYY-MM-DD hh:mm'),
|
|
) : null
|
|
}
|
|
disabled
|
|
/> : <p>No DueDate</p>}
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>SubtotalAmount</p>
|
|
<p>{invoices?.subtotal_amount || 'No data'}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>TaxAmount</p>
|
|
<p>{invoices?.tax_amount || 'No data'}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>TotalAmount</p>
|
|
<p>{invoices?.total_amount || 'No data'}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Currency</p>
|
|
<p>{invoices?.currency ?? 'No data'}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Status</p>
|
|
<p>{invoices?.status ?? 'No data'}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='Multi Text' hasTextareaHeight>
|
|
<textarea className={'w-full'} disabled value={invoices?.notes} />
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Payment_requests Invoice</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<th>RequestNumber</th>
|
|
|
|
|
|
|
|
<th>RequestedAmount</th>
|
|
|
|
|
|
|
|
<th>Currency</th>
|
|
|
|
|
|
|
|
<th>PaymentMethod</th>
|
|
|
|
|
|
|
|
<th>Status</th>
|
|
|
|
|
|
|
|
|
|
|
|
<th>RequestedAt</th>
|
|
|
|
|
|
|
|
<th>Justification</th>
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{invoices.payment_requests_invoice && Array.isArray(invoices.payment_requests_invoice) &&
|
|
invoices.payment_requests_invoice.map((item: any) => (
|
|
<tr key={item.id} onClick={() => router.push(`/payment_requests/payment_requests-view/?id=${item.id}`)}>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="request_number">
|
|
{ item.request_number }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="requested_amount">
|
|
{ item.requested_amount }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="currency">
|
|
{ item.currency }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="payment_method">
|
|
{ item.payment_method }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="status">
|
|
{ item.status }
|
|
</td>
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="requested_at">
|
|
{ dataFormatter.dateTimeFormatter(item.requested_at) }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="justification">
|
|
{ item.justification }
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!invoices?.payment_requests_invoice?.length && <div className={'text-center py-4'}>No data</div>}
|
|
</CardBox>
|
|
</>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<BaseDivider />
|
|
|
|
<BaseButton
|
|
color='info'
|
|
label='Back'
|
|
onClick={() => router.push('/invoices/invoices-list')}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
InvoicesView.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated
|
|
|
|
permission={'READ_INVOICES'}
|
|
|
|
>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default InvoicesView; |