From 44f2287b077842f64363dbb0337f54d4c879f2ff Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Tue, 23 May 2023 13:38:55 -0700 Subject: [PATCH] IO-2295 Individual Note Print File Name contained {{ro_number}} --- client/src/translations/en_us/common.json | 3 ++- client/src/translations/es/common.json | 1 + client/src/translations/fr/common.json | 1 + client/src/utils/TemplateConstants.js | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json index e35eae607..66db6d693 100644 --- a/client/src/translations/en_us/common.json +++ b/client/src/translations/en_us/common.json @@ -2316,7 +2316,7 @@ "folder_label_multiple": "Folder Label - Multi", "glass_express_checklist": "Glass Express Checklist", "guarantee": "Repair Guarantee", - "individual_job_note": "Job Note RO # {{ro_number}}", + "individual_job_note": "RO Job Note", "invoice_customer_payable": "Invoice (Customer Payable)", "invoice_total_payable": "Invoice (Total Payable)", "iou_form": "IOU Form", @@ -2394,6 +2394,7 @@ }, "subjects": { "jobs": { + "individual_job_note": "Job Note RO: {{ro_number}}", "parts_order": "Parts Order PO: {{ro_number}} - {{name}}", "sublet_order": "Sublet Order PO: {{ro_number}} - {{name}}" } diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json index cf0736eb3..62c621c06 100644 --- a/client/src/translations/es/common.json +++ b/client/src/translations/es/common.json @@ -2394,6 +2394,7 @@ }, "subjects": { "jobs": { + "individual_job_note": "", "parts_order": "", "sublet_order": "" } diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json index 542817c76..a1c5bb380 100644 --- a/client/src/translations/fr/common.json +++ b/client/src/translations/fr/common.json @@ -2394,6 +2394,7 @@ }, "subjects": { "jobs": { + "individual_job_note": "", "parts_order": "", "sublet_order": "" } diff --git a/client/src/utils/TemplateConstants.js b/client/src/utils/TemplateConstants.js index 715d511fe..853f57036 100644 --- a/client/src/utils/TemplateConstants.js +++ b/client/src/utils/TemplateConstants.js @@ -542,7 +542,7 @@ export const TemplateList = (type, context) => { title: i18n.t("printcenter.jobs.individual_job_note"), description: "", key: "individual_job_note", - subject: i18n.t("printcenter.jobs.individual_job_note", { + subject: i18n.t("printcenter.subjects.jobs.individual_job_note", { ro_number: (context && context.ro_number) || "", }), disabled: false,