IO-1428 IO-1338 Add ownr_ph2.

This commit is contained in:
Patrick Fic
2021-10-07 09:47:10 -07:00
parent 42c779f368
commit 51f3b5927b
22 changed files with 182 additions and 1 deletions

View File

@@ -69,6 +69,20 @@ export default function JobsFindModalComponent({
);
},
},
{
title: t("jobs.fields.ownr_ph2"),
dataIndex: "ownr_ph2",
key: "ownr_ph2",
width: "12%",
ellipsis: true,
render: (text, record) => {
return record.ownr_ph2 ? (
<PhoneFormatter>{record.ownr_ph2}</PhoneFormatter>
) : (
t("general.labels.unknown")
);
},
},
{
title: t("jobs.fields.status"),
dataIndex: "status",