diff --git a/src/components/Dashboard/Inventory/StockAudits/StockAuditInfo.jsx b/src/components/Dashboard/Inventory/StockAudits/StockAuditInfo.jsx
index d59abca4..c0511c14 100644
--- a/src/components/Dashboard/Inventory/StockAudits/StockAuditInfo.jsx
+++ b/src/components/Dashboard/Inventory/StockAudits/StockAuditInfo.jsx
@@ -14,6 +14,7 @@ import InfoCircleIcon from '../../../Icons/InfoCircleIcon.jsx'
import NoteIcon from '../../../Icons/NoteIcon.jsx'
import AuditLogIcon from '../../../Icons/AuditLogIcon.jsx'
import StockAuditIcon from '../../../Icons/StockAuditIcon.jsx'
+import StockEventIcon from '../../../Icons/StockEventIcon.jsx'
import ObjectForm from '../../common/ObjectForm.jsx'
import EditButtons from '../../common/EditButtons.jsx'
import ObjectTableNavigationButtons from '../../common/ObjectTableNavigationButtons.jsx'
@@ -41,6 +42,7 @@ const StockAuditInfo = () => {
{
info: true,
auditLines: true,
+ stockEvents: true,
notes: true,
auditLogs: false
}
@@ -108,6 +110,7 @@ const StockAuditInfo = () => {
items={[
{ key: 'info', label: 'Stock Audit Information' },
{ key: 'auditLines', label: 'Audit Lines' },
+ { key: 'stockEvents', label: 'Stock Events' },
{ key: 'notes', label: 'Notes' },
{ key: 'auditLogs', label: 'Audit Logs' }
]}
@@ -212,6 +215,32 @@ const StockAuditInfo = () => {
+ }
+ active={collapseState.stockEvents}
+ onToggle={(expanded) =>
+ updateCollapseState('stockEvents', expanded)
+ }
+ collapseKey='stockEvents'
+ >
+ {objectFormState.loading ? (
+
+ ) : (
+
+ )}
+
+
}