Financial reports for Odoo
 
 
 
 
 
Go to file
Pedro M. Baeza f22cb07c76 [FIX] account_financial_report: Avoid slow vacuum due to ondelete=cascade
`report_journal_ledger` is auto-vacuumed as any transient model, but has some
ondelete="cascade" constraints that auto-remove subtables when a record is removed,
doing this operation very slow when selecting these sub-records.

Letting default ondelete="set null" would result in same performance bottleneck,
as the select on sub-table is performed the same for setting "null" value on them.

As a solution, and for avoiding a costly index operation, we delete by SQL sub-tables
rows in advance.

A bit of extra logic has been added for avoiding to remove that records if it's not
the turn of vacuum the parent table.
2019-08-20 20:05:33 +02:00
account_financial_report [FIX] account_financial_report: Avoid slow vacuum due to ondelete=cascade 2019-08-20 20:05:33 +02:00
account_financial_report_date_range Added translation using Weblate (Italian) 2019-07-30 12:49:33 +00:00
account_tax_balance Translated using Weblate (Italian) 2019-07-30 15:43:44 +00:00
customer_activity_statement Translated using Weblate (Italian) 2019-07-30 15:43:44 +00:00
customer_outstanding_statement Translated using Weblate (Italian) 2019-07-30 15:43:44 +00:00
setup [ADD] setup.py 2018-11-14 12:35:54 +00:00
.gitignore dynamize general ledger 2017-12-22 11:01:12 +01:00
.travis.yml .travis.yml: Remove offending commands 2019-05-15 09:20:41 +02:00
LICENSE [MIG] Add metafiles 2017-10-03 15:56:40 +02:00
README.md [FIX] README.md: proper runbot icon 2019-06-08 09:55:12 +02:00
oca_dependencies.txt [DEL] oca_dependencies: remove duplicities 2018-11-13 19:12:30 +01:00
requirements.txt migrate account_financial_report_qweb to 11.0 2017-11-27 19:05:11 +01:00

README.md

Runbot Status Build Status Coverage Status

Odoo account financial reports

This project aims to deal with modules related to financial reports. You'll find modules that print legal and official reports. This includes, among others:

  • One module based on webkit and totally rewritten by camptocamp, for standard financial reports.
  • Another based on RML completely improved by Vauxoo.