WIP Audit Changes

This commit is contained in:
Patrick Fic
2024-04-18 17:05:49 -07:00
parent cf14111a73
commit 49c28c2f6b
8 changed files with 203 additions and 48 deletions

View File

@@ -29,14 +29,15 @@ ipcMain.on(ipcTypes.default.audit.toMain.browseForFile, async (event, arg) => {
clm_no: line[0],
close_date: line[1],
v_model_yr: line[3],
v_model_desc: line[4],
under20kmiles: line[5],
pan_total: line[6],
paa_total: line[7],
pal_total: line[8],
pam_total: line[9],
eligible_db_price_total: Math.round((line[10] + Number.EPSILON) * 100) / 100,
eligible_act_price_total: Math.round((line[11] + Number.EPSILON) * 100) / 100,
v_make_desc: line[4],
v_model: line[5],
under20kmiles: line[6],
pan_total: line[7],
paa_total: line[8],
pal_total: line[9],
pam_total: line[10],
eligible_db_price_total: Math.round((line[11] + Number.EPSILON) * 100) / 100,
eligible_act_price_total: Math.round((line[12] + Number.EPSILON) * 100) / 100,
expected_rps_dollars: Math.round((line[15] + Number.EPSILON) * 100) / 100,
actual_rps_dollars: Math.round((line[16] + Number.EPSILON) * 100) / 100
};