269 lines
8.8 KiB
JavaScript
269 lines
8.8 KiB
JavaScript
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 useCollapseState from '../../hooks/useCollapseState.jsx'
|
|
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 {
|
|
getModelProperty,
|
|
getModelByName
|
|
} from '../../../../database/ObjectModels.js'
|
|
import PostStockTransfer from './PostStockTransfer.jsx'
|
|
import InfoCircleIcon from '../../../Icons/InfoCircleIcon.jsx'
|
|
import NoteIcon from '../../../Icons/NoteIcon.jsx'
|
|
import AuditLogIcon from '../../../Icons/AuditLogIcon.jsx'
|
|
import StockTransferIcon from '../../../Icons/StockTransferIcon.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 UserNotifierToggle from '../../common/UserNotifierToggle.jsx'
|
|
import ScrollBox from '../../common/ScrollBox.jsx'
|
|
|
|
const StockTransferInfo = () => {
|
|
const location = useLocation()
|
|
const objectFormRef = useRef(null)
|
|
const actionHandlerRef = useRef(null)
|
|
const stockTransferId = new URLSearchParams(location.search).get(
|
|
'stockTransferId'
|
|
)
|
|
const [postOpen, setPostOpen] = useState(false)
|
|
const [collapseState, updateCollapseState] = useCollapseState(
|
|
'StockTransferInfo',
|
|
{
|
|
info: true,
|
|
lines: true,
|
|
notes: true,
|
|
auditLogs: false
|
|
}
|
|
)
|
|
|
|
const [objectFormState, setEditFormState] = useState({
|
|
isEditing: false,
|
|
editLoading: false,
|
|
formValid: false,
|
|
locked: false,
|
|
loading: false,
|
|
objectData: {}
|
|
})
|
|
|
|
const actions = {
|
|
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: () => {
|
|
setPostOpen(true)
|
|
return true
|
|
}
|
|
}
|
|
|
|
const editDisabled =
|
|
getModelByName('stockTransfer')
|
|
?.actions?.find((action) => action.name === 'edit')
|
|
?.disabled(objectFormState.objectData) ?? false
|
|
|
|
return (
|
|
<>
|
|
<Flex
|
|
gap='large'
|
|
vertical='true'
|
|
style={{
|
|
maxHeight: '100%',
|
|
minHeight: 0
|
|
}}
|
|
>
|
|
<Flex justify={'space-between'}>
|
|
<Space size='middle'>
|
|
<Space size='small'>
|
|
<ObjectActions
|
|
type='stockTransfer'
|
|
id={stockTransferId}
|
|
disabled={objectFormState.loading}
|
|
objectData={objectFormState.objectData}
|
|
/>
|
|
<ViewButton
|
|
disabled={objectFormState.loading}
|
|
items={[
|
|
{ key: 'info', label: 'Transfer' },
|
|
{ key: 'lines', label: 'Lines' },
|
|
{ key: 'notes', label: 'Notes' },
|
|
{ key: 'auditLogs', label: 'Audit Logs' }
|
|
]}
|
|
visibleState={collapseState}
|
|
updateVisibleState={updateCollapseState}
|
|
/>
|
|
<UserNotifierToggle
|
|
type='stockTransfer'
|
|
objectData={objectFormState.objectData}
|
|
disabled={objectFormState.loading}
|
|
/>
|
|
<DocumentPrintButton
|
|
type='stockTransfer'
|
|
objectData={objectFormState.objectData}
|
|
disabled={objectFormState.loading}
|
|
/>
|
|
</Space>
|
|
<LockIndicator lock={objectFormState.lock} />
|
|
</Space>
|
|
<Space>
|
|
<EditButtons
|
|
isEditing={objectFormState.isEditing}
|
|
handleUpdate={() => {
|
|
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}
|
|
/>
|
|
</Space>
|
|
</Flex>
|
|
|
|
<ScrollBox>
|
|
<Flex vertical gap={'large'}>
|
|
<ActionHandler
|
|
actions={actions}
|
|
loading={objectFormState.loading}
|
|
ref={actionHandlerRef}
|
|
>
|
|
<ObjectForm
|
|
id={stockTransferId}
|
|
type='stockTransfer'
|
|
style={{ height: '100%' }}
|
|
ref={objectFormRef}
|
|
onStateChange={(state) => {
|
|
setEditFormState((prev) => ({ ...prev, ...state }))
|
|
}}
|
|
>
|
|
{({ loading, isEditing, objectData }) => (
|
|
<Flex vertical gap={'large'}>
|
|
<InfoCollapse
|
|
title='Stock transfer'
|
|
icon={<InfoCircleIcon />}
|
|
active={collapseState.info}
|
|
onToggle={(expanded) =>
|
|
updateCollapseState('info', expanded)
|
|
}
|
|
collapseKey='info'
|
|
>
|
|
<ObjectInfo
|
|
loading={loading}
|
|
indicator={<LoadingOutlined />}
|
|
isEditing={isEditing}
|
|
type='stockTransfer'
|
|
objectData={objectData}
|
|
labelWidth='175px'
|
|
visibleProperties={{ lines: false }}
|
|
/>
|
|
</InfoCollapse>
|
|
<InfoCollapse
|
|
title='Lines'
|
|
icon={<StockTransferIcon />}
|
|
active={collapseState.lines}
|
|
onToggle={(expanded) =>
|
|
updateCollapseState('lines', expanded)
|
|
}
|
|
collapseKey='lines'
|
|
>
|
|
<ObjectProperty
|
|
{...getModelProperty('stockTransfer', 'lines')}
|
|
isEditing={isEditing}
|
|
objectData={objectData}
|
|
loading={loading}
|
|
size='medium'
|
|
/>
|
|
</InfoCollapse>
|
|
</Flex>
|
|
)}
|
|
</ObjectForm>
|
|
</ActionHandler>
|
|
|
|
<InfoCollapse
|
|
title='Notes'
|
|
icon={<NoteIcon />}
|
|
active={collapseState.notes}
|
|
onToggle={(expanded) => updateCollapseState('notes', expanded)}
|
|
collapseKey='notes'
|
|
>
|
|
<Card>
|
|
<NotesPanel _id={stockTransferId} type='stockTransfer' />
|
|
</Card>
|
|
</InfoCollapse>
|
|
|
|
<InfoCollapse
|
|
title='Audit Logs'
|
|
icon={<AuditLogIcon />}
|
|
active={collapseState.auditLogs}
|
|
onToggle={(expanded) =>
|
|
updateCollapseState('auditLogs', expanded)
|
|
}
|
|
collapseKey='auditLogs'
|
|
>
|
|
{objectFormState.loading ? (
|
|
<InfoCollapsePlaceholder />
|
|
) : (
|
|
<ObjectTable
|
|
type='auditLog'
|
|
masterFilter={{ 'parent._id': stockTransferId }}
|
|
visibleColumns={{ _id: false, 'parent._id': false }}
|
|
/>
|
|
)}
|
|
</InfoCollapse>
|
|
</Flex>
|
|
</ScrollBox>
|
|
</Flex>
|
|
<Modal
|
|
open={postOpen}
|
|
onCancel={() => {
|
|
setPostOpen(false)
|
|
}}
|
|
width={520}
|
|
footer={null}
|
|
destroyOnHidden={true}
|
|
centered={true}
|
|
>
|
|
<PostStockTransfer
|
|
onOk={() => {
|
|
setPostOpen(false)
|
|
objectFormRef?.current.handleFetchObject()
|
|
}}
|
|
objectData={objectFormState.objectData}
|
|
/>
|
|
</Modal>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default StockTransferInfo
|