diff --git a/client/cypress/e2e/posting-bills/posting-bills.cy.js b/client/cypress/e2e/posting-bills/posting-bills.cy.js new file mode 100644 index 000000000..14ed8d03e --- /dev/null +++ b/client/cypress/e2e/posting-bills/posting-bills.cy.js @@ -0,0 +1,194 @@ +import uniqueId from "lodash/uniqueId"; + +describe( + "Billing job parts orders", + { + defaultCommandTimeout: 5000, + }, + () => { + beforeEach(() => { + cy.visit("/manage"); + + cy.get("body").then(($body) => { + if ($body.text().includes("Login")) { + // Log in + cy.get('[data-cy="username"]').type("john@imex.dev"); + cy.get('[data-cy="password"]').type("john123"); + cy.get('[data-cy="sign-in-button"]').click(); + } + + cy.get(".ant-table-tbody") + .should("be.visible") + .find("tr") + .should("not.have.class", "ant-table-placeholder"); + + cy.get(".ant-table-row") + .not(':contains("Open")') + .first() + .find("a") + .first() + .click(); + + cy.url().should("include", "/manage/jobs"); + + // Go to repair data tab + cy.get('[data-cy="tab-partssublet"]').should("be.visible").click(); + }); + }); + + it("receives a part bill", () => { + // Find the first row in the parts order + cy.get('[data-cy="part-orders-table"]') + .find(".ant-table-tbody") + .find("> tr:not(.ant-table-measure-row)") + .as("orders-table") + .should("not.have.class", "ant-table-placeholder"); + + cy.get("@orders-table") + .first() + .should("be.visible") + .find('[data-cy="receive-bill-button"]') + .click(); + + // fill out form + // data-cy="bill-form-invoice" + cy.get('[data-cy="bill-form-invoice"]').type(uniqueId()); + + cy.get("#bill-form-date").click(); + cy.get('[title="2023-06-22"]').should("be.visible").click(); + + // get table + cy.get('[data-cy="bill-line-table"]').each(($row) => { + // get retail amount + cy.wrap($row) + .find('[data-cy="bill-line-actual-price"]') + .invoke("val") + .then((p) => { + const vendorPercentOff = 0.2; + + // get cost - vendor's percent off + const cost = p - p * vendorPercentOff; + cy.get('[data-cy="bill-form-bill-total"]').type(p); + + cy.wrap($row).find('[data-cy="bill-line-actual-cost"]').type(cost); + }); + }); + + // Click save + cy.get('[data-cy="bill-form-save-button"]') + .should("not.be.disabled") + .click(); + + cy.get(".ant-notification-notice-message").contains( + "Invoice added successfully." + ); + }); + + it("posts bill directly", () => { + cy.get('[data-cy="bills-post-button"]').should("be.visible").click(); + + // Add New Line + cy.get('[data-cy="bill-line-add-button"]') + .should("not.be.disabled") + .click(); + // Select Vendor + cy.antdSelect("bill-vendor"); + // Select Line + cy.antdSelect("bill-line", "-- Not On Estimate --"); + // Fill the Form + cy.get('[data-cy="bill-form-invoice"]').type(uniqueId("DBP")); + + cy.get("#bill-form-date").click(); + cy.get('[title="2023-06-22"]').should("be.visible").click(); + + // get table + cy.get('[data-cy="bill-line-table"]').each(($row) => { + // get retail amount + cy.wrap($row) + .find('[data-cy="bill-line-actual-price"]') + .invoke("val") + .then((p) => { + const vendorPercentOff = 0.2; + + // get cost - vendor's percent off + const cost = p - p * vendorPercentOff; + cy.get('[data-cy="bill-form-bill-total"]').type(p); + + cy.wrap($row).find('[data-cy="bill-line-actual-cost"]').type(cost); + }); + }); + + // Click save + cy.get('[data-cy="bill-form-save-button"]') + .should("not.be.disabled") + .click(); + + cy.get(".ant-notification-notice-message").contains( + "Invoice added successfully." + ); + }); + + it("posts a bill with save and new", () => { + cy.get('[data-cy="bills-post-button"]').should("be.visible").click(); + + // Add New Line + cy.get('[data-cy="bill-line-add-button"]') + .should("not.be.disabled") + .click(); + // Select Vendor + cy.antdSelect("bill-vendor"); + // Select Line + cy.antdSelect("bill-line", "-- Not On Estimate --"); + // Fill the Form + cy.get('[data-cy="bill-form-invoice"]').type(uniqueId("DBP")); + + cy.get("#bill-form-date").click(); + cy.get('[title="2023-06-22"]').should("be.visible").click(); + + // get table + cy.get('[data-cy="bill-line-table"]').each(($row) => { + // get retail amount + cy.wrap($row) + .find('[data-cy="bill-line-actual-price"]') + .invoke("val") + .then((p) => { + const vendorPercentOff = 0.2; + + // get cost - vendor's percent off + const cost = p - p * vendorPercentOff; + cy.get('[data-cy="bill-form-bill-total"]').type(p); + + cy.wrap($row).find('[data-cy="bill-line-actual-cost"]').type(cost); + }); + }); + + // Click save + cy.get('[data-cy="bill-form-savenew-button"]') + .should("not.be.disabled") + .click(); + + cy.get(".ant-notification-notice-message").contains( + "Invoice added successfully." + ); + }); + + it("uploads a document to a bill", () => { + cy.get('[data-cy="bills-table"]') + .find(".ant-table-tbody") + .find("> tr:not(.ant-table-measure-row)") + .as("bills-table") + .should("not.have.class", "ant-table-placeholder"); + + cy.get("@bills-table") + .first() + .should("be.visible") + .find('[data-cy="edit-bill-button"]') + .click(); + + cy.location("search").should("include", "billid"); + cy.get('[data-cy="bill-edit-form"]') + .find(".ant-upload #bill-document-upload") + .selectFile("job.json", { force: true }); + }); + } +); diff --git a/client/cypress/support/commands.js b/client/cypress/support/commands.js index f41485e3a..ad0a364b5 100644 --- a/client/cypress/support/commands.js +++ b/client/cypress/support/commands.js @@ -50,7 +50,7 @@ Cypress.on("uncaught:exception", (err, runnable) => { return false; }); -Cypress.Commands.add("antdSelect", (selector) => { +Cypress.Commands.add("antdSelect", (selector, filter) => { cy.get(`.ant-select-${selector} > .ant-select-selector`).click(); cy.get(`.ant-select-${selector} .ant-select-selection-search input`) .invoke("attr", "id") @@ -59,6 +59,7 @@ Cypress.Commands.add("antdSelect", (selector) => { cy.get(dropDownSelector) .next() .find(".ant-select-item-option-content") + .not(`:contains("${filter}")`) .first() .click(); }); diff --git a/client/job.json b/client/job.json new file mode 100644 index 000000000..118a4361e --- /dev/null +++ b/client/job.json @@ -0,0 +1,5912 @@ +{ + "kmin": "13984", + "owner": { + "data": { + "shopid": "6c63a820-542c-497e-8c82-0cc38fb2bbca", + "ownr_ea": "victor471@hotmail.com", + "ownr_fn": "VICTOR", + "ownr_ln": "RASTOKINE", + "ownr_st": "MA", + "ownr_ph1": "7742720196", + "ownr_ph2": "", + "ownr_zip": "02492-2213", + "ownr_city": "NEEDHAM", + "ownr_ctry": "USA", + "ownr_addr1": "12 MILLER ST", + "ownr_addr2": "", + "ownr_co_nm": "", + "ownr_title": "" + } + }, + "v_vin": "5UXCR6C03N9K90799", + "agt_ea": "", + "agt_st": "", + "cat_no": "", + "clm_ea": "", + "clm_no": "050866891-0001", + "clm_st": "", + "est_ea": "", + "est_st": "", + "ins_ea": "", + "ins_st": "", + "shopid": "6c63a820-542c-497e-8c82-0cc38fb2bbca", + "agt_fax": "", + "agt_ph1": "", + "agt_ph2": "", + "agt_zip": "", + "asgn_no": "0", + "ciecaid": "3ecc8fd3", + "clm_fax": "", + "clm_ph1": "", + "clm_ph2": "", + "clm_zip": "", + "cust_pr": "I", + "ded_amt": 400, + "est_ph1": "", + "est_zip": "", + "ins_fax": "", + "ins_ph1": "", + "ins_ph2": "", + "ins_zip": "", + "insd_ea": "victor471@hotmail.com", + "insd_fn": "VICTOR", + "insd_ln": "RASTOKINE", + "insd_st": "MA", + "ownr_ea": "victor471@hotmail.com", + "ownr_fn": "VICTOR", + "ownr_ln": "RASTOKINE", + "ownr_st": "MA", + "pay_amt": 0, + "v_color": "Arctic Grey Metallic", + "vehicle": null, + "agt_city": "", + "agt_ctry": "", + "agt_faxx": "", + "agt_ph1x": "", + "agt_ph2x": "", + "clm_city": "BOSTON", + "clm_ctry": "USA", + "clm_faxx": "", + "clm_ph1x": "", + "clm_ph2x": "", + "est_city": "", + "est_ctry": "", + "ins_city": "", + "ins_ctry": "", + "ins_faxx": "", + "ins_ph1x": "", + "ins_ph2x": "", + "insd_fax": "", + "insd_ph1": "7742720196", + "insd_ph2": "", + "insd_zip": "02492-2213", + "joblines": { + "data": [ + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 1, + "price_j": false, + "unq_seq": 1, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " FRONT BUMPER & GRILLE", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 3.4, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 176.8, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 2, + "price_j": false, + "unq_seq": 18, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 12, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "O/H front bumper", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 3.4, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 3.4, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 3, + "price_j": false, + "unq_seq": 17, + "bett_amt": 0, + "bett_tax": false, + "db_price": 1222.02, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 12, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 1222.02, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Bumper cover w/o auto park", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51119492877", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 3, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 156, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 3, + "price_j": false, + "unq_seq": 17, + "bett_amt": 0, + "bett_tax": false, + "db_price": 1222.02, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 12, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 1222.02, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Bumper cover w/o auto park", + "paint_stg": 2, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 3, + "mod_lbr_ty": "LAR", + "oem_partno": "51119492877", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 1.2, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 62.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 4, + "price_j": false, + "unq_seq": 132, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 12, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Add for Clear Coat", + "paint_stg": 1, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 1.2, + "mod_lbr_ty": "LAR", + "oem_partno": "", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 5, + "price_j": false, + "unq_seq": 50, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 41, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Add for park sensor", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 6, + "price_j": false, + "unq_seq": 118, + "bett_amt": 0, + "bett_tax": false, + "db_price": 23.55, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 102, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Flex additive", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 7, + "price_j": false, + "unq_seq": 21, + "bett_amt": 0, + "bett_tax": false, + "db_price": 1, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 13, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 8, + "tax_part": true, + "act_price": 1, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Bumper cover rivet", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "07149140786", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 8, + "price_j": false, + "unq_seq": 22, + "bett_amt": 0, + "bett_tax": false, + "db_price": 68.17, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 14, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 68.17, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Mount bracket", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421819", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP6", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 9, + "price_j": false, + "unq_seq": 23, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 15, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Tow eye cap", + "paint_stg": 2, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAR", + "oem_partno": "51119492880", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REFINISH" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 5.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 10, + "price_j": false, + "unq_seq": 133, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 15, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Add for Clear Coat", + "paint_stg": 1, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.1, + "mod_lbr_ty": "LAR", + "oem_partno": "", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 11, + "price_j": false, + "unq_seq": 3, + "bett_amt": 0, + "bett_tax": false, + "db_price": 58, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 2, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 58, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "License bracket", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421871", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.4, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 12, + "price_j": false, + "unq_seq": 70, + "bett_amt": 0, + "bett_tax": false, + "db_price": 239.06, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 59, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 239.06, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Lower cover", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421792", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP9", + "lbr_amt": 52, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 13, + "price_j": false, + "unq_seq": 61, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 50, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": true, + "lbr_typ_j": false, + "line_desc": "Skid strip", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 1, + "mod_lbr_ty": "LAB", + "oem_partno": "51119881521", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REPAIR" + }, + { + "db_hrs": 0.7, + "db_ref": "", + "lbr_op": "OP9", + "lbr_amt": 36.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 13, + "price_j": false, + "unq_seq": 61, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 50, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Skid strip", + "paint_stg": 1, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.7, + "mod_lbr_ty": "LAR", + "oem_partno": "51119881521", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REPAIR" + }, + { + "db_hrs": 0.4, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 20.8, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 14, + "price_j": false, + "unq_seq": 25, + "bett_amt": 0, + "bett_tax": false, + "db_price": 607.11, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 16, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 607.11, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Impact bar (ALU)", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.4, + "mod_lbr_ty": "LAB", + "oem_partno": "51117428246", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 15, + "price_j": false, + "unq_seq": 26, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 17, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Support", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421839", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 16, + "price_j": false, + "unq_seq": 27, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 18, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Support", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421839", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 17, + "price_j": false, + "unq_seq": 28, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 19, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Outer reinf", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421884", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 18, + "price_j": false, + "unq_seq": 29, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 20, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Outer reinf", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421883", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 19, + "price_j": false, + "unq_seq": 31, + "bett_amt": 0, + "bett_tax": false, + "db_price": 70.53, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 22, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 70.53, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Absorber", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421623", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 20, + "price_j": false, + "unq_seq": 32, + "bett_amt": 0, + "bett_tax": false, + "db_price": 1.2, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 23, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 1.2, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Absorber rivet", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51127004445", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 21, + "price_j": false, + "unq_seq": 33, + "bett_amt": 0, + "bett_tax": false, + "db_price": 1.2, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 24, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 1.2, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Absorber rivet", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51127004445", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 22, + "price_j": false, + "unq_seq": 34, + "bett_amt": 0, + "bett_tax": false, + "db_price": 36.67, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 25, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 36.67, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Reflector", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "63147437080", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 23, + "price_j": false, + "unq_seq": 35, + "bett_amt": 0, + "bett_tax": false, + "db_price": 36.67, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 26, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 36.67, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Reflector", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "63147437079", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 24, + "price_j": false, + "unq_seq": 36, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 27, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Non OEM 3M Adhesion promoter wipes 6396", + "paint_stg": 0, + "part_type": "PAA", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 25, + "price_j": false, + "unq_seq": 4, + "bett_amt": 0, + "bett_tax": false, + "db_price": 275.33, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 3, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 275.33, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Upper grille w/o night vision", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51137454887", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 26, + "price_j": false, + "unq_seq": 125, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 109, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 11.17, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Plug camera system", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51117933177", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 27, + "price_j": false, + "unq_seq": 38, + "bett_amt": 0, + "bett_tax": false, + "db_price": 105.16, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 29, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 105.16, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Center grille w/adaptive cruise", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51117421805", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 28, + "price_j": false, + "unq_seq": 74, + "bett_amt": 0, + "bett_tax": false, + "db_price": 126.19, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 63, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 126.19, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Outer grille type 1", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51117449688", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 29, + "price_j": false, + "unq_seq": 75, + "bett_amt": 0, + "bett_tax": false, + "db_price": 126.19, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 64, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 126.19, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Outer grille type 1", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51117449687", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 30, + "price_j": false, + "unq_seq": 41, + "bett_amt": 0, + "bett_tax": false, + "db_price": 71.05, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 32, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 71.05, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Chrome strip", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51117449692", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 31, + "price_j": false, + "unq_seq": 42, + "bett_amt": 0, + "bett_tax": false, + "db_price": 300.08, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 33, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 300.08, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Park sensor inner Pythonic blue", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "66209826965", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 32, + "price_j": false, + "unq_seq": 43, + "bett_amt": 0, + "bett_tax": false, + "db_price": 300.08, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 34, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 300.08, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Park sensor inner Pythonic blue", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "66209826965", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 33, + "price_j": false, + "unq_seq": 44, + "bett_amt": 0, + "bett_tax": false, + "db_price": 4.09, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 35, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 2, + "tax_part": true, + "act_price": 4.09, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Park sensor ring", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "66209390408", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 34, + "price_j": false, + "unq_seq": 45, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 36, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Distance sensor", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "66315A3CBB3", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP16", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 35, + "price_j": false, + "unq_seq": 46, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 37, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": false, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Aim distance sensor", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": true, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "SUBLET" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 36, + "price_j": false, + "unq_seq": 82, + "bett_amt": 0, + "bett_tax": false, + "db_price": 77.36, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 71, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 77.36, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Distance sensor cover", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "66316877219", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 37, + "price_j": false, + "unq_seq": 47, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 38, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Object sensor", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "66325A52AC7", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 38, + "price_j": false, + "unq_seq": 48, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 39, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Object sensor", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "66325A52AC7", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 39, + "price_j": false, + "unq_seq": 49, + "bett_amt": 0, + "bett_tax": false, + "db_price": 481.72, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 40, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 481.72, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Harness w/driving assistant professional", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "61129825142", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 40, + "price_j": false, + "unq_seq": 51, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " FRONT LAMPS", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 41, + "price_j": false, + "unq_seq": 52, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 42, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT R&I headlamp assy", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "63117933338", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 42, + "price_j": false, + "unq_seq": 53, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 43, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT R&I headlamp assy", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "63117933337", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 43, + "price_j": false, + "unq_seq": 54, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 44, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Fog lamp assy", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "63177406365", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 44, + "price_j": false, + "unq_seq": 55, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 45, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Fog lamp assy", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "63177406366", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 45, + "price_j": false, + "unq_seq": 56, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 46, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Aim headlamps", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 46, + "price_j": false, + "unq_seq": 57, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 47, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Aim fog lamps", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 47, + "price_j": false, + "unq_seq": 58, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " RADIATOR SUPPORT", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.4, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 20.8, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 48, + "price_j": false, + "unq_seq": 59, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 48, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Front support", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.4, + "mod_lbr_ty": "LAB", + "oem_partno": "51647421707", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 49, + "price_j": false, + "unq_seq": 60, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 49, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Upper plate", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51647421711", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 5.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 50, + "price_j": false, + "unq_seq": 62, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 51, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Lock support", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.1, + "mod_lbr_ty": "LAB", + "oem_partno": "51647445102", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 5.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 51, + "price_j": false, + "unq_seq": 69, + "bett_amt": 0, + "bett_tax": false, + "db_price": 87.87, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 58, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 87.87, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Lock support", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.1, + "mod_lbr_ty": "LAB", + "oem_partno": "51647445101", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.4, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 20.8, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 52, + "price_j": false, + "unq_seq": 64, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 53, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Mount panel", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.4, + "mod_lbr_ty": "LAB", + "oem_partno": "51647421710", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.4, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 20.8, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 53, + "price_j": false, + "unq_seq": 65, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 54, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Mount panel", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.4, + "mod_lbr_ty": "LAB", + "oem_partno": "51647421709", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.7, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 36.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 54, + "price_j": false, + "unq_seq": 66, + "bett_amt": 0, + "bett_tax": false, + "db_price": 277.82, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 55, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 277.82, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Air duct upper, 40i, 50i, w/X-Line w/o n", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.7, + "mod_lbr_ty": "LAB", + "oem_partno": "51745A29C44", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 55, + "price_j": false, + "unq_seq": 76, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 65, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 6.48, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Adjustment element", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51137416456", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 56, + "price_j": true, + "unq_seq": 67, + "bett_amt": 0, + "bett_tax": false, + "db_price": 264.58, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 56, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 47.53, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Air duct lower", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51745A29C48", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 57, + "price_j": false, + "unq_seq": 68, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 57, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Upper duct", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51747421675", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 58, + "price_j": false, + "unq_seq": 77, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 66, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 16.08, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Cover lid", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51747428257", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 59, + "price_j": false, + "unq_seq": 71, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 60, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Lower duct", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51747421678", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 60, + "price_j": false, + "unq_seq": 78, + "bett_amt": 0, + "bett_tax": false, + "db_price": 36.2, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 67, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 36.2, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Air flow tube front", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51747421686", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 61, + "price_j": false, + "unq_seq": 79, + "bett_amt": 0, + "bett_tax": false, + "db_price": 36.2, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 68, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 36.2, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Air flow tube front", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51747421685", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 62, + "price_j": false, + "unq_seq": 80, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 69, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Air flow tube rear", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51747421700", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 63, + "price_j": false, + "unq_seq": 81, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 70, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Air flow tube rear", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51747421699", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 64, + "price_j": false, + "unq_seq": 137, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S03", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " COOLING", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 65, + "price_j": false, + "unq_seq": 138, + "bett_amt": 0, + "bett_tax": false, + "db_price": 406.15, + "lbr_op_j": false, + "line_ind": "S03", + "line_ref": 111, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 406.15, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Trans cooler", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "17218642748", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 66, + "price_j": false, + "unq_seq": 5, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " HOOD", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 1, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 52, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 67, + "price_j": false, + "unq_seq": 94, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 82, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "R&I hood assy", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 1, + "mod_lbr_ty": "LAB", + "oem_partno": "41007492375", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP9", + "lbr_amt": 104, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 68, + "price_j": false, + "unq_seq": 6, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 4, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": true, + "lbr_typ_j": false, + "line_desc": "Hood (ALU)", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 2, + "mod_lbr_ty": "LAB", + "oem_partno": "41007492375", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REPAIR" + }, + { + "db_hrs": 3.3, + "db_ref": "", + "lbr_op": "OP9", + "lbr_amt": 156, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 68, + "price_j": false, + "unq_seq": 6, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 4, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": true, + "lbr_typ_j": false, + "line_desc": "Hood (ALU)", + "paint_stg": 2, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 3, + "mod_lbr_ty": "LAR", + "oem_partno": "41007492375", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REPAIR" + }, + { + "db_hrs": -0.2, + "db_ref": "", + "lbr_op": "", + "lbr_amt": -10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 69, + "price_j": false, + "unq_seq": 19, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 4, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Overlap Major Non-Adj. Panel", + "paint_stg": 1, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": -0.2, + "mod_lbr_ty": "LAR", + "oem_partno": "", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.6, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 31.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 70, + "price_j": false, + "unq_seq": 134, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 4, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Add for Clear Coat", + "paint_stg": 1, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.6, + "mod_lbr_ty": "LAR", + "oem_partno": "", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP0", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 71, + "price_j": false, + "unq_seq": 120, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 104, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Feather edge prime and block", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE PARTIAL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP9", + "lbr_amt": 52, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 72, + "price_j": false, + "unq_seq": 83, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 72, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Underside of hood (ALU)", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 1, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REPAIR" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP9", + "lbr_amt": 41.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 72, + "price_j": false, + "unq_seq": 83, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 72, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Underside of hood (ALU)", + "paint_stg": 2, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.8, + "mod_lbr_ty": "LAR", + "oem_partno": "", + "paint_tone": 1, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REPAIR" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 73, + "price_j": false, + "unq_seq": 135, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 72, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Add for Clear Coat", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAU", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 5.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 74, + "price_j": false, + "unq_seq": 86, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 74, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Closure panel", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.1, + "mod_lbr_ty": "LAB", + "oem_partno": "51767418198", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 5.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 75, + "price_j": false, + "unq_seq": 87, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 75, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Closure panel", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.1, + "mod_lbr_ty": "LAB", + "oem_partno": "51767418197", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 0, + "lbr_inc": true, + "lbr_tax": false, + "line_no": 76, + "price_j": false, + "unq_seq": 88, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 76, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Front seal", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51767418174", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 77, + "price_j": false, + "unq_seq": 89, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 77, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Lock", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "51237347409", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 78, + "price_j": false, + "unq_seq": 90, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 78, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Lock", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "51237485957", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.8, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 41.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 79, + "price_j": false, + "unq_seq": 91, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 79, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Release cable front", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.8, + "mod_lbr_ty": "LAB", + "oem_partno": "51237418204", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 80, + "price_j": false, + "unq_seq": 92, + "bett_amt": 0, + "bett_tax": false, + "db_price": 48.32, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 80, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 48.32, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Emblem", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "51147499154", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 81, + "price_j": false, + "unq_seq": 93, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0.77, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 81, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 2, + "tax_part": true, + "act_price": 0.77, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Emblem grommet", + "paint_stg": 0, + "part_type": "PAN", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": false, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "51141807495", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 82, + "price_j": false, + "unq_seq": 95, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " FENDER", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 83, + "price_j": false, + "unq_seq": 96, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 83, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Ft fender liner", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "51717424906", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 84, + "price_j": false, + "unq_seq": 97, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 84, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Ft fender liner", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "51717424905", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 5.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 85, + "price_j": false, + "unq_seq": 98, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 85, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Lower panel w/o M model w/o M package", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.1, + "mod_lbr_ty": "LAB", + "oem_partno": "51717469470", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.1, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 5.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 86, + "price_j": false, + "unq_seq": 99, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 86, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Lower panel w/o M model w/o M package", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.1, + "mod_lbr_ty": "LAB", + "oem_partno": "51717469469", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 87, + "price_j": false, + "unq_seq": 100, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 87, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "RT Wheel flare w/o M model w/o M package", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "51777441058", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 88, + "price_j": false, + "unq_seq": 101, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 88, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "LT Wheel flare w/o M model w/o M package", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "51777441057", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 89, + "price_j": false, + "unq_seq": 102, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " ELECTRICAL", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 90, + "price_j": false, + "unq_seq": 103, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 89, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Low note horn", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "61337442771", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 91, + "price_j": false, + "unq_seq": 104, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 90, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "High note horn", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "61337442770", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 92, + "price_j": false, + "unq_seq": 105, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " ENGINE", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.2, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 93, + "price_j": false, + "unq_seq": 106, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 91, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Intake duct", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "13718635093", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 94, + "price_j": false, + "unq_seq": 107, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " RESTRAINT SYSTEMS", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 95, + "price_j": false, + "unq_seq": 108, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 92, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Ft impact sensor", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "65779314520", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP2", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 96, + "price_j": false, + "unq_seq": 109, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 93, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Ft impact sensor", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "65779314520", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / INSTALL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 97, + "price_j": false, + "unq_seq": 14, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " VEHICLE DIAGNOSTICS", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP16", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 98, + "price_j": true, + "unq_seq": 110, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 94, + "misc_amt": 90.75, + "misc_tax": false, + "part_qty": 1, + "tax_part": false, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Pre-repair scan", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": true, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "SUBLET" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP16", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 99, + "price_j": true, + "unq_seq": 111, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 95, + "misc_amt": 181.5, + "misc_tax": false, + "part_qty": 1, + "tax_part": false, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Post-repair scan", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": true, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "SUBLET" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 100, + "price_j": false, + "unq_seq": 10, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 0, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 0, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": " MISCELLANEOUS OPERATIONS", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0 + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 15.6, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 101, + "price_j": false, + "unq_seq": 11, + "bett_amt": 0, + "bett_tax": false, + "db_price": 5, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 7, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 5, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Cover Car", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.3, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP16", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 102, + "price_j": false, + "unq_seq": 13, + "bett_amt": 0, + "bett_tax": false, + "db_price": 3.5, + "lbr_op_j": false, + "line_ind": "E01", + "line_ref": 9, + "misc_amt": 3.5, + "misc_tax": false, + "part_qty": 1, + "tax_part": false, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Hazardous waste removal", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": true, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "SUBLET" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP0", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 103, + "price_j": false, + "unq_seq": 115, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 99, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Color tint / color match", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE PARTIAL" + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP11", + "lbr_amt": 10.4, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 104, + "price_j": false, + "unq_seq": 117, + "bett_amt": 0, + "bett_tax": false, + "db_price": 15, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 101, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 8, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Corrosion protection primer", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.2, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE" + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP0", + "lbr_amt": 31.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 105, + "price_j": false, + "unq_seq": 116, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 100, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Denib and polish", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.6, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE PARTIAL" + }, + { + "db_hrs": 0.5, + "db_ref": "", + "lbr_op": "OP0", + "lbr_amt": 26, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 106, + "price_j": false, + "unq_seq": 119, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 103, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Clean for delivery/post-repair cleaning", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.5, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE PARTIAL" + }, + { + "db_hrs": 0.3, + "db_ref": "", + "lbr_op": "OP0", + "lbr_amt": 5.2, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 107, + "price_j": false, + "unq_seq": 121, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 105, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Disconnect battery cable", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0.1, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE PARTIAL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP0", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 108, + "price_j": false, + "unq_seq": 122, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 106, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 69, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "OEM Repair instructions", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE PARTIAL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP0", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 109, + "price_j": false, + "unq_seq": 123, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 107, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 139.72, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Aditional paint materials", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE PARTIAL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP0", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 110, + "price_j": false, + "unq_seq": 124, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 108, + "misc_amt": 0, + "misc_tax": false, + "part_qty": 1, + "tax_part": true, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "Labor rate difference", + "paint_stg": 0, + "part_type": "PAO", + "price_inc": false, + "tran_code": "1", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": false, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "REMOVE / REPLACE PARTIAL" + }, + { + "db_hrs": 0, + "db_ref": "", + "lbr_op": "OP16", + "lbr_amt": 0, + "lbr_inc": false, + "lbr_tax": false, + "line_no": 111, + "price_j": false, + "unq_seq": 136, + "bett_amt": 0, + "bett_tax": false, + "db_price": 0, + "lbr_op_j": false, + "line_ind": "S01", + "line_ref": 110, + "misc_amt": -330.81, + "misc_tax": false, + "part_qty": 1, + "tax_part": false, + "act_price": 0, + "alt_co_id": "", + "alt_partm": "", + "bett_pctg": 0, + "bett_type": "", + "cert_part": false, + "lbr_hrs_j": false, + "lbr_typ_j": false, + "line_desc": "deduct for tax", + "paint_stg": 0, + "part_type": "", + "price_inc": false, + "tran_code": "2", + "alt_overrd": false, + "alt_part_i": true, + "alt_partno": "", + "glass_flag": false, + "misc_sublt": true, + "mod_lb_hrs": 0, + "mod_lbr_ty": "LAB", + "oem_partno": "", + "paint_tone": 0, + "prt_dsmk_m": 0, + "prt_dsmk_p": 0, + "op_code_desc": "SUBLET" + } + ] + }, + "loss_cat": "C", + "ownr_ph1": "7742720196", + "ownr_ph2": "", + "ownr_zip": "02492-2213", + "pay_date": null, + "pay_type": "", + "plate_no": "6AC411", + "plate_st": "MA", + "rate_la1": 0, + "rate_la2": 0, + "rate_la3": 0, + "rate_lab": 52, + "rate_lad": 0, + "rate_lae": 0, + "rate_laf": 69, + "rate_lag": 0, + "rate_lam": 71, + "rate_lar": 52, + "rate_las": 0, + "rate_lau": 0, + "tlos_ind": false, + "agt_addr1": "", + "agt_addr2": "", + "agt_co_id": "", + "agt_co_nm": "", + "agt_ct_fn": "", + "agt_ct_ln": "", + "agt_ct_ph": "", + "asgn_date": "2022-09-13T00:00:00", + "asgn_type": "O", + "cieca_stl": { + "data": [ + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 1783.6, + "ttl_hrs": 34.3, + "ttl_type": "LA", + "ttl_typecd": "LAT" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 1294.8, + "ttl_hrs": 24.9, + "ttl_type": "LA", + "ttl_typecd": "LAB" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 488.8, + "ttl_hrs": 9.4, + "ttl_type": "LA", + "ttl_typecd": "LAR" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LAS" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LAF" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LAD" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LAE" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LAM" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LAG" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LA1" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LA2" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LA3" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LA4" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "LA", + "ttl_typecd": "LAU" + }, + { + "t_amt": 5417.05, + "t_hrs": 0, + "tax_amt": 338.59, + "ttl_amt": 5361.99, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAT" + }, + { + "t_amt": 5195.33, + "t_hrs": 0, + "tax_amt": 324.74, + "ttl_amt": 5195.33, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAN" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAL" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAA" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAR" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAC" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAG" + }, + { + "t_amt": 221.72, + "t_hrs": 0, + "tax_amt": 13.85, + "ttl_amt": 221.72, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAO" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": -55.06, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAS" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "PA", + "ttl_typecd": "PAP" + }, + { + "t_amt": 225, + "t_hrs": 7.5, + "tax_amt": 14.07, + "ttl_amt": 225, + "ttl_hrs": 7.5, + "ttl_type": "TOT", + "ttl_typecd": "MAPA" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "TOT", + "ttl_typecd": "MASH" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "TOT", + "ttl_typecd": "MAHW" + }, + { + "t_amt": 57, + "t_hrs": 1.9, + "tax_amt": 3.57, + "ttl_amt": 57, + "ttl_hrs": 1.9, + "ttl_type": "TOT", + "ttl_typecd": "MA2S" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "TOT", + "ttl_typecd": "MA3S" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "TOT", + "ttl_typecd": "MA2T" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "TOT", + "ttl_typecd": "MABL" + }, + { + "t_amt": 282, + "t_hrs": 9.4, + "tax_amt": 17.63, + "ttl_amt": 282, + "ttl_hrs": 9.4, + "ttl_type": "TOT", + "ttl_typecd": "MAT" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "OTST", + "ttl_typecd": "" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "OTTW", + "ttl_typecd": "" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "OTAC", + "ttl_typecd": "" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "OTAA", + "ttl_typecd": "" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 0, + "ttl_hrs": 0, + "ttl_type": "OTBE", + "ttl_typecd": "" + }, + { + "t_amt": 0, + "t_hrs": 0, + "tax_amt": 0, + "ttl_amt": 2412.18, + "ttl_hrs": 0, + "ttl_type": "UPD", + "ttl_typecd": "" + } + ] + }, + "cieca_ttl": { + "data": { + "g_tax": 356.19, + "gst_amt": 0, + "g_aa_amt": 0, + "prev_net": 7030.35, + "supp_amt": 753.43, + "g_ded_amt": 400, + "g_rpd_amt": 0, + "g_ttl_amt": 7783.78, + "g_upd_amt": 2539.65, + "n_ttl_amt": 7783.78, + "g_bett_amt": 0, + "g_cust_amt": 400, + "g_ttl_disc": 0 + } + }, + "clm_addr1": "", + "clm_addr2": "", + "clm_ct_fn": "LINDSEY", + "clm_ct_ln": "HILL", + "clm_ct_ph": "", + "clm_title": "", + "clm_total": 7783.78, + "est_addr1": "", + "est_addr2": "", + "est_co_nm": "", + "est_ct_fn": "Michael", + "est_ct_ln": "Esby", + "ins_addr1": "", + "ins_addr2": "", + "ins_co_id": "2950", + "ins_co_nm": "SAFECO INSURANCE COMPANY OF AMERICA", + "ins_ct_fn": "", + "ins_ct_ln": "", + "ins_ct_ph": "", + "ins_title": "", + "insd_city": "NEEDHAM", + "insd_ctry": "USA", + "insd_faxx": "", + "insd_ph1x": "", + "insd_ph2x": "", + "loss_date": "2022-09-08T00:00:00", + "loss_desc": "", + "loss_type": "", + "materials": { + "mapa": { "cal_maxdlr": 450, "cal_opcode": "OP6 OP15" }, + "mash": { "cal_maxdlr": 1000000, "cal_opcode": "" } + }, + "ownr_city": "NEEDHAM", + "ownr_ctry": "USA", + "pay_chknm": "", + "payee_nms": "", + "policy_no": "MARI", + "rate_mapa": 30, + "rate_mash": 0, + "theft_ind": false, + "vehicleid": "8f3deb8b-8cc3-4e97-bf47-a15ea11e38bf", + "adj_g_disc": 0, + "adj_strdis": 0, + "adj_towdis": 0, + "agt_ct_phx": "", + "agt_lic_no": "", + "clm_ct_phx": "", + "clm_ofc_id": "SFCO", + "clm_ofc_nm": "SAFECO INSURANCE", + "ded_status": "Y", + "ins_ct_phx": "", + "insd_addr1": "12 MILLER ST", + "insd_addr2": "", + "insd_co_nm": "", + "insd_title": "", + "ownr_addr1": "12 MILLER ST", + "ownr_addr2": "", + "ownr_co_nm": "", + "ownr_title": "", + "tax_lbr_rt": 0, + "tax_predis": 0, + "tax_prethr": 0.0625, + "tax_pstthr": 0.0625, + "tax_str_rt": 0, + "tax_sub_rt": 0, + "tax_thramt": 999999.99, + "tax_tow_rt": 0, + "v_model_yr": "22", + "v_make_desc": "", + "v_model_desc": "X5 xDrive40i Sports Activity Vehicle", + "area_of_damage": { "impact1": "12", "impact2": "" }, + "date_estimated": null, + "labor_rate_desc": "EST", + "parts_tax_rates": { + "PAA": { + "prt_type": "PAA", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAC": { + "prt_type": "PAC", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAG": { + "prt_type": "PAG", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAL": { + "prt_type": "PAL", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0.25, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAN": { + "prt_type": "PAN", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAO": { + "prt_type": "PAO", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAP": { + "prt_type": "PAP", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAR": { + "prt_type": "PAR", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAS": { + "prt_type": "PAS", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + }, + "PAT": { + "prt_type": "PAT", + "prt_discp": 0, + "prt_mktyp": true, + "prt_mkupp": 0, + "prt_tax_in": true, + "prt_tax_rt": 0.0625 + } + }, + "tax_shop_mat_rt": 0.0625, + "federal_tax_rate": 0, + "tax_paint_mat_rt": 0.0625, + "depreciation_taxes": 0 +} diff --git a/client/src/components/bill-detail-edit/bill-detail-edit-component.jsx b/client/src/components/bill-detail-edit/bill-detail-edit-component.jsx index e92bb175b..1ed87c7c3 100644 --- a/client/src/components/bill-detail-edit/bill-detail-edit-component.jsx +++ b/client/src/components/bill-detail-edit/bill-detail-edit-component.jsx @@ -10,7 +10,7 @@ import { createStructuredSelector } from "reselect"; import { DELETE_BILL_LINE, INSERT_NEW_BILL_LINES, - UPDATE_BILL_LINE + UPDATE_BILL_LINE, } from "../../graphql/bill-lines.queries"; import { QUERY_BILL_BY_PK, UPDATE_BILL } from "../../graphql/bills.queries"; import { insertAuditTrail } from "../../redux/application/application.actions"; @@ -200,6 +200,7 @@ export function BillDetailEditcontainer({ } />