Added insurance company name to jobs lists. IO-409

This commit is contained in:
Patrick Fic
2020-12-16 16:52:40 -08:00
parent b256771e8c
commit aff73cb6e6
2 changed files with 13 additions and 7 deletions

View File

@@ -14,7 +14,6 @@ export default function JobsList({ refetch, loading, jobs, total }) {
const { page, sortcolumn, sortorder } = search;
const history = useHistory();
const { t } = useTranslation();
const columns = [
{
@@ -139,6 +138,12 @@ export default function JobsList({ refetch, loading, jobs, total }) {
);
},
},
{
title: t("jobs.fields.ins_co_nm"),
dataIndex: "ins_co_nm",
key: "ins_co_nm",
ellipsis: true,
},
{
title: t("jobs.fields.clm_total"),
dataIndex: "clm_total",

View File

@@ -150,12 +150,7 @@ export function JobsList({ bodyshop }) {
) : null;
},
},
{
title: t("jobs.fields.ins_co_nm"),
dataIndex: "ins_co_nm",
key: "ins_co_nm",
ellipsis: true,
},
{
title: t("jobs.fields.status"),
dataIndex: "status",
@@ -227,6 +222,12 @@ export function JobsList({ bodyshop }) {
);
},
},
{
title: t("jobs.fields.ins_co_nm"),
dataIndex: "ins_co_nm",
key: "ins_co_nm",
ellipsis: true,
},
{
title: t("jobs.fields.clm_total"),
dataIndex: "clm_total",