blob: cdbecd0e8cf4d4b28faf0da006c289b15315084e [file] [log] [blame]
Nabin Hait0357fbc2018-03-09 13:19:52 +05301# Copyright (c) 2018, Frappe Technologies and contributors
2# For license information, please see license.txt
3
4import frappe
5from frappe import _
6from erpnext import get_region
7
8def check_deletion_permission(doc, method):
Himanshu Mishra35b26272018-11-13 11:13:04 +05309 region = get_region(doc.company)
Nabin Hait0357fbc2018-03-09 13:19:52 +053010 if region in ["Nepal", "France"]:
Himanshu Mishra35b26272018-11-13 11:13:04 +053011 frappe.throw(_("Deletion is not permitted for country {0}".format(region)))