Labeling updates.
This commit is contained in:
@@ -59,7 +59,7 @@ export function AuditResultsOrganism({ selectAuditData }) {
|
||||
{
|
||||
key: "close_date_audit",
|
||||
width: "12%",
|
||||
title: "[Audit] R4P",
|
||||
title: "[MPI Audit] R4P",
|
||||
dataIndex: "close_date_audit",
|
||||
sorter: (a, b) => dateSort(a.audit.close_date, b.audit.close_date),
|
||||
|
||||
@@ -76,7 +76,7 @@ export function AuditResultsOrganism({ selectAuditData }) {
|
||||
render: (text, record) => (
|
||||
<Space split={<Divider type="vertical" />}>
|
||||
<Tooltip title="RPS Expected Savings">{record.rps.expectedRpsDollars.toFormat()}</Tooltip>
|
||||
<Tooltip title="Audit Expected Savings">
|
||||
<Tooltip title="MPI Audit Expected Savings">
|
||||
{Dinero({ amount: Math.round(record.audit.expected_rps_dollars * 100) }).toFormat()}
|
||||
</Tooltip>
|
||||
</Space>
|
||||
@@ -90,7 +90,7 @@ export function AuditResultsOrganism({ selectAuditData }) {
|
||||
render: (text, record) => (
|
||||
<Space split={<Divider type="vertical" />}>
|
||||
<Tooltip title="RPS Actual Savings">{record.rps.jobRpsDollars.toFormat()}</Tooltip>
|
||||
<Tooltip title="Audit Actual Savings">
|
||||
<Tooltip title="MPI Audit Actual Savings">
|
||||
{Dinero({ amount: Math.round(record.audit.actual_rps_dollars * 100) }).toFormat()}
|
||||
</Tooltip>
|
||||
</Space>
|
||||
@@ -100,12 +100,12 @@ export function AuditResultsOrganism({ selectAuditData }) {
|
||||
return (
|
||||
<>
|
||||
<Col span={24}>
|
||||
<Card title="Jobs not found in RPS">
|
||||
<Card title="Jobs in RPS, not found in MPI Audit">
|
||||
<Table columns={missingColumns} dataSource={selectAuditData?.missingFromRps} rowKey="clm_no" />
|
||||
</Card>
|
||||
</Col>
|
||||
<Col span={24}>
|
||||
<Card title="Jobs not found in Audit">
|
||||
<Card title="Jobs in MPI Audit, not in RPS">
|
||||
<Table columns={missingColumns} dataSource={selectAuditData?.missingFromAudit} rowKey="clm_no" />
|
||||
</Card>
|
||||
</Col>
|
||||
|
||||
Reference in New Issue
Block a user