Final 1.1.8 release.

This commit is contained in:
Patrick Fic
2024-03-05 07:00:42 -05:00
parent a42c2d68ca
commit d5883fb6e2
3 changed files with 11 additions and 5 deletions

View File

@@ -138,5 +138,10 @@
"title": "Release Notes for 1.1.7",
"date": "10/19/2023",
"notes": "Bug Fixes:\r\n- Minor bug fixes and improvements."
},
"1.1.8": {
"title": "Release Notes for 1.1.8",
"date": "02/07/2024",
"notes": "Bug Fixes:\r\n- Improved detection for wheel related repair lines."
}
}

View File

@@ -99,14 +99,14 @@ async function DecodeEstimate(
returnValue = {
ERROR: "Job ignored. This is an -02 claim. Claim #. " + job.CLM_NO,
};
}
}
// else if (job.LOSS_TYPE.toLowerCase() === "h") {
// log.info("Job ignored. This is a hail damage claim. " + job.CLM_NO);
// returnValue = {
// ERROR: "Job ignored. This is a hail damage claim. " + job.CLM_NO,
// };
// }
else {
else {
delete job.LOSS_TYPE;
returnValue = _.transform(job, function (result, val, key) {
result[key.toLowerCase()] = val;
@@ -478,7 +478,8 @@ function V1Ruleset(jobline, joblines) {
jobline.line_desc.toLowerCase().startsWith("urethane") ||
jobline.line_desc.toLowerCase().startsWith("w/shield adhesive") ||
//jobline.line_desc.toLowerCase().includes("wheel") || Removed as a part of RPS-41
jobline.line_desc.toLowerCase().includes("tire") ||
(jobline.line_desc.toLowerCase().includes("tire") &&
!jobline.line_desc.toLowerCase().includes("sensor")) ||
jobline.line_desc.toLowerCase().startsWith("hazardous") ||
jobline.line_desc.toLowerCase().startsWith("detail") ||
jobline.line_desc.toLowerCase().startsWith("clean") ||

View File

@@ -3,7 +3,7 @@
"productName": "ImEX RPS",
"author": "ImEX Systems Inc. <support@thinkimex.com>",
"description": "ImEX RPS",
"version": "1.1.7",
"version": "1.1.8",
"main": "electron/main.js",
"homepage": "./",
"dependencies": {
@@ -45,7 +45,7 @@
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && yarn run sentry:sourcemaps",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently -k \"npm start\" \"npm:electron\"",