-
- Downloads
[IMP] account, l10n_*: v13 taxes
- Add repartition lines on taxes
- Link account tags directly to account.move.line; remove the tag_ids field from account.tag
- Add a new report engine dedicated to tax reports, directly generating account tags. It is called as an alternate mode of generic tax report, with a dedicated "Use tax grids" toggle.
>> The biggest change lies in the way the new tax report computes its values.
Everything is now aggregated directly using the tags set on the account move lines. Thanks to that,
modifying the configuration of a tax today will not impact the report for the previous periods anymore.
This is a big improvement, as it means the report will keep on reflecting the values that were submitted
to the state before, whatever the configuration change.
- Add an audit char field to account.move.line telling with tax grids are impacted by the line, with the corresponding amount
- Modify the behavior of cash basis taxes: the cash basis account is now used as the transition account, while the regular account given in tax declaration is used to store the final entry (it was the opposite before)
- Modify every l10n_* module in order to keep them consistent with these changes
closes odoo/odoo#32833
Signed-off-by:
Quentin De Paoli (qdp) <qdp@openerp.com>
Showing
- addons/account/__manifest__.py 1 addition, 0 deletionsaddons/account/__manifest__.py
- addons/account/models/account.py 243 additions, 49 deletionsaddons/account/models/account.py
- addons/account/models/account_invoice.py 108 additions, 58 deletionsaddons/account/models/account_invoice.py
- addons/account/models/account_move.py 91 additions, 61 deletionsaddons/account/models/account_move.py
- addons/account/models/chart_template.py 116 additions, 27 deletionsaddons/account/models/chart_template.py
- addons/account/models/product.py 2 additions, 0 deletionsaddons/account/models/product.py
- addons/account/security/account_security.xml 7 additions, 0 deletionsaddons/account/security/account_security.xml
- addons/account/security/ir.model.access.csv 6 additions, 0 deletionsaddons/account/security/ir.model.access.csv
- addons/account/tests/test_account_customer_invoice.py 27 additions, 3 deletionsaddons/account/tests/test_account_customer_invoice.py
- addons/account/tests/test_invoice_taxes.py 99 additions, 7 deletionsaddons/account/tests/test_invoice_taxes.py
- addons/account/tests/test_reconciliation.py 32 additions, 9 deletionsaddons/account/tests/test_reconciliation.py
- addons/account/tests/test_tax.py 24 additions, 2 deletionsaddons/account/tests/test_tax.py
- addons/account/tests/test_templates_consistency.py 2 additions, 0 deletionsaddons/account/tests/test_templates_consistency.py
- addons/account/views/account_invoice_view.xml 5 additions, 1 deletionaddons/account/views/account_invoice_view.xml
- addons/account/views/account_move_views.xml 4 additions, 0 deletionsaddons/account/views/account_move_views.xml
- addons/account/views/account_tax_report_views.xml 76 additions, 0 deletionsaddons/account/views/account_tax_report_views.xml
- addons/account/views/account_view.xml 40 additions, 26 deletionsaddons/account/views/account_view.xml
- addons/account/wizard/wizard_tax_adjustments.py 25 additions, 14 deletionsaddons/account/wizard/wizard_tax_adjustments.py
- addons/account_facturx/data/facturx_templates.xml 2 additions, 1 deletionaddons/account_facturx/data/facturx_templates.xml
- addons/account_tax_python/models/account_tax.py 2 additions, 2 deletionsaddons/account_tax_python/models/account_tax.py
Loading
Please register or sign in to comment