updated patch to delete auto email reports and moved patch to v13 from v12

This commit is contained in:
Afshan 2020-07-22 16:00:18 +05:30
parent 8ec4198af2
commit 6b9acf4476
3 changed files with 13 additions and 8 deletions

View File

@ -708,5 +708,5 @@ erpnext.patches.v13_0.move_doctype_reports_and_notification_from_hr_to_payroll #
erpnext.patches.v13_0.move_payroll_setting_separately_from_hr_settings #22-06-2020
erpnext.patches.v13_0.check_is_income_tax_component #22-06-2020
erpnext.patches.v12_0.add_taxjar_integration_field
erpnext.patches.v12_0.delete_report_requested_items_to_order
erpnext.patches.v13_0.delete_report_requested_items_to_order
erpnext.patches.v12_0.update_item_tax_template_company

View File

@ -1,7 +0,0 @@
import frappe
def execute():
frappe.db.sql("""
DELETE FROM `tabReport`
WHERE name = 'Requested Items to Order'
""")

View File

@ -0,0 +1,12 @@
import frappe
def execute():
""" Check for one or multiple Auto Email Reports and delete """
auto_email_reports = frappe.db.get_values("Auto Email Report", {"report": "Requested Items to Order"}, ["name"])
for auto_email_report in auto_email_reports:
frappe.delete_doc("Auto Email Report", auto_email_report[0])
frappe.db.sql("""
DELETE FROM `tabReport`
WHERE name = 'Requested Items to Order'
""")