import { useRef, useState } from 'react' import { useLocation } from 'react-router-dom' import { Space, Flex, Card, Modal } from 'antd' import { LoadingOutlined } from '@ant-design/icons' import loglevel from 'loglevel' import config from '../../../../config.js' import useCollapseState from '../../hooks/useCollapseState.js' import NotesPanel from '../../common/NotesPanel.jsx' import InfoCollapse from '../../common/InfoCollapse.jsx' import ObjectInfo from '../../common/ObjectInfo.jsx' import ObjectProperty from '../../common/ObjectProperty.jsx' import ViewButton from '../../common/ViewButton.jsx' import InfoCircleIcon from '../../../Icons/InfoCircleIcon.jsx' import NoteIcon from '../../../Icons/NoteIcon.jsx' import AuditLogIcon from '../../../Icons/AuditLogIcon.jsx' import ObjectForm from '../../common/ObjectForm.jsx' import EditButtons from '../../common/EditButtons.jsx' import LockIndicator from '../../common/LockIndicator.jsx' import ActionHandler from '../../common/ActionHandler.jsx' import ObjectActions from '../../common/ObjectActions.jsx' import ObjectTable from '../../common/ObjectTable.jsx' import InfoCollapsePlaceholder from '../../common/InfoCollapsePlaceholder.jsx' import DocumentPrintButton from '../../common/DocumentPrintButton.jsx' import ScrollBox from '../../common/ScrollBox.jsx' import { getModelByName, getModelProperty } from '../../../../database/ObjectModels.js' import OrderItemIcon from '../../../Icons/OrderItemIcon.jsx' import ShipmentIcon from '../../../Icons/ShipmentIcon.jsx' import PostInvoice from './PostInvoice.jsx' import AcknowledgeInvoice from './AcknowledgeInvoice.jsx' import NewPayment from '../Payments/NewPayment.jsx' const log = loglevel.getLogger('InvoiceInfo') log.setLevel(config.logLevel) const InvoiceInfo = () => { const location = useLocation() const objectFormRef = useRef(null) const actionHandlerRef = useRef(null) const invoiceId = new URLSearchParams(location.search).get('invoiceId') const [collapseState, updateCollapseState] = useCollapseState('InvoiceInfo', { info: true, invoiceOrderItems: true, invoiceShipments: true, payments: true, notes: true, auditLogs: true }) const [objectFormState, setEditFormState] = useState({ isEditing: false, editLoading: false, formValid: false, lock: null, loading: false, objectData: {} }) const [postInvoiceOpen, setPostInvoiceOpen] = useState(false) const [acknowledgeInvoiceOpen, setAcknowledgeInvoiceOpen] = useState(false) const [newPaymentOpen, setNewPaymentOpen] = useState(false) const actions = { reload: () => { objectFormRef?.current?.handleFetchObject?.() return true }, edit: () => { objectFormRef?.current?.startEditing?.() return false }, cancelEdit: () => { objectFormRef?.current?.cancelEditing?.() return true }, finishEdit: () => { objectFormRef?.current?.handleUpdate?.() return true }, delete: () => { objectFormRef?.current?.handleDelete?.() return true }, post: () => { setPostInvoiceOpen(true) return true }, acknowledge: () => { setAcknowledgeInvoiceOpen(true) return true }, newPayment: () => { setNewPaymentOpen(true) return true } } const editDisabled = getModelByName('invoice') ?.actions?.find((action) => action.name === 'edit') ?.disabled(objectFormState.objectData) ?? false return ( <> { actionHandlerRef.current.callAction('finishEdit') }} cancelEditing={() => { actionHandlerRef.current.callAction('cancelEdit') }} startEditing={() => { actionHandlerRef.current.callAction('edit') }} editLoading={objectFormState.editLoading} formValid={objectFormState.formValid} disabled={ objectFormState.lock?.locked || objectFormState.loading || editDisabled } loading={objectFormState.editLoading} /> { setEditFormState((prev) => ({ ...prev, ...state })) }} > {({ loading, isEditing, objectData }) => ( } active={collapseState.info} onToggle={(expanded) => updateCollapseState('info', expanded) } collapseKey='info' > } isEditing={isEditing} type='invoice' labelWidth='225px' objectData={objectData} visibleProperties={{ invoiceOrderItems: false, invoiceShipments: false }} /> } active={collapseState.invoiceOrderItems} onToggle={(expanded) => updateCollapseState('invoiceOrderItems', expanded) } collapseKey='invoiceOrderItems' > } active={collapseState.invoiceShipments} onToggle={(expanded) => updateCollapseState('invoiceShipments', expanded) } collapseKey='invoiceShipments' > )} } active={collapseState.payments} onToggle={(expanded) => updateCollapseState('payments', expanded)} collapseKey='payments' > {objectFormState.loading ? ( ) : ( )} } active={collapseState.notes} onToggle={(expanded) => updateCollapseState('notes', expanded)} collapseKey='notes' > } active={collapseState.auditLogs} onToggle={(expanded) => updateCollapseState('auditLogs', expanded) } collapseKey='auditLogs' > {objectFormState.loading ? ( ) : ( )} { setPostInvoiceOpen(false) }} width={500} footer={null} destroyOnHidden={true} centered={true} > { setPostInvoiceOpen(false) actions.reload() }} objectData={objectFormState.objectData} /> { setAcknowledgeInvoiceOpen(false) }} width={515} footer={null} destroyOnHidden={true} centered={true} > { setAcknowledgeInvoiceOpen(false) actions.reload() }} objectData={objectFormState.objectData} /> { setNewPaymentOpen(false) }} destroyOnHidden={true} > { setNewPaymentOpen(false) actions.reload() }} reset={newPaymentOpen} defaultValues={{ invoice: { ...objectFormState.objectData }, amount: objectFormState.objectData?.grandTotalAmount }} /> ) } export default InvoiceInfo