IO-1718 Add part type to OEC.

This commit is contained in:
Patrick Fic
2022-02-09 15:51:19 -08:00
parent 415d6cca29
commit 22dfcc215e
11 changed files with 102 additions and 7 deletions

View File

@@ -319,6 +319,15 @@ export function PartsOrderListTableComponent({
},
]
: []),
{
title: t("parts_orders.fields.part_type"),
dataIndex: "part_type",
key: "part_type",
render: (text, record) =>
record.part_type
? t(`joblines.fields.part_types.${record.part_type}`)
: null,
},
{
title: t("parts_orders.fields.oem_partno"),
dataIndex: "oem_partno",