diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json index 193aba22a..f79a1f166 100644 --- a/client/src/translations/en_us/common.json +++ b/client/src/translations/en_us/common.json @@ -3209,6 +3209,7 @@ "parts_not_recieved_vendor": "Parts Not Received by Vendor", "parts_received_not_scheduled": "Parts Received for Jobs Not Scheduled", "payments_by_date": "Payments by Date", + "payments_by_date_excel": "Payments by Date - Excel", "payments_by_date_payment": "Payments by Date and Payment Type", "payments_by_date_type": "Payments by Date and Customer Type", "production_by_category": "Production by Category", diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json index 41a01b191..2a9a6229b 100644 --- a/client/src/translations/es/common.json +++ b/client/src/translations/es/common.json @@ -3209,6 +3209,7 @@ "parts_not_recieved_vendor": "", "parts_received_not_scheduled": "", "payments_by_date": "", + "payments_by_date_excel": "", "payments_by_date_payment": "", "payments_by_date_type": "", "production_by_category": "", diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json index e80baacbc..939f7752e 100644 --- a/client/src/translations/fr/common.json +++ b/client/src/translations/fr/common.json @@ -3209,6 +3209,7 @@ "parts_not_recieved_vendor": "", "parts_received_not_scheduled": "", "payments_by_date": "", + "payments_by_date_excel": "", "payments_by_date_payment": "", "payments_by_date_type": "", "production_by_category": "", diff --git a/client/src/utils/TemplateConstants.js b/client/src/utils/TemplateConstants.js index d91c1097e..620370169 100644 --- a/client/src/utils/TemplateConstants.js +++ b/client/src/utils/TemplateConstants.js @@ -1218,6 +1218,18 @@ export const TemplateList = (type, context) => { }, group: "customers" }, + payments_by_date_excel: { + title: i18n.t("reportcenter.templates.payments_by_date_excel"), + subject: i18n.t("reportcenter.templates.payments_by_date_excel"), + key: "payments_by_date", + reporttype: "excel", + disabled: false, + rangeFilter: { + object: i18n.t("reportcenter.labels.objects.payments"), + field: i18n.t("payments.fields.date") + }, + group: "customers" + }, schedule: { title: i18n.t("reportcenter.templates.schedule"), subject: i18n.t("reportcenter.templates.schedule"),