Browse Source

Merge branch 'develop' into project-form-custom-btn-grouping

develop
Anupam Kumar 3 years ago
committed by GitHub
parent
commit
87a98f8120
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      erpnext/patches/v11_0/add_default_dispatch_notification_template.py
  2. 1
      erpnext/patches/v13_0/add_default_interview_notification_templates.py
  3. 1
      erpnext/patches/v14_0/add_default_exit_questionnaire_notification_template.py

1
erpnext/patches/v11_0/add_default_dispatch_notification_template.py

@ -22,4 +22,5 @@ def execute():
delivery_settings = frappe.get_doc("Delivery Settings")
delivery_settings.dispatch_template = _("Dispatch Notification")
delivery_settings.flags.ignore_links = True
delivery_settings.save()

1
erpnext/patches/v13_0/add_default_interview_notification_templates.py

@ -32,4 +32,5 @@ def execute():
hr_settings = frappe.get_doc('HR Settings')
hr_settings.interview_reminder_template = _('Interview Reminder')
hr_settings.feedback_reminder_notification_template = _('Interview Feedback Reminder')
hr_settings.flags.ignore_links = True
hr_settings.save()

1
erpnext/patches/v14_0/add_default_exit_questionnaire_notification_template.py

@ -24,4 +24,5 @@ def execute():
hr_settings = frappe.get_doc("HR Settings")
hr_settings.exit_questionnaire_notification_template = template
hr_settings.flags.ignore_links = True
hr_settings.save()

Loading…
Cancel
Save