diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json index 95254cb3d..337047e1f 100644 --- a/client/src/translations/en_us/common.json +++ b/client/src/translations/en_us/common.json @@ -3084,6 +3084,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 9b4c00b4b..02c3dd2dd 100644 --- a/client/src/translations/es/common.json +++ b/client/src/translations/es/common.json @@ -3084,6 +3084,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 1362054a4..7ea7ef02c 100644 --- a/client/src/translations/fr/common.json +++ b/client/src/translations/fr/common.json @@ -3084,6 +3084,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 c193dbb49..9e40624c0 100644 --- a/client/src/utils/TemplateConstants.js +++ b/client/src/utils/TemplateConstants.js @@ -2197,6 +2197,17 @@ export const TemplateList = (type, context) => { field: i18n.t("bills.fields.date") }, group: "purchases" + }, + 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" } } : {}),