mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Fix "sales_order" filter for buildId (#8024)
This commit is contained in:
parent
c096f2f43a
commit
99e822213d
@ -309,10 +309,7 @@ export default function BuildDetail() {
|
||||
label: t`Child Build Orders`,
|
||||
icon: <IconSitemap />,
|
||||
content: build.pk ? (
|
||||
<BuildOrderTable
|
||||
parentBuildId={build.pk}
|
||||
salesOrderId={build.sales_order}
|
||||
/>
|
||||
<BuildOrderTable parentBuildId={build.pk} />
|
||||
) : (
|
||||
<Skeleton />
|
||||
)
|
||||
|
@ -194,6 +194,7 @@ export function BuildOrderTable({
|
||||
params: {
|
||||
part: partId,
|
||||
ancestor: parentBuildId,
|
||||
sales_order: salesOrderId,
|
||||
part_detail: true
|
||||
},
|
||||
tableActions: tableActions,
|
||||
|
Loading…
Reference in New Issue
Block a user