diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json index ce9de2669..7cb96323e 100644 --- a/client/src/translations/en_us/common.json +++ b/client/src/translations/en_us/common.json @@ -2708,6 +2708,7 @@ "job_costing_ro": "Job Costing", "job_lifecycle_ro": "Job Lifecycle", "job_notes": "Job Notes", + "job_tasks": "Job Tasks", "key_tag": "Key Tag", "labels": { "count": "Count", @@ -3023,6 +3024,7 @@ "scoreboard_detail": "Scoreboard Detail", "scoreboard_summary": "Scoreboard Summary", "supplement_ratio_ins_co": "Supplement Ratio by Source", + "tasks_date": "Tasks by Date", "thank_you_date": "Thank You Letters", "timetickets": "Time Tickets", "timetickets_employee": "Employee Time Tickets", diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json index 952c71ce2..16ba2bd97 100644 --- a/client/src/translations/es/common.json +++ b/client/src/translations/es/common.json @@ -2706,6 +2706,7 @@ "job_costing_ro": "", "job_lifecycle_ro": "", "job_notes": "", + "job_tasks": "", "key_tag": "", "labels": { "count": "", @@ -3021,6 +3022,7 @@ "scoreboard_detail": "", "scoreboard_summary": "", "supplement_ratio_ins_co": "", + "tasks_date": "", "thank_you_date": "", "timetickets": "", "timetickets_employee": "", diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json index 1f78b67f3..20c8065ba 100644 --- a/client/src/translations/fr/common.json +++ b/client/src/translations/fr/common.json @@ -2706,6 +2706,7 @@ "job_costing_ro": "", "job_lifecycle_ro": "", "job_notes": "", + "job_tasks": "", "key_tag": "", "labels": { "count": "", @@ -3021,6 +3022,7 @@ "scoreboard_detail": "", "scoreboard_summary": "", "supplement_ratio_ins_co": "", + "tasks_date": "", "thank_you_date": "", "timetickets": "", "timetickets_employee": "", diff --git a/client/src/utils/TemplateConstants.js b/client/src/utils/TemplateConstants.js index 40d9ad6b7..aa4fc5041 100644 --- a/client/src/utils/TemplateConstants.js +++ b/client/src/utils/TemplateConstants.js @@ -587,6 +587,14 @@ export const TemplateList = (type, context) => { key: "job_lifecycle_ro", disabled: false, group: "post" + }, + job_tasks: { + title: i18n.t("printcenter.jobs.job_tasks"), + description: "", + subject: i18n.t("printcenter.jobs.job_tasks"), + key: "job_tasks", + disabled: false, + group: "ro" } } : {}), @@ -2089,6 +2097,18 @@ export const TemplateList = (type, context) => { field: i18n.t("jobs.fields.date_invoiced") }, group: "jobs" + }, + tasks_date: { + title: i18n.t("reportcenter.templates.tasks_date"), + subject: i18n.t("reportcenter.templates.tasks_date"), + key: "tasks_date", + //idtype: "vendor", + disabled: false, + rangeFilter: { + object: i18n.t("reportcenter.labels.objects.jobs"), + field: i18n.t("tasks.fields.created_at") + }, + group: "jobs" } } : {}),