mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-06 21:59:13 +00:00
fix syntax (#13773)
This commit is contained in:
@@ -265,11 +265,11 @@ def install(country=None):
|
|||||||
base_path = frappe.get_app_path("erpnext", "hr", "doctype")
|
base_path = frappe.get_app_path("erpnext", "hr", "doctype")
|
||||||
response = frappe.read_file(os.path.join(base_path, "leave_application/leave_application_email_template.html"))
|
response = frappe.read_file(os.path.join(base_path, "leave_application/leave_application_email_template.html"))
|
||||||
|
|
||||||
records += {'doctype': 'Email Template', 'name': _("Leave Approval Notification"), 'response': response,\
|
records += [{'doctype': 'Email Template', 'name': _("Leave Approval Notification"), 'response': response,\
|
||||||
'subject': _("Leave Approval Notification"), 'owner': frappe.session.user}
|
'subject': _("Leave Approval Notification"), 'owner': frappe.session.user}]
|
||||||
|
|
||||||
records += {'doctype': 'Email Template', 'name': _("Leave Status Notification"), 'response': response,\
|
records += [{'doctype': 'Email Template', 'name': _("Leave Status Notification"), 'response': response,\
|
||||||
'subject': _("Leave Status Notification"), 'owner': frappe.session.user}
|
'subject': _("Leave Status Notification"), 'owner': frappe.session.user}]
|
||||||
|
|
||||||
# Records for the Supplier Scorecard
|
# Records for the Supplier Scorecard
|
||||||
from erpnext.buying.doctype.supplier_scorecard.supplier_scorecard import make_default_records
|
from erpnext.buying.doctype.supplier_scorecard.supplier_scorecard import make_default_records
|
||||||
|
|||||||
Reference in New Issue
Block a user