IO-1608 add name to parts order.
This commit is contained in:
@@ -2028,6 +2028,7 @@
|
||||
"filing_coversheet_portrait": "Filing Coversheet (Portrait)",
|
||||
"final_invoice": "Final Invoice",
|
||||
"fippa_authorization": "FIPPA Authorization",
|
||||
"folder_label_multiple": "Folder Label Multiple",
|
||||
"glass_express_checklist": "Glass Express Checklist",
|
||||
"guarantee": "Repair Guarantee",
|
||||
"individual_job_note": "Job Note RO # {{ro_number}}",
|
||||
@@ -2097,7 +2098,7 @@
|
||||
},
|
||||
"subjects": {
|
||||
"jobs": {
|
||||
"parts_order": "Parts Order PO: {{ro_number}}"
|
||||
"parts_order": "Parts Order PO: {{ro_number}} - {{name}}"
|
||||
}
|
||||
},
|
||||
"vendors": {
|
||||
|
||||
@@ -2028,6 +2028,7 @@
|
||||
"filing_coversheet_portrait": "",
|
||||
"final_invoice": "",
|
||||
"fippa_authorization": "",
|
||||
"folder_label_multiple": "",
|
||||
"glass_express_checklist": "",
|
||||
"guarantee": "",
|
||||
"individual_job_note": "",
|
||||
|
||||
@@ -2028,6 +2028,7 @@
|
||||
"filing_coversheet_portrait": "",
|
||||
"final_invoice": "",
|
||||
"fippa_authorization": "",
|
||||
"folder_label_multiple": "",
|
||||
"glass_express_checklist": "",
|
||||
"guarantee": "",
|
||||
"individual_job_note": "",
|
||||
|
||||
@@ -509,6 +509,11 @@ export const TemplateList = (type, context) => {
|
||||
key: "parts_order",
|
||||
subject: i18n.t("printcenter.subjects.jobs.parts_order", {
|
||||
ro_number: context && context.job && context.job.ro_number,
|
||||
name: `${(context && context.job && context.job.ownr_fn) || ""} ${
|
||||
(context && context.job && context.job.ownr_ln) || ""
|
||||
} ${
|
||||
(context && context.job && context.job.ownr_co_nm) || ""
|
||||
}`.trim(),
|
||||
}),
|
||||
disabled: false,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user