brotherton-erpnext/erpnext/patches/v12_0/set_permission_einvoicing.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
601 B
Python
Raw Normal View History

2019-10-16 18:08:51 +00:00
import frappe
from frappe.permissions import add_permission, update_permission_property
2019-12-10 11:37:03 +00:00
from erpnext.regional.italy.setup import make_custom_fields
2019-10-16 18:08:51 +00:00
def execute():
company = frappe.get_all("Company", filters={"country": "Italy"})
if not company:
return
2019-12-10 11:37:03 +00:00
make_custom_fields()
frappe.reload_doc("regional", "doctype", "import_supplier_invoice")
2019-10-16 18:08:51 +00:00
add_permission("Import Supplier Invoice", "Accounts Manager", 0)
update_permission_property("Import Supplier Invoice", "Accounts Manager", 0, "write", 1)
update_permission_property("Import Supplier Invoice", "Accounts Manager", 0, "create", 1)