diff --git a/bodyshop_translations.babel b/bodyshop_translations.babel index bb898fee9..3a852e2e8 100644 --- a/bodyshop_translations.babel +++ b/bodyshop_translations.babel @@ -41678,6 +41678,27 @@ + + open_orders_specific_csr + false + + + + + + en-US + false + + + es-MX + false + + + fr-CA + false + + + open_orders_status false diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json index 24d7175f6..d8e7bc391 100644 --- a/client/src/translations/en_us/common.json +++ b/client/src/translations/en_us/common.json @@ -2463,6 +2463,7 @@ "open_orders_csr": "Open Orders by CSR", "open_orders_estimator": "Open Orders by Estimator", "open_orders_ins_co": "Open Orders by Insurance Company", + "open_orders_specific_csr": "Open Orders filtered by CSR", "open_orders_status": "Open Orders by Status", "parts_backorder": "IOU Parts List", "parts_not_recieved": "Parts Not Received", diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json index c2af5bf3a..359d844a2 100644 --- a/client/src/translations/es/common.json +++ b/client/src/translations/es/common.json @@ -2463,6 +2463,7 @@ "open_orders_csr": "", "open_orders_estimator": "", "open_orders_ins_co": "", + "open_orders_specific_csr": "", "open_orders_status": "", "parts_backorder": "", "parts_not_recieved": "", diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json index 169549c22..78f2d8777 100644 --- a/client/src/translations/fr/common.json +++ b/client/src/translations/fr/common.json @@ -2463,6 +2463,7 @@ "open_orders_csr": "", "open_orders_estimator": "", "open_orders_ins_co": "", + "open_orders_specific_csr": "", "open_orders_status": "", "parts_backorder": "", "parts_not_recieved": "", diff --git a/client/src/utils/TemplateConstants.js b/client/src/utils/TemplateConstants.js index 509e60669..a53040f0f 100644 --- a/client/src/utils/TemplateConstants.js +++ b/client/src/utils/TemplateConstants.js @@ -1421,6 +1421,19 @@ export const TemplateList = (type, context) => { }, group: "jobs", }, + open_orders_specific_csr: { + title: i18n.t("reportcenter.templates.open_orders_specific_csr"), + description: "", + subject: i18n.t("reportcenter.templates.open_orders_specific_csr"), + key: "open_orders_specific_csr", + idtype: "employee", + disabled: false, + rangeFilter: { + object: i18n.t("reportcenter.labels.objects.jobs"), + field: i18n.t("jobs.fields.date_open"), + }, + group: "jobs", + }, export_payables: { title: i18n.t("reportcenter.templates.export_payables"), description: "", @@ -1748,7 +1761,9 @@ export const TemplateList = (type, context) => { }, jobs_completed_not_invoiced: { title: i18n.t("reportcenter.templates.jobs_completed_not_invoiced"), - subject: i18n.t("reportcenter.templates.jobs_completed_not_invoiced"), + subject: i18n.t( + "reportcenter.templates.jobs_completed_not_invoiced" + ), key: "jobs_completed_not_invoiced", //idtype: "vendor", disabled: false, @@ -1760,7 +1775,9 @@ export const TemplateList = (type, context) => { }, jobs_invoiced_not_exported: { title: i18n.t("reportcenter.templates.jobs_invoiced_not_exported"), - subject: i18n.t("reportcenter.templates.jobs_invoiced_not_exported"), + subject: i18n.t( + "reportcenter.templates.jobs_invoiced_not_exported" + ), key: "jobs_invoiced_not_exported", //idtype: "vendor", disabled: false,