Add Part Stock and Product Stock Events sections to Inventory components
- Introduced new 'Part Stock Events' and 'Product Stock Events' sections in PartStockInfo and ProductStockInfo components, respectively. - Updated state management to include events and modified the UI to display event-related information. - Added icons and collapsible sections for better organization and user experience.
This commit is contained in:
parent
f85b176709
commit
db249d9dc9
@ -24,6 +24,7 @@ import DocumentPrintButton from '../../common/DocumentPrintButton.jsx'
|
|||||||
import UserNotifierToggle from '../../common/UserNotifierToggle.jsx'
|
import UserNotifierToggle from '../../common/UserNotifierToggle.jsx'
|
||||||
import ScrollBox from '../../common/ScrollBox.jsx'
|
import ScrollBox from '../../common/ScrollBox.jsx'
|
||||||
import HistoryDisplay from '../../common/HistoryDisplay.jsx'
|
import HistoryDisplay from '../../common/HistoryDisplay.jsx'
|
||||||
|
import PartStockIcon from '../../../Icons/PartStockIcon.jsx'
|
||||||
|
|
||||||
const log = loglevel.getLogger('PartStockInfo')
|
const log = loglevel.getLogger('PartStockInfo')
|
||||||
log.setLevel(config.logLevel)
|
log.setLevel(config.logLevel)
|
||||||
@ -37,7 +38,7 @@ const PartStockInfo = () => {
|
|||||||
'PartStockInfo',
|
'PartStockInfo',
|
||||||
{
|
{
|
||||||
info: true,
|
info: true,
|
||||||
stocks: true,
|
events: true,
|
||||||
history: true,
|
history: true,
|
||||||
notes: true,
|
notes: true,
|
||||||
auditLogs: false
|
auditLogs: false
|
||||||
@ -91,6 +92,7 @@ const PartStockInfo = () => {
|
|||||||
disabled={objectFormState.loading}
|
disabled={objectFormState.loading}
|
||||||
items={[
|
items={[
|
||||||
{ key: 'info', label: 'Part Stock Information' },
|
{ key: 'info', label: 'Part Stock Information' },
|
||||||
|
{ key: 'events', label: 'Part Stock Events' },
|
||||||
{ key: 'history', label: 'Part Stock History' },
|
{ key: 'history', label: 'Part Stock History' },
|
||||||
{ key: 'notes', label: 'Notes' },
|
{ key: 'notes', label: 'Notes' },
|
||||||
{ key: 'auditLogs', label: 'Audit Logs' }
|
{ key: 'auditLogs', label: 'Audit Logs' }
|
||||||
@ -128,7 +130,9 @@ const PartStockInfo = () => {
|
|||||||
}}
|
}}
|
||||||
editLoading={objectFormState.editLoading}
|
editLoading={objectFormState.editLoading}
|
||||||
formValid={objectFormState.formValid}
|
formValid={objectFormState.formValid}
|
||||||
disabled={objectFormState.beingEditedByOther || objectFormState.loading}
|
disabled={
|
||||||
|
objectFormState.beingEditedByOther || objectFormState.loading
|
||||||
|
}
|
||||||
loading={objectFormState.editLoading}
|
loading={objectFormState.editLoading}
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
@ -177,6 +181,24 @@ const PartStockInfo = () => {
|
|||||||
</InfoCollapse>
|
</InfoCollapse>
|
||||||
</ActionHandler>
|
</ActionHandler>
|
||||||
|
|
||||||
|
<InfoCollapse
|
||||||
|
title='Part Stock Events'
|
||||||
|
icon={<PartStockIcon />}
|
||||||
|
active={collapseState.events}
|
||||||
|
onToggle={(expanded) => updateCollapseState('events', expanded)}
|
||||||
|
collapseKey='events'
|
||||||
|
>
|
||||||
|
{objectFormState.loading ? (
|
||||||
|
<InfoCollapsePlaceholder />
|
||||||
|
) : (
|
||||||
|
<ObjectTable
|
||||||
|
type='stockEvent'
|
||||||
|
masterFilter={{ 'parent._id': partStockId }}
|
||||||
|
visibleColumns={{ parent: false }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</InfoCollapse>
|
||||||
|
|
||||||
<InfoCollapse
|
<InfoCollapse
|
||||||
title='Part Stock History'
|
title='Part Stock History'
|
||||||
icon={<GraphIcon />}
|
icon={<GraphIcon />}
|
||||||
|
|||||||
@ -19,6 +19,7 @@ import InfoCircleIcon from '../../../Icons/InfoCircleIcon.jsx'
|
|||||||
import NoteIcon from '../../../Icons/NoteIcon.jsx'
|
import NoteIcon from '../../../Icons/NoteIcon.jsx'
|
||||||
import AuditLogIcon from '../../../Icons/AuditLogIcon.jsx'
|
import AuditLogIcon from '../../../Icons/AuditLogIcon.jsx'
|
||||||
import PartStockIcon from '../../../Icons/PartStockIcon.jsx'
|
import PartStockIcon from '../../../Icons/PartStockIcon.jsx'
|
||||||
|
import ProductStockIcon from '../../../Icons/ProductStockIcon.jsx'
|
||||||
import GraphIcon from '../../../Icons/GraphIcon.jsx'
|
import GraphIcon from '../../../Icons/GraphIcon.jsx'
|
||||||
import ObjectForm from '../../common/ObjectForm.jsx'
|
import ObjectForm from '../../common/ObjectForm.jsx'
|
||||||
import EditButtons from '../../common/EditButtons.jsx'
|
import EditButtons from '../../common/EditButtons.jsx'
|
||||||
@ -48,6 +49,7 @@ const ProductStockInfo = () => {
|
|||||||
{
|
{
|
||||||
info: true,
|
info: true,
|
||||||
partStocks: true,
|
partStocks: true,
|
||||||
|
events: true,
|
||||||
history: true,
|
history: true,
|
||||||
notes: true,
|
notes: true,
|
||||||
auditLogs: false
|
auditLogs: false
|
||||||
@ -115,6 +117,7 @@ const ProductStockInfo = () => {
|
|||||||
items={[
|
items={[
|
||||||
{ key: 'info', label: 'Product Stock Information' },
|
{ key: 'info', label: 'Product Stock Information' },
|
||||||
{ key: 'partStocks', label: 'Part Stocks' },
|
{ key: 'partStocks', label: 'Part Stocks' },
|
||||||
|
{ key: 'events', label: 'Product Stock Events' },
|
||||||
{ key: 'history', label: 'Product Stock History' },
|
{ key: 'history', label: 'Product Stock History' },
|
||||||
{ key: 'notes', label: 'Notes' },
|
{ key: 'notes', label: 'Notes' },
|
||||||
{ key: 'auditLogs', label: 'Audit Logs' }
|
{ key: 'auditLogs', label: 'Audit Logs' }
|
||||||
@ -221,6 +224,24 @@ const ProductStockInfo = () => {
|
|||||||
</ObjectForm>
|
</ObjectForm>
|
||||||
</ActionHandler>
|
</ActionHandler>
|
||||||
|
|
||||||
|
<InfoCollapse
|
||||||
|
title='Product Stock Events'
|
||||||
|
icon={<ProductStockIcon />}
|
||||||
|
active={collapseState.events}
|
||||||
|
onToggle={(expanded) => updateCollapseState('events', expanded)}
|
||||||
|
collapseKey='events'
|
||||||
|
>
|
||||||
|
{objectFormState.loading ? (
|
||||||
|
<InfoCollapsePlaceholder />
|
||||||
|
) : (
|
||||||
|
<ObjectTable
|
||||||
|
type='stockEvent'
|
||||||
|
masterFilter={{ 'parent._id': productStockId }}
|
||||||
|
visibleColumns={{ parent: false }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</InfoCollapse>
|
||||||
|
|
||||||
<InfoCollapse
|
<InfoCollapse
|
||||||
title='Product Stock History'
|
title='Product Stock History'
|
||||||
icon={<GraphIcon />}
|
icon={<GraphIcon />}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user