2018-03-09 13:19:52 +05:30
|
|
|
# Copyright (c) 2018, Frappe Technologies and contributors
|
|
|
|
# For license information, please see license.txt
|
|
|
|
|
2019-01-22 18:22:20 +05:30
|
|
|
from __future__ import unicode_literals
|
2018-03-09 13:19:52 +05:30
|
|
|
import frappe
|
|
|
|
from frappe import _
|
|
|
|
from erpnext import get_region
|
|
|
|
|
|
|
|
def check_deletion_permission(doc, method):
|
2018-11-13 11:13:04 +05:30
|
|
|
region = get_region(doc.company)
|
2019-01-22 10:41:50 +05:30
|
|
|
if region in ["Nepal", "France"] and doc.docstatus != 0:
|
2018-11-13 11:13:04 +05:30
|
|
|
frappe.throw(_("Deletion is not permitted for country {0}".format(region)))
|