Commit Graph

677 Commits (0050c70e1709eb18f439016d1c4cf282da703f08)

Author SHA1 Message Date
OCA-git-bot 6339554227 [UPD] README.rst 2021-11-08 12:57:59 +00:00
OCA-git-bot fb254767c4 Merge PR #548 into 14.0
Signed-off-by pedrobaeza
2021-11-08 11:48:52 +00:00
Eugene Molotov 19638e889c
[FIX] report_xlsx: correctly handle exceptions, when generating report
Before this commit, when exception is raised while generating report,
on browser window instead of python traceback nothing was shown
on production environment or werkzeug's "Console locked" message
on development environment.
2021-11-08 16:45:56 +05:00
OCA-git-bot 7be6301d1c [UPD] addons table in README.md 2021-11-08 07:32:39 +00:00
OCA-git-bot 99c3f8b80d report_xlsx_helper 14.0.1.0.1 2021-11-08 07:32:35 +00:00
OCA-git-bot aefd369070 Merge PR #483 into 14.0
Signed-off-by pedrobaeza
2021-11-08 07:17:32 +00:00
Elmeri Niemelä 0ddf462e04
[IMP] Remove except of IOError as its an alias to OSError in python3
Co-authored-by: Nils Hamerlinck <nilshamerlinck@users.noreply.github.com>
2021-11-07 14:03:59 +02:00
Elmeri Niemelä 6760507d72
[IMP] Cleanup unnecessary imports
Co-authored-by: Nils Hamerlinck <nilshamerlinck@users.noreply.github.com>
2021-11-07 14:01:44 +02:00
Elmeri Niemelä 779da4f952
[IMP] Workaround for genshi DeprecationWarning that makes runbot build red
Co-authored-by: Nils Hamerlinck <nilshamerlinck@users.noreply.github.com>
2021-11-07 14:00:56 +02:00
Alexis de Lattre 82e1480036
Merge branch '14.0' into 14.0 2021-11-05 17:01:22 +01:00
Elmeri Niemelä 08deb1e931 [IMP] Add ability to include properly formatted datetime field in a report displaying date and time 2021-11-05 17:06:57 +02:00
Omar (Comunitea) f93480f107 [FIX] report_qweb_signer: Fix when report is printed without related objects (print from wizard in some cases) 2021-11-04 23:44:00 +01:00
Omar (Comunitea) f697543148 [IMP] report_qweb_signer: Signature visible parameter not include by default and fix multicompany issue 2021-11-02 19:07:43 +01:00
david 629a76dd67 [FIX] report_qweb_signer: noupdate defaults
We don't want our custom parameters be reset every time the module
updates.

TT32256
2021-11-02 19:02:23 +01:00
oca-git-bot 8b5f1a9d43
[IMP] update dotfiles [ci skip] 2021-10-21 17:39:38 +02:00
OCA-git-bot 9184e5b8ed [ADD] setup.py 2021-10-16 06:14:22 +00:00
OCA-git-bot 58caa4c250 [UPD] addons table in README.md 2021-09-20 11:42:48 +00:00
OCA-git-bot 437a6eaca4 report_xlsx 14.0.1.0.3 2021-09-20 11:42:44 +00:00
OCA-git-bot bc084c53b9 Merge PR #538 into 14.0
Signed-off-by pedrobaeza
2021-09-20 11:33:33 +00:00
david 842137a473 [IMP][FIX] report_xlsx: handle duplicate name exceptions
We want to avoid duplicated sheet names exceptions the same following the same
philosophy that Odoo implements overriding the main library to avoid the 31
characters limit triming the strings before sending them to the library.

In some cases, there's not much control over this as the reports send automated
data and the potential exception is hidden underneath making it hard to debug
the original issue. Even so, different names can become the same one as their
strings are trimmed to those 31 character limit.

This way, once we come across with a duplicated, we set that final 3 characters
with a sequence that we evaluate on the fly. So for instance:

- 'Sheet name' will be 'Sheet name~01'
- The next 'Sheet name' will try to rename to 'Sheet name~01' as well and then
  that will give us 'Sheet name~02'.
- And the next 'Sheet name' will try to rename to 'Sheet name~01' and then to
  'Sheet name~02' and finally it will be able to 'Sheet name~03'.
- An so on as many times as duplicated sheet names come to the workbook up to
  100 for each sheet name. We set such limit as we don't want to truncate the
  strings too much and keeping in mind that this issue don't usually ocurrs.

TT31938
2021-09-20 11:15:40 +02:00
Omar (Comunitea) 54bf4b0ef3 [MIG] report_qweb_signer: Migration to 14.0 updating java's lib for visible signatures 2021-08-30 21:00:57 +02:00
OCA-git-bot 0809bb7109 report_qweb_signer 13.0.2.0.0
Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: reporting-engine-13.0/reporting-engine-13.0-report_qweb_signer
Translate-URL: https://translation.odoo-community.org/projects/reporting-engine-13-0/reporting-engine-13-0-report_qweb_signer/
2021-08-30 13:26:41 +02:00
oca-travis 08606f460b [UPD] Update report_qweb_signer.pot 2021-08-30 13:26:38 +02:00
Laurent-Corron 225ef60e55 [IMP] report_qweb_signer add endesive 2021-08-30 13:26:38 +02:00
OCA-git-bot c8c747df27 report_qweb_signer 13.0.1.0.1 2021-08-30 13:26:38 +02:00
Stéphane Bidoul 61d32f206f Apply dotfiles 2021-08-30 13:26:38 +02:00
Laurent-Corron 40dac0db84 [MIG] report_qweb_signer: Migration to 13.0
[UPD] Update report_qweb_signer.pot

[UPD] README.rst
2021-08-30 13:26:40 +02:00
Laurent-Corron b2b51f0e4c [IMP] report_qweb_signer: Black python code 2021-08-30 13:26:38 +02:00
Marcel Savegnago e9665dcfb3 [FIX] report_qweb_signer
Fix website on manifest
2021-08-30 13:26:38 +02:00
OCA-git-bot 03cd7bee1b report_qweb_signer 12.0.1.0.1
Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: reporting-engine-12.0/reporting-engine-12.0-report_qweb_signer
Translate-URL: https://translation.odoo-community.org/projects/reporting-engine-12-0/reporting-engine-12-0-report_qweb_signer/
2021-08-30 13:26:40 +02:00
david b7cd36d1a7 [FIX] report_qweb_signer: reprint report crash
`render_qweb_pdf` must return a tuple of `(content, 'pdf')`
2021-08-30 13:26:38 +02:00
Pedro M. Baeza 456e006967 [MIG] report_qweb_signer: Refine migration
- Good dependency chain
- Context for forcing rendering PDF
- Extra test

[UPD] README.rst

[UPD] Update report_qweb_signer.pot

Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: reporting-engine-12.0/reporting-engine-12.0-report_qweb_signer
Translate-URL: https://translation.odoo-community.org/projects/reporting-engine-12-0/reporting-engine-12-0-report_qweb_signer/

[UPD] README.rst
2021-08-30 13:26:39 +02:00
David 7c8cada563 [MIG] report_qweb_designer: Migration to 12.0 2021-08-30 13:26:38 +02:00
Pedro M. Baeza bd37d7ee1b [FIX] README syntax 2021-08-30 13:26:38 +02:00
Jairo Llopis 69bc797722 [FIX] report_qweb_signer: Remove hardcoded memory limits
These limits were being hit when printing PDF reports with just 80 pages.

OCA Transbot updated translations from Transifex

[UPD] Update report_qweb_signer.pot
2021-08-30 13:26:38 +02:00
Jordi Ballester f3a9d76229 fix test_report_qweb_signer - tests were causing travis to stall 2021-08-30 13:26:38 +02:00
Pedro M. Baeza 4ef450ae6b [MIG] report_qweb_signer: Migration to 10.0
OCA Transbot updated translations from Transifex
2021-08-30 13:26:38 +02:00
Pedro M. Baeza ba5030a5c1 report_qweb_signer: Add feature request
OCA Transbot updated translations from Transifex
2021-08-30 13:26:36 +02:00
Antonio Espinosa 047cdad70f report_qweb_signer addon 2021-08-30 13:24:29 +02:00
OCA-git-bot 587d99e5ba [UPD] addons table in README.md 2021-08-14 04:32:51 +00:00
OCA Transbot 6f4acc2f84 Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: reporting-engine-14.0/reporting-engine-14.0-report_qweb_element_page_visibility
Translate-URL: https://translation.odoo-community.org/projects/reporting-engine-14-0/reporting-engine-14-0-report_qweb_element_page_visibility/
2021-07-29 23:01:31 +00:00
OCA-git-bot a711591290 [ADD] setup.py 2021-07-29 20:12:30 +00:00
OCA-git-bot 7a930410b1 [UPD] README.rst 2021-07-29 20:12:30 +00:00
OCA-git-bot 8d1bcdd762 [UPD] addons table in README.md 2021-07-29 20:12:28 +00:00
oca-travis 6efb226d0a [UPD] Update report_qweb_element_page_visibility.pot 2021-07-29 20:08:08 +00:00
OCA-git-bot abc6d9a77b Merge PR #476 into 14.0
Signed-off-by pedrobaeza
2021-07-29 20:03:33 +00:00
Kiplangat Dan 947b1e2d78 [14.0][MIG] report_qr 2021-07-13 11:19:28 +03:00
OCA-git-bot 8671eb12ff report_qr 13.0.1.0.1 2021-07-13 11:15:46 +03:00
Enric Tobella 0031b7c8b1 [FIX] report_qr: New QR Library does not contain the old failure 2021-07-13 11:15:46 +03:00
OCA-git-bot f5bb3fac4b [UPD] README.rst 2021-07-13 11:15:46 +03:00