Odoo18-Base/addons/l10n_in_withholding/__manifest__.py
2025-03-10 10:52:11 +07:00

21 lines
597 B
Python

{
'name': 'Indian - TDS',
'version': '1.0',
'countries': ['in'],
'description': """
Support for Indian TDS (Tax Deducted at Source).
""",
'category': 'Accounting/Localizations',
'depends': ['l10n_in'],
'data': [
'security/ir.model.access.csv',
'wizard/l10n_in_withhold_wizard.xml',
'views/account_move_views.xml',
'views/account_payment_views.xml',
'views/account_tax_views.xml',
'views/res_config_settings_views.xml',
],
'post_init_hook': '_l10n_in_withholding_post_init',
'license': 'LGPL-3',
}