diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json index e86e9936e..0edba955d 100644 --- a/client/src/translations/en_us/common.json +++ b/client/src/translations/en_us/common.json @@ -3082,6 +3082,7 @@ "timetickets": "Time Tickets", "timetickets_employee": "Employee Time Tickets", "timetickets_summary": "Time Tickets Summary", + "total_loss_jobs": "Jobs Marked as Total Loss", "unclaimed_hrs": "Unflagged Hours", "void_ros": "Void ROs", "work_in_progress_committed_labour": "Work in Progress - Committed Labor", diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json index 8b9026489..b752bf47e 100644 --- a/client/src/translations/es/common.json +++ b/client/src/translations/es/common.json @@ -3082,6 +3082,7 @@ "timetickets": "", "timetickets_employee": "", "timetickets_summary": "", + "total_loss_jobs": "", "unclaimed_hrs": "", "void_ros": "", "work_in_progress_committed_labour": "", diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json index 8f9330ea0..c46314c63 100644 --- a/client/src/translations/fr/common.json +++ b/client/src/translations/fr/common.json @@ -3082,6 +3082,7 @@ "timetickets": "", "timetickets_employee": "", "timetickets_summary": "", + "total_loss_jobs": "", "unclaimed_hrs": "", "void_ros": "", "work_in_progress_committed_labour": "", diff --git a/client/src/utils/TemplateConstants.js b/client/src/utils/TemplateConstants.js index 9f80986d2..043d5fa3a 100644 --- a/client/src/utils/TemplateConstants.js +++ b/client/src/utils/TemplateConstants.js @@ -2184,7 +2184,18 @@ export const TemplateList = (type, context) => { }, group: "payroll", adp_payroll: true - } + }, + total_loss_jobs: { + title: i18n.t("reportcenter.templates.total_loss_jobs"), + subject: i18n.t("reportcenter.templates.total_loss_jobs"), + key: "total_loss_jobs", + disabled: false, + rangeFilter: { + object: i18n.t("reportcenter.labels.objects.jobs"), + field: i18n.t("jobs.fields.date_open") + }, + group: "jobs" + }, } : {}), ...(!type || type === "courtesycarcontract"