sbejaoui
e55f91ac5c
[12.0][FIX] - report_py3o: run libreoffice in an isolated user installation
Bug when more than one conversion print is launched within the same libreoffice instance.
The standard behavior of libreoffice when a user open it while another instance is
running is to show a new window and throw an error if a new instance is forced within
the same user installation [see](https://bugs.documentfoundation.org/show_bug.cgi?id=37531 ).
This implies a bug in report_py3o module when we call libreoffice at the same time for
different documents.
To reproduce this bug:
**Case 1:**
1. Simultaneously print two documents.
**Case 2:**
1. Run print jobs using job_queue module
2. Manually print another document
**Case 3:**
2. Open libreoffice
3. Print a py3o report
This PR creates a temporary user installation for each libreoffice conversion to bypass this limitation.
5 years ago
sbejaoui
33c6633e1f
[FIX] - remove py3o action report
5 years ago
Laurent Mignon (ACSONE)
b5706db629
[FIX] report_py3o: Access to ir.config_parameter with sudo
6 years ago
Laurent Mignon (ACSONE)
90f0a66532
[IMP] py3o_report: Allow to specify the lang when calling o_format_lang
lang_code is already supported by o_format_date
6 years ago
Laurent Mignon (ACSONE)
762c52118f
[FIX] report_py3o: Add missing 'user' and 'lang' into the parser context
6 years ago
Laurent Mignon (ACSONE)
876aa27ef2
[IMP][FIX] py3o_report, py3o_report_fusion_server: Compute the availability of py3o report
Before this change it was not possible to install modules declaring py3o report into a non native format without specifying a Fusion server once the module py3o_report_fusion_server was installed. With theses changes, we now take care of the availability of the libreoffice runtime to display/log a warning message when the report is in a non native runtime.
6 years ago
Laurent Mignon (ACSONE)
213895ed0c
[FIX] report_py3o: Add missing method _merge_pdf.
This method was previously provided by Odoo and is used to merge all the reports generated if the generation is called for more than one record
6 years ago
Laurent Mignon (ACSONE)
b81219abd3
[IMP] report_py3o: remove obsolete methods
6 years ago
Laurent Mignon (ACSONE)
6aa8f4aa5a
[FIX] report_py3o: Use the right naming convention for the render method
To determine the method to use to render a recport according to its type, the generic method 'render' defined into ir.action.report check if a method name is defined on the model. https://github.com/odoo/odoo/blob/12.0/odoo/addons/base/models/ir_actions_report.py#L734
Therefore, we must provide this method to be compliant with what's expected by Odoo.
This change will also allows the usage of py3o template with mail_template once https://github.com/odoo/odoo/pull/30013 will be merged
6 years ago
Gilles Meyomesse
74f58a3423
[12.0][MIG] improvement py3o_report_extender
6 years ago
Laurent Mignon (ACSONE)
dce59162ce
[MIG] report_py3o, report_py3o_fusion_server: Migration to 12.0
6 years ago
Holger Brunn
efab84502c
[IMP] check for template data, not for the id
7 years ago
jesusVMayor
22d6113c05
[FIX]report_py3o: Escape correctly html characters.
7 years ago
Holger Brunn
208148d79e
[FIX] fallback to libreoffice conversion when no server is configured
fixes #200
7 years ago
Holger Brunn
ae65d78882
[RFR] split off the fusion server to its own module
use libreoffice for conversions in the base version. Fixes #179
7 years ago
Omar
9c3da02bdb
[FIX] report_py3o: Import new dependencies in try...except
7 years ago
Omar
780cef9898
[FIX] report_py3o: Removes api.one
7 years ago
omar7r
3850a62d75
[FIX] Deletes an unnecessary function call
7 years ago
Omar
838f94e3fc
[IMP] report_py3o: Allows to interpret \n and \t in texts, cleans html tags too
7 years ago
Laurent Mignon
0fbd3538f9
[IMP] report_py3o: Take into account print_report_name
If a Printed Report Name is set on the action report, use it as
downloaded filename
refs #133
8 years ago
Laurent Mignon (ACSONE)
860439b743
[FIX] report_py3o: must return the path to the report
refs #119
8 years ago
Alexis de Lattre
5173ca28c3
Add option py3o_multi_in_one for Py3o reports
8 years ago
Guewen Baconnier
97fa71333f
Pass option for escaping False values to server
Needs https://bitbucket.org/faide/py3o.fusion/pull-requests/1
8 years ago
Guewen Baconnier
00ee152021
Fix py3o freeze when using server fusion
The template file has been partially read for the parsing of the
expressions, so use the original template data instead. When the fusion
server receives an incomplete template, we don't receive any answer
back.
8 years ago
Laurent Mignon (ACSONE)
65dd610068
[IMP] report_py3o: prevent injections when retrieving the template from path
8 years ago
Alexis de Lattre
ca8de29893
[FIX] delete PDF invoice attachment on invoice back to draft (native feature now working with py3o)
8 years ago
Laurent Mignon (ACSONE)
e5861a78de
[FIX] report_py3o: fix exception when report must be saved as attachement
The mehtod must be called with a list of ids not with a list of browse records
8 years ago
Laurent Mignon (ACSONE)
bc35d438fd
[IMP] Allow to override/extend the way we get the fallback template
8 years ago
Jonathan Nemry (ACSONE)
1e930adfd2
* travis.yml
* flake8
8 years ago
Laurent Mignon
63167880c8
[IMP] Minimizes memory consumption
Conflicts:
report_py3o/models/py3o_report.py
8 years ago
Jonathan Nemry (ACSONE)
55bcc1e5df
[FIX] imports
8 years ago
Laurent Mignon
e542ea7ba5
[IMP] Replace old style parser by TransientModel
The goal is to improve the modularity by making the parser a true inheritable odoo model and share part of the code with the 'report' model
Conflicts:
report_py3o/models/ir_actions_report_xml.py
report_py3o/models/py3o_report.py
report_py3o/tests/test_report_py3o.py
8 years ago
Alexis de Lattre
1ca273efa8
PEP8 fix
8 years ago
Alexis de Lattre
60fa7324cf
Port report_py3o to Odoo v10
8 years ago
Laurent Mignon (ACSONE)
e3986ad538
[FIX] Check constrains only if report_type == 'py3o'
8 years ago
Laurent Mignon
211fec175b
Add more tests and fixes issues found by tests
8 years ago
Laurent Mignon
ef3461e87a
rename module ir_report to ir_actions_report_xml
8 years ago
Laurent Mignon
9f6a0bd730
Replace plain SQL by orm
8 years ago
Alexis de Lattre
ceea7bf493
Take into accounts most remarks of @lasley
Remove <data> in views
Protect import of py3o libs
Remove dep on base module
Other small changes
8 years ago
Alexis de Lattre
b6faa590b2
Small usability improvements
Replace README.md by README.rst (not finished)
8 years ago
Laurent Mignon
0a8c0b67c6
Add simple tests and fix call to fusion server
8 years ago
Florent AIDE
e40e810485
fixed missing comma in model definition
8 years ago
Laurent Mignon
8360106cfe
Improve filetype selection name
8 years ago
Laurent Mignon
744fb50808
[IMP] Allow user to use local fusion
8 years ago
Laurent Mignon
92a1cde5b5
[IMP] Add the possiblity to get the template from an absolute path on the server
8 years ago
Laurent Mignon
eac6184104
Remove unicode string
8 years ago
Laurent Mignon
32062c987e
[IMP] New API + Short Hearder
8 years ago
Laurent Mignon
351badcd48
Move to report_py3o after import from HG
8 years ago