d78cf97250
* feat: Allow tax withholding category selection at invoice level * fix: Linitng fixes * feat: TDS calculation using common PAN * fix: Add provision to deduct Lower TDS in purchase invoice * fix: Consider only ref docs company while computing TDS * fix: Default permission fixes * fix: Add validation for dates in fiscal year * fix: Undefined variable
13 lines
532 B
Python
13 lines
532 B
Python
import frappe
|
|
from frappe.permissions import add_permission, update_permission_property
|
|
|
|
def execute():
|
|
company = frappe.get_all('Company', filters = {'country': 'India'})
|
|
if not company:
|
|
return
|
|
|
|
frappe.reload_doc('regional', 'doctype', 'Lower Deduction Certificate')
|
|
|
|
add_permission('Lower Deduction Certificate', 'Accounts Manager', 0)
|
|
update_permission_property('Lower Deduction Certificate', 'Accounts Manager', 0, 'write', 1)
|
|
update_permission_property('Lower Deduction Certificate', 'Accounts Manager', 0, 'create', 1) |