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:
|
2020-01-29 15:06:18 +05:30
|
|
|
frappe.throw(_("Deletion is not permitted for country {0}").format(region))
|
2019-11-06 14:37:04 +01:00
|
|
|
|
|
|
|
def create_transaction_log(doc, method):
|
|
|
|
"""
|
|
|
|
Appends the transaction to a chain of hashed logs for legal resons.
|
|
|
|
Called on submit of Sales Invoice and Payment Entry.
|
|
|
|
"""
|
|
|
|
region = get_region()
|
|
|
|
if region not in ["France", "Germany"]:
|
|
|
|
return
|
|
|
|
|
|
|
|
data = str(doc.as_dict())
|
|
|
|
|
|
|
|
frappe.get_doc({
|
|
|
|
"doctype": "Transaction Log",
|
|
|
|
"reference_doctype": doc.doctype,
|
|
|
|
"document_name": doc.name,
|
|
|
|
"data": data
|
|
|
|
}).insert(ignore_permissions=True)
|