Renamed close date to R4P RPS-76

This commit is contained in:
Patrick Fic
2021-01-12 11:42:21 -08:00
parent 9add09cedc
commit f8030a5c5f
7 changed files with 10 additions and 12 deletions

View File

@@ -1,7 +1,5 @@
New Features:
- Added 'This Quarter' and 'Last Quarter' date quick select.
- Renamed 'Close Date' to 'Ready for Payment' to better align with MPI terminology.
Bug Fixes:
- Resolved an issue where launching a second instance of RPS would cause the program to freeze.
- Date filtering will now ensure only correct dates are reported on, regardless of time zone.
- Added negative RPS calculations on combined estimate lines like assemblies.
- Updated grouping typo on group lookup popup.

View File

@@ -24,7 +24,7 @@ export default function CloseDateDisplayMolecule({ jobId, close_date }) {
});
if (!result.errors) {
message.success("Close date updated.");
message.success("R4P date updated.");
} else {
message.error("Error updating job.");
}

View File

@@ -42,8 +42,8 @@ export default function JobsDetailDescriptionMolecule({ loading, job }) {
<Descriptions.Item
label={
<Tooltip title="This is the date you will submit for payment from MPI.">
Close Date
<Tooltip title="This is the date you will submit for payment from MPI. This should always be the latest date in the case of supplements.">
Ready for Payment Date
</Tooltip>
}
>

View File

@@ -59,7 +59,7 @@ export function JobsListItemMolecule({
{item.clm_no || "No Claim Number"}
{!item.close_date && (
<WarningOutlined
title="No close date has been set for this job."
title="No Ready for Payment Date has been set for this job."
style={{ marginLeft: ".5rem", color: "orange" }}
/>
)}

View File

@@ -40,7 +40,7 @@ export default function JobsSearchFieldsMolecule({ callSearchQuery }) {
<DatePicker.RangePicker />
</Form.Item>
<Form.Item name="closeDateIsNull" valuePropName="checked">
<Checkbox>Only Jobs with No Close Date</Checkbox>
<Checkbox>Only Jobs with No Ready For Payment Date</Checkbox>
</Form.Item>
<Form.Item shouldUpdate>
{() => {

View File

@@ -29,7 +29,7 @@ export function ReportingDatesMolecule({ queryReportingData }) {
<Form form={form} onFinish={handleFinish}>
<div style={{ display: "flex" }}>
<Form.Item
label="Close Date Between"
label="Ready for Payment Date Between"
name="dateRange"
rules={[{ type: "array", required: true }]}
>

View File

@@ -9,7 +9,7 @@ import { setSelectedJobId } from "../../../redux/application/application.actions
import {
selectReportData,
selectReportLoading,
selectScorecard
selectScorecard,
} from "../../../redux/reporting/reporting.selectors";
import { alphaSort } from "../../../util/sorters";
import VehicleGroupAlertAtom from "../../atoms/vehicle-group-alert/vehicle-group-alert.atom";
@@ -46,7 +46,7 @@ export function ReportingJobsListMolecule({
sorter: (a, b) => alphaSort(a.clm_no, b.clm_no),
},
{
title: "Close Date",
title: "Ready for Payment Date",
dataIndex: "close_date",
key: "close_date",
render: (text, record) => moment(record.close_date).format("MM/DD/yyyy"),