[UI] Add "IPN" column to installed items table
This commit is contained in:
parent
66d1884ad9
commit
8f2974d701
|
|
@ -16,7 +16,12 @@ import {
|
||||||
} from '../../forms/StockForms';
|
} from '../../forms/StockForms';
|
||||||
import { useCreateApiFormModal } from '../../hooks/UseForm';
|
import { useCreateApiFormModal } from '../../hooks/UseForm';
|
||||||
import { useUserState } from '../../states/UserState';
|
import { useUserState } from '../../states/UserState';
|
||||||
import { PartColumn, StatusColumn, StockColumn } from '../ColumnRenderers';
|
import {
|
||||||
|
IPNColumn,
|
||||||
|
PartColumn,
|
||||||
|
StatusColumn,
|
||||||
|
StockColumn
|
||||||
|
} from '../ColumnRenderers';
|
||||||
import { InvenTreeTable } from '../InvenTreeTable';
|
import { InvenTreeTable } from '../InvenTreeTable';
|
||||||
|
|
||||||
export default function InstalledItemsTable({
|
export default function InstalledItemsTable({
|
||||||
|
|
@ -61,6 +66,7 @@ export default function InstalledItemsTable({
|
||||||
PartColumn({
|
PartColumn({
|
||||||
part: 'part_detail'
|
part: 'part_detail'
|
||||||
}),
|
}),
|
||||||
|
IPNColumn({}),
|
||||||
StockColumn({
|
StockColumn({
|
||||||
accessor: '',
|
accessor: '',
|
||||||
title: t`Stock Item`,
|
title: t`Stock Item`,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue