Odoo18-Base/addons/pos_account_tax_python/__manifest__.py
2025-01-06 10:57:38 +07:00

17 lines
505 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Allow custom taxes in POS",
'category': 'Accounting/Accounting',
'version': '1.0',
'description': """Add code to manage custom taxes to the POS assets bundle""",
'depends': ['account_tax_python', 'point_of_sale'],
'assets': {
'point_of_sale._assets_pos': [
'account_tax_python/static/src/helpers/*.js',
],
},
'auto_install': True,
'license': 'LGPL-3',
}