Added templates to print center.
This commit is contained in:
@@ -1485,13 +1485,18 @@
|
||||
"casl_authorization": "CASL Authorization",
|
||||
"diagnostic_authorization": "Diagnostic Authorization",
|
||||
"estimate_detail": "Estimate Details",
|
||||
"final_invoice": "Final Invoice",
|
||||
"fippa_authorization": "FIPPA Authorization",
|
||||
"invoice_customer_payable": "Invoice (Customer Payable)",
|
||||
"invoice_total_payable": "Invoice (Total Payable)",
|
||||
"job_notes": "Job Notes",
|
||||
"parts_order": "Parts Order Confirmation",
|
||||
"parts_order_confirmation": "",
|
||||
"payment_receipt": "Payment Receipt",
|
||||
"payment_request": "Payment Request",
|
||||
"payments_by_job": "Job Payments",
|
||||
"ro_with_description": "RO Summary with Descriptions",
|
||||
"supplement_request": "Supplement Request",
|
||||
"thirdpartypayer": "Third Party Payer",
|
||||
"window_tag": "Window Tag",
|
||||
"work_authorization": "Work Authorization",
|
||||
|
||||
@@ -1485,13 +1485,18 @@
|
||||
"casl_authorization": "",
|
||||
"diagnostic_authorization": "",
|
||||
"estimate_detail": "",
|
||||
"final_invoice": "",
|
||||
"fippa_authorization": "",
|
||||
"invoice_customer_payable": "",
|
||||
"invoice_total_payable": "",
|
||||
"job_notes": "",
|
||||
"parts_order": "",
|
||||
"parts_order_confirmation": "",
|
||||
"payment_receipt": "",
|
||||
"payment_request": "",
|
||||
"payments_by_job": "",
|
||||
"ro_with_description": "",
|
||||
"supplement_request": "",
|
||||
"thirdpartypayer": "",
|
||||
"window_tag": "",
|
||||
"work_authorization": "",
|
||||
|
||||
@@ -1485,13 +1485,18 @@
|
||||
"casl_authorization": "",
|
||||
"diagnostic_authorization": "",
|
||||
"estimate_detail": "",
|
||||
"final_invoice": "",
|
||||
"fippa_authorization": "",
|
||||
"invoice_customer_payable": "",
|
||||
"invoice_total_payable": "",
|
||||
"job_notes": "",
|
||||
"parts_order": "",
|
||||
"parts_order_confirmation": "",
|
||||
"payment_receipt": "",
|
||||
"payment_request": "",
|
||||
"payments_by_job": "",
|
||||
"ro_with_description": "",
|
||||
"supplement_request": "",
|
||||
"thirdpartypayer": "",
|
||||
"window_tag": "",
|
||||
"work_authorization": "",
|
||||
|
||||
@@ -124,6 +124,51 @@ export const TemplateList = (type, context) => {
|
||||
key: "worksheet_sorted_by_operation_part_type",
|
||||
disabled: false,
|
||||
},
|
||||
supplement_request: {
|
||||
title: i18n.t("printcenter.jobs.supplement_request"),
|
||||
description: "All Jobs Notes",
|
||||
subject: `${i18n.t("printcenter.jobs.supplement_request")} - ${
|
||||
context && context.job && context.job.ro_number
|
||||
}`,
|
||||
key: "supplement_request",
|
||||
disabled: false,
|
||||
},
|
||||
final_invoice: {
|
||||
title: i18n.t("printcenter.jobs.final_invoice"),
|
||||
description: "All Jobs Notes",
|
||||
subject: `${i18n.t("printcenter.jobs.final_invoice")} - ${
|
||||
context && context.job && context.job.ro_number
|
||||
}`,
|
||||
key: "final_invoice",
|
||||
disabled: false,
|
||||
},
|
||||
payment_request: {
|
||||
title: i18n.t("printcenter.jobs.payment_request"),
|
||||
description: "All Jobs Notes",
|
||||
subject: `${i18n.t("printcenter.jobs.payment_request")} - ${
|
||||
context && context.job && context.job.ro_number
|
||||
}`,
|
||||
key: "payment_request",
|
||||
disabled: false,
|
||||
},
|
||||
invoice_total_payable: {
|
||||
title: i18n.t("printcenter.jobs.invoice_total_payable"),
|
||||
description: "All Jobs Notes",
|
||||
subject: `${i18n.t("printcenter.jobs.invoice_total_payable")} - ${
|
||||
context && context.job && context.job.ro_number
|
||||
}`,
|
||||
key: "invoice_total_payable",
|
||||
disabled: false,
|
||||
},
|
||||
invoice_customer_payable: {
|
||||
title: i18n.t("printcenter.jobs.invoice_customer_payable"),
|
||||
description: "All Jobs Notes",
|
||||
subject: `${i18n.t(
|
||||
"printcenter.jobs.invoice_customer_payable"
|
||||
)} - ${context && context.job && context.job.ro_number}`,
|
||||
key: "invoice_customer_payable",
|
||||
disabled: false,
|
||||
},
|
||||
}
|
||||
: {}),
|
||||
...(!type || type === "job_special"
|
||||
|
||||
Reference in New Issue
Block a user