915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
28 lines
855 B
Python
28 lines
855 B
Python
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
import frappe
|
|
from frappe import _
|
|
|
|
|
|
def execute():
|
|
frappe.reload_doc("email", "doctype", "email_template")
|
|
frappe.reload_doc("stock", "doctype", "delivery_settings")
|
|
|
|
if not frappe.db.exists("Email Template", _("Dispatch Notification")):
|
|
base_path = frappe.get_app_path("erpnext", "stock", "doctype")
|
|
response = frappe.read_file(os.path.join(base_path, "delivery_trip/dispatch_notification_template.html"))
|
|
|
|
frappe.get_doc({
|
|
"doctype": "Email Template",
|
|
"name": _("Dispatch Notification"),
|
|
"response": response,
|
|
"subject": _("Your order is out for delivery!"),
|
|
"owner": frappe.session.user,
|
|
}).insert(ignore_permissions=True)
|
|
|
|
delivery_settings = frappe.get_doc("Delivery Settings")
|
|
delivery_settings.dispatch_template = _("Dispatch Notification")
|
|
delivery_settings.save()
|