blob: dc14d04960ae21993d3f285d56db2523791dccd7 [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
Aditya Hasef3c22f32019-01-22 18:22:20 +05304from __future__ import unicode_literals
Nabin Hait0357fbc2018-03-09 13:19:52 +05305import frappe
6from frappe import _
7from erpnext import get_region
8
9def check_deletion_permission(doc, method):
10 region = get_region()
Nabin Haita334ed82019-01-22 10:41:50 +053011 if region in ["Nepal", "France"] and doc.docstatus != 0:
12 frappe.throw(_("Deletion is not permitted for country {0}".format(region)))