oca-travis
fa0cb33b2e
[UPD] Update report_async.pot
2022-04-13 16:54:45 +00:00
OCA-git-bot
2007f1d532
Merge PR #429 into 13.0
...
Signed-off-by HviorForgeFlow
2022-04-13 16:47:10 +00:00
Saran440
359e8f359c
[13.0][MIG] report_async
2022-04-13 18:45:08 +07:00
Saran440
d4afffff27
[IMP] report_async: black, isort, prettier
2022-04-13 18:45:08 +07:00
OCA-git-bot
7e838920f6
report_async 12.0.1.0.1
2022-04-13 18:45:08 +07:00
OCA-git-bot
66067aade6
[UPD] README.rst
2022-04-13 18:45:08 +07:00
oca-travis
1f8e043a04
[UPD] Update report_async.pot
2022-04-13 18:45:08 +07:00
kittiu
0ede6c1969
[12.0][ADD] report_async
2022-04-13 18:45:08 +07:00
oca-git-bot
c3ce6ab4f5
[IMP] update dotfiles [ci skip]
2022-04-10 16:09:21 +02:00
oca-git-bot
1f1c6bbd41
[IMP] update dotfiles [ci skip]
2022-03-31 17:23:06 +02:00
Pedro M. Baeza
b9dee01f4d
report_xlsx_helper 13.0.1.1.3
2022-03-03 12:07:29 +01:00
OCA-git-bot
276f49c8b2
[UPD] addons table in README.md
2022-03-03 08:27:02 +00:00
Pedro M. Baeza
36537cb02f
report_xlsx_helper 13.0.1.1.2
2022-03-03 09:26:39 +01:00
Pedro M. Baeza
cf78595c2b
[IMP] report_xlsx_helper: Promote to stable
...
It has been here for a while now.
2022-03-03 09:25:03 +01:00
OCA-git-bot
a77de56567
[UPD] addons table in README.md
2021-12-02 15:56:05 +00:00
OCA-git-bot
a7809adf06
report_py3o 13.0.1.0.5
2021-12-02 15:55:55 +00:00
OCA-git-bot
9539a69914
Merge PR #490 into 13.0
...
Signed-off-by dreispt
2021-12-02 15:01:52 +00:00
oca-git-bot
107ab011d1
[IMP] update dotfiles [ci skip]
2021-11-10 22:29:11 +01:00
OCA-git-bot
b14f1077a1
[UPD] addons table in README.md
2021-11-08 11:51:14 +00:00
OCA-git-bot
c33fa35fd1
report_xlsx 13.0.1.0.6
2021-11-08 11:51:09 +00:00
OCA-git-bot
337147114c
[UPD] README.rst
2021-11-08 11:51:09 +00:00
OCA-git-bot
6cbfa13274
Merge PR #547 into 13.0
...
Signed-off-by pedrobaeza
2021-11-08 11:07:06 +00:00
Eugene Molotov
9d5b0aba99
[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 14:18:16 +05:00
oca-git-bot
5888860573
[IMP] update dotfiles [ci skip]
2021-10-21 17:39:02 +02:00
OCA-git-bot
210ac31c57
[ADD] setup.py
2021-10-16 06:13:10 +00:00
OCA-git-bot
9f740b7cb6
[UPD] addons table in README.md
2021-10-14 07:07:40 +00:00
OCA-git-bot
763c1b6147
report_py3o 13.0.1.0.4
2021-10-14 07:07:35 +00:00
OCA-git-bot
a4f2138478
Merge PR #544 into 13.0
...
Signed-off-by lmignon
2021-10-14 07:00:36 +00:00
Enric Tobella
1b9f34baad
[FIX-OU] report_py3o: Missing migration script
2021-10-03 15:17:56 +02:00
OCA-git-bot
74ae606fa1
[UPD] addons table in README.md
2021-10-01 14:39:06 +00:00
OCA-git-bot
c49a276f97
Merge PR #543 into 13.0
...
Signed-off-by pedrobaeza
2021-10-01 14:31:58 +00:00
david
8d9ad8b6f1
[FIX] report_qweb_signer: noupdate defaults
...
We don't want our custom parameters be reset every time the module
updates.
TT32256
2021-10-01 14:46:45 +02:00
OCA-git-bot
e2d82096e4
[UPD] addons table in README.md
2021-09-20 09:09:31 +00:00
OCA-git-bot
5e50177bae
report_xlsx 13.0.1.0.5
2021-09-20 09:09:27 +00:00
OCA-git-bot
827dd10896
Merge PR #536 into 13.0
...
Signed-off-by pedrobaeza
2021-09-20 09:02:21 +00:00
david
f1e7c3b214
[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-17 17:30:47 +02:00
OCA-git-bot
d0f55672c4
[UPD] addons table in README.md
2021-08-14 04:32:12 +00:00
OCA-git-bot
99919a16f1
Merge PR #532 into 13.0
...
Signed-off-by pedrobaeza
2021-08-05 13:31:32 +00:00
João Marques
a746b38d5b
Update copier template
2021-08-05 13:10:48 +01:00
João Marques
17a70f9139
Remove `endesive` dependency from requirements
...
This was making us install `swig` in all repos that depended on any module from reporting-engine.
2021-08-05 13:09:39 +01:00
OCA Transbot
c156913c20
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-04 17:25:04 +00:00
OCA-git-bot
e8103172a4
[UPD] addons table in README.md
2021-08-04 17:24:49 +00:00
OCA-git-bot
3601d6df90
report_qweb_signer 13.0.2.0.0
2021-08-04 17:24:44 +00:00
oca-travis
6efdf8aee9
[UPD] Update report_qweb_signer.pot
2021-08-04 17:19:27 +00:00
OCA-git-bot
d51766e1f3
Merge PR #528 into 13.0
...
Signed-off-by pedrobaeza
2021-08-04 17:12:29 +00:00
Laurent-Corron
a770c10b86
[IMP] report_qweb_signer add endesive
2021-07-29 16:41:34 +02:00
OCA-git-bot
89075b4c3e
[UPD] addons table in README.md
2021-07-27 14:00:23 +00:00
OCA-git-bot
06e74c76cf
report_xlsx 13.0.1.0.4
2021-07-27 14:00:15 +00:00
OCA-git-bot
dadd627504
report_qweb_signer 13.0.1.0.1
2021-07-27 14:00:14 +00:00
OCA-git-bot
c867290466
report_qweb_parameter 13.0.1.0.2
2021-07-27 14:00:13 +00:00