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

[PUI] Fix Build Output Forms (#8184)

* Enhancements for stock item form

* Edit stock item from "build output" table

* Rearrange menu items

* Fix build order line complete action

* Fix for other modals

* Cleanup dead code

* Reload build details after output state change

* Logic fix for plugin table

* Bump API version

* Adds hook for generating placeholder serial numbers

* Add playwright tests

* Remove unused imports

* Cleanup playwright tests
This commit is contained in:
Oliver
2024-09-27 00:35:30 +10:00
committed by GitHub
parent 194640f55a
commit 4f06918c36
29 changed files with 354 additions and 228 deletions

View File

@@ -82,7 +82,7 @@ export default function BuildAllocatedStockTable({
title: t`Part`,
sortable: true,
switchable: false,
render: (record: any) => PartColumn(record.part_detail)
render: (record: any) => PartColumn({ part: record.part_detail })
},
{
hidden: !showPartInfo,