From 95aa0e45a6c3f39643f84ab723c3fe7b1b65b806 Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Thu, 14 Nov 2024 16:47:35 -0800 Subject: [PATCH] IO-3033 Total Loss Indicator Signed-off-by: Allan Carr --- .../jobs-detail-general/jobs-detail-general.component.jsx | 5 ++++- client/src/graphql/jobs.queries.js | 1 + client/src/translations/en_us/common.json | 1 + client/src/translations/es/common.json | 1 + client/src/translations/fr/common.json | 1 + 5 files changed, 8 insertions(+), 1 deletion(-) diff --git a/client/src/components/jobs-detail-general/jobs-detail-general.component.jsx b/client/src/components/jobs-detail-general/jobs-detail-general.component.jsx index 1fee1a6b5..f36269c83 100644 --- a/client/src/components/jobs-detail-general/jobs-detail-general.component.jsx +++ b/client/src/components/jobs-detail-general/jobs-detail-general.component.jsx @@ -5,6 +5,7 @@ import { connect } from "react-redux"; import { createStructuredSelector } from "reselect"; import { selectJobReadOnly } from "../../redux/application/application.selectors"; import { selectBodyshop } from "../../redux/user/user.selectors"; +import DateTimePicker from "../form-date-time-picker/form-date-time-picker.component.jsx"; import CurrencyInput from "../form-items-formatted/currency-form-item.component"; import FormItemEmail from "../form-items-formatted/email-form-item.component"; import FormItemPhone, { PhoneItemFormatterValidation } from "../form-items-formatted/phone-form-item.component"; @@ -12,7 +13,6 @@ import Car from "../job-damage-visual/job-damage-visual.component"; import JobsDetailChangeEstimator from "../jobs-detail-change-estimator/jobs-detail-change-estimator.component"; import JobsDetailChangeFileHandler from "../jobs-detail-change-filehandler/jobs-detail-change-filehandler.component"; import FormRow from "../layout-form-row/layout-form-row.component"; -import DateTimePicker from "../form-date-time-picker/form-date-time-picker.component.jsx"; const mapStateToProps = createStructuredSelector({ jobRO: selectJobReadOnly, @@ -185,6 +185,9 @@ export function JobsDetailGeneral({ bodyshop, jobRO, job, form }) { + + + diff --git a/client/src/graphql/jobs.queries.js b/client/src/graphql/jobs.queries.js index a71d08d10..51b44a1b2 100644 --- a/client/src/graphql/jobs.queries.js +++ b/client/src/graphql/jobs.queries.js @@ -692,6 +692,7 @@ export const GET_JOB_BY_PK = gql` tax_str_rt tax_sub_rt tax_tow_rt + tlos_ind towin towing_payable unit_number diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json index d91c369fd..c656d5822 100644 --- a/client/src/translations/en_us/common.json +++ b/client/src/translations/en_us/common.json @@ -1873,6 +1873,7 @@ "tax_str_rt": "Storage Tax Rate", "tax_sub_rt": "Sublet Tax Rate", "tax_tow_rt": "Towing Tax Rate", + "tlos_ind": "Total Loss Indicator", "towin": "Tow In", "towing_payable": "Towing Payable", "unitnumber": "Unit #", diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json index 7658ca3ce..7839fc04f 100644 --- a/client/src/translations/es/common.json +++ b/client/src/translations/es/common.json @@ -1873,6 +1873,7 @@ "tax_str_rt": "", "tax_sub_rt": "", "tax_tow_rt": "", + "tlos_ind": "", "towin": "", "towing_payable": "Remolque a pagar", "unitnumber": "Unidad #", diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json index a109a127d..bff86bca4 100644 --- a/client/src/translations/fr/common.json +++ b/client/src/translations/fr/common.json @@ -1873,6 +1873,7 @@ "tax_str_rt": "", "tax_sub_rt": "", "tax_tow_rt": "", + "tlos_ind": "", "towin": "", "towing_payable": "Remorquage à payer", "unitnumber": "Unité #",