Repository
odoo/odoo · module folder
Module version
1.1
Category
Accounting
Folder size
0.01 MB
License
LGPL-3
Application
No
Auto-installable
No
Website
https://www.odoo.com/page/accounting
Last tracking update
2026-08-07 04:56:42
Authors
Maintainers
None
Committers
qdp-odoo, Yannick Tivisse
Odoo dependencies
Python dependencies
None
System dependencies
None
Required by
None
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.

    

Code Analysis

Views touched (1)
XML IDNameModelTypeStatus
tax_adjustments_wizard tax.adjustments.wizard.form tax.adjustments.wizard form New
HTTP endpoints (0)

No HTTP endpoints found for this module.

Models touched (1)

New fields (8)
  • 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'
Public methods (1)
  • create_move(self)
    @api.multi