| REPOSITORY | |
|---|---|
| REPOSITORY | odoo/odoo |
| GIT | |
| GIT | https://github.com/odoo/odoo.git |
| GIT FOLDER | |
| GIT FOLDER | https://github.com/odoo/odoo/tree/9.0/account_tax_adjustments |
| VERSION | |
| VERSION | 1.1 |
| CATEGORY | |
| CATEGORY | Accounting |
| LICENSE | |
| LICENSE | LGPL-3 |
| APPLICATION | |
| APPLICATION | No |
| AUTO-INSTALLABLE | |
| AUTO-INSTALLABLE | No |
| AUTHORS | |
| AUTHORS | |
| MAINTAINERS | |
| MAINTAINERS | |
| COMMITTERS | |
| COMMITTERS | qdp-odoo, Yannick Tivisse |
| WEBSITE | |
| WEBSITE | https://www.odoo.com/page/accounting |
| LAST TRACKING UPDATE | |
| LAST TRACKING UPDATE | 2026-07-05 23:48:31 |
| ODOO DEPENDENCIES | |
| ODOO DEPENDENCIES |
odoo/odoo: - account - base_setup - base - web_kanban - web - product - decimal_precision - bus - report - analytic - web_tip - web_planner |
| PYTHON DEPENDENCIES | |
| PYTHON DEPENDENCIES | Not have |
| SYSTEM DEPENDENCIES | |
| SYSTEM DEPENDENCIES | Not have |
| DESCRIPTION | |
| DESCRIPTION |
Accounting Tax Adjustments.
===========================
This module adds a wizard to deal with manual Tax adjustments, to manually correct the VAT declaration through a miscellaneous operation for example.
The correct definition of an adjustment tax is
- type_tax_use: none
- amount_type: fixed
- amount: 0
- tags: a grid used in your vat report for manual correction.
|
| XML ID | Name | Model | Type | Status |
|---|---|---|---|---|
tax_adjustments_wizard |
tax.adjustments.wizard.form | tax.adjustments.wizard | form | New |
amount
Monetary
currency_field='company_currency_id'
required=True
company_currency_id
Many2one → res.currency
default=<expr>
readonly=True
args: 'res.currency'
credit_account_id
Many2one → account.account
domain=[('deprecated', '=', False)]
required=True
string='Credit account'
args: 'account.account'
date
Date
default=fields.Date.context_today
required=True
debit_account_id
Many2one → account.account
domain=[('deprecated', '=', False)]
required=True
string='Debit account'
args: 'account.account'
journal_id
Many2one → account.journal
default=_get_default_journal
domain=[('type', '=', 'general')]
required=True
string='Journal'
args: 'account.journal'
reason
Char
required=True
string='Justification'
tax_id
Many2one → account.tax
domain=[('type_tax_use', '=', 'none'), ('amount_type', '=', 'fixed'), ('amount', '=', 0)]
ondelete='restrict'
required=True
string='Adjustment Tax'
args: 'account.tax'
create_move(self)