From 5a12738da5a8abac3a07a8e8dfe9a148b85a7e6a Mon Sep 17 00:00:00 2001
From: Patrick Fic <>
Date: Tue, 8 Nov 2022 10:01:40 -0800
Subject: [PATCH] IO-2096 Add Cycle Time Analysis report
---
bodyshop_translations.babel | 21 +++++++++++++++++++++
client/src/translations/en_us/common.json | 1 +
client/src/translations/es/common.json | 1 +
client/src/translations/fr/common.json | 1 +
client/src/utils/TemplateConstants.js | 12 ++++++++++++
5 files changed, 36 insertions(+)
diff --git a/bodyshop_translations.babel b/bodyshop_translations.babel
index 999c45344..f311d7e00 100644
--- a/bodyshop_translations.babel
+++ b/bodyshop_translations.babel
@@ -40455,6 +40455,27 @@
+
+ cycle_time_analysis
+ false
+
+
+
+
+
+ en-US
+ false
+
+
+ es-MX
+ false
+
+
+ fr-CA
+ false
+
+
+
estimates_written_converted
false
diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json
index 6cc02bf35..430e8b3c4 100644
--- a/client/src/translations/en_us/common.json
+++ b/client/src/translations/en_us/common.json
@@ -2403,6 +2403,7 @@
"credits_not_received_date": "Credits not Received by Date",
"credits_not_received_date_vendorid": "Credits not Received by Vendor",
"csi": "CSI Responses",
+ "cycle_time_analysis": "Cycle Time Analysis",
"estimates_written_converted": "Estimates Written/Converted",
"estimator_detail": "Jobs by Estimator (Detail)",
"estimator_summary": "Jobs by Estimator (Summary)",
diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json
index 992fd6c3b..6e7454cd0 100644
--- a/client/src/translations/es/common.json
+++ b/client/src/translations/es/common.json
@@ -2403,6 +2403,7 @@
"credits_not_received_date": "",
"credits_not_received_date_vendorid": "",
"csi": "",
+ "cycle_time_analysis": "",
"estimates_written_converted": "",
"estimator_detail": "",
"estimator_summary": "",
diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json
index 9aea7d71f..683b09f2c 100644
--- a/client/src/translations/fr/common.json
+++ b/client/src/translations/fr/common.json
@@ -2403,6 +2403,7 @@
"credits_not_received_date": "",
"credits_not_received_date_vendorid": "",
"csi": "",
+ "cycle_time_analysis": "",
"estimates_written_converted": "",
"estimator_detail": "",
"estimator_summary": "",
diff --git a/client/src/utils/TemplateConstants.js b/client/src/utils/TemplateConstants.js
index 78ee830cd..ed6ea6a6b 100644
--- a/client/src/utils/TemplateConstants.js
+++ b/client/src/utils/TemplateConstants.js
@@ -1682,6 +1682,18 @@ export const TemplateList = (type, context) => {
},
group: "sales",
},
+ cycle_time_analysis: {
+ title: i18n.t("reportcenter.templates.cycle_time_analysis"),
+ subject: i18n.t("reportcenter.templates.cycle_time_analysis"),
+ key: "cycle_time_analysis",
+ //idtype: "vendor",
+ disabled: false,
+ rangeFilter: {
+ object: i18n.t("reportcenter.labels.objects.jobs"),
+ field: i18n.t("jobs.fields.actual_completion"),
+ },
+ group: "job",
+ },
}
: {}),
...(!type || type === "courtesycarcontract"