2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-11-14 03:46:44 +00:00

[PUI] Platform fixes (#8324)

* Add "IPN" column to build order allocated stock table

* Allow sorting and searching by IPN

* Handle allocations where allocated but required == 0

* Add "no info available" message to part scheduling

* Adjust PartSchedulingTable

* Icon fix

* Add "latest serial number" information to PartDetail page

* Cleanup code for serial-number placeholder in forms

* Logic fix for displaying non-unity pack quantity

* Fix description field on SupplierPart page

* Fix duplicate table column
This commit is contained in:
Oliver
2024-10-22 12:17:24 +11:00
committed by GitHub
parent e219b7c914
commit ddea9fa4b9
12 changed files with 140 additions and 83 deletions

View File

@@ -97,6 +97,14 @@ export default function BuildAllocatedStockTable({
switchable: false,
render: (record: any) => PartColumn({ part: record.part_detail })
},
{
accessor: 'part_detail.IPN',
ordering: 'IPN',
hidden: !showPartInfo,
title: t`IPN`,
sortable: true,
switchable: true
},
{
hidden: !showPartInfo,
accessor: 'bom_reference',