Add IPN column to BOM pricing panel (#12344)
This commit is contained in:
parent
ae12fa342a
commit
9fd074b202
|
|
@ -19,6 +19,7 @@ import { CHART_COLORS } from '../../../components/charts/colors';
|
|||
import { tooltipFormatter } from '../../../components/charts/tooltipFormatter';
|
||||
import {
|
||||
DateColumn,
|
||||
IPNColumn,
|
||||
PartColumn
|
||||
} from '../../../components/tables/ColumnRenderers';
|
||||
import { InvenTreeTable } from '../../../components/tables/InvenTreeTable';
|
||||
|
|
@ -104,6 +105,9 @@ export default function BomPricingPanel({
|
|||
title: t`Component`,
|
||||
part: 'sub_part_detail'
|
||||
}),
|
||||
IPNColumn({
|
||||
accessor: 'sub_part_detail.IPN'
|
||||
}),
|
||||
{
|
||||
accessor: 'quantity',
|
||||
title: t`Quantity`,
|
||||
|
|
|
|||
Loading…
Reference in New Issue