Files
Odoo-18.0-20251222/account_tax_balance/__openerp__.py
eLBati a48acb15d4 [FIX+IMP] account_tax_balance:
* Tests
* PEP8
* Use invoice._convert_to_write(invoice._cache). This way, the onchange will be inheritable and will add here also the added values
* better get_context_values
* unify method compute_balance
* open move lines linked to balance
2024-12-06 14:42:42 +01:00

27 lines
741 B
Python

# -*- coding: utf-8 -*-
# © 2016 Lorenzo Battistini - Agile Business Group
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Tax Balance",
"summary": "Compute tax balances based on date range",
"version": "9.0.1.0.0",
"category": "Accounting & Finance",
"website": "https://www.agilebg.com/",
"author": "Agile Business Group, Therp BV, "
"Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"account",
"date_range",
],
"data": [
"wizard/open_tax_balances_view.xml",
"views/account_tax_view.xml",
],
"images": [
'images/tax_balance.png',
]
}