2019-02-07 03:28:27 +01:00
|
|
|
import os
|
|
|
|
import frappe
|
2021-04-07 20:03:59 +02:00
|
|
|
from frappe.custom.doctype.custom_field.custom_field import create_custom_fields
|
2019-02-07 03:28:27 +01:00
|
|
|
|
2019-01-27 23:32:41 +01:00
|
|
|
|
|
|
|
def setup(company=None, patch=True):
|
2021-04-07 20:03:59 +02:00
|
|
|
make_custom_fields()
|
2021-04-13 15:46:01 +05:30
|
|
|
add_custom_roles_for_reports()
|
2021-04-07 20:03:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
def make_custom_fields():
|
|
|
|
custom_fields = {
|
|
|
|
'Party Account': [
|
|
|
|
dict(fieldname='debtor_creditor_number', label='Debtor/Creditor Number',
|
2021-04-08 16:26:56 +02:00
|
|
|
fieldtype='Data', insert_after='account', translatable=0)
|
2021-04-07 20:03:59 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
create_custom_fields(custom_fields)
|
2021-04-16 12:37:14 +02:00
|
|
|
|
|
|
|
|
2021-04-13 15:46:01 +05:30
|
|
|
def add_custom_roles_for_reports():
|
|
|
|
"""Add Access Control to UAE VAT 201."""
|
|
|
|
if not frappe.db.get_value('Custom Role', dict(report='DATEV')):
|
|
|
|
frappe.get_doc(dict(
|
|
|
|
doctype='Custom Role',
|
|
|
|
report='DATEV',
|
|
|
|
roles= [
|
|
|
|
dict(role='Accounts User'),
|
|
|
|
dict(role='Accounts Manager')
|
|
|
|
]
|
2021-04-16 12:37:14 +02:00
|
|
|
)).insert()
|