Skip to content

Commit 019b15a

Browse files
committedJan 22, 2025·
[BOT] post-merge updates
1 parent 806d151 commit 019b15a

File tree

4 files changed

+39
-34
lines changed

4 files changed

+39
-34
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ addon | version | maintainers | summary
2424
[base_comment_template](base_comment_template/) | 18.0.1.0.0 | | Add conditional mako template to any reporton models that inherits comment.template.
2525
[bi_sql_editor](bi_sql_editor/) | 18.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | BI Views builder, based on Materialized or Normal SQL Views
2626
[report_xlsx](report_xlsx/) | 18.0.1.0.0 | | Base module to create xlsx report
27+
[sql_export](sql_export/) | 18.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) [![florian-dacosta](https://github.com/florian-dacosta.png?size=30px)](https://github.com/florian-dacosta) | Export data in csv file with SQL requests
2728
[sql_request_abstract](sql_request_abstract/) | 18.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Abstract Model to manage SQL Requests
2829

2930
[//]: # (end addons)

‎setup/_metapackage/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[project]
22
name = "odoo-addons-oca-reporting-engine"
3-
version = "18.0.20250115.0"
3+
version = "18.0.20250122.0"
44
dependencies = [
55
"odoo-addon-base_comment_template==18.0.*",
66
"odoo-addon-bi_sql_editor==18.0.*",
77
"odoo-addon-report_xlsx==18.0.*",
8+
"odoo-addon-sql_export==18.0.*",
89
"odoo-addon-sql_request_abstract==18.0.*",
910
]
1011
classifiers=[

‎sql_export/README.rst

+31-28
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SQL Export
77
!! This file is generated by oca-gen-addon-readme !!
88
!! changes will be overwritten. !!
99
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10-
!! source digest: sha256:2cf03bbe1b27b9015fc6d1d57ce5b9b14951c00861e9d8518343c66a2c0b14cc
10+
!! source digest: sha256:4c86a7045492475d6fa066f4be3103bab42bc49afc27271a8a765f43b9874dd0
1111
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1212
1313
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -45,31 +45,31 @@ Dashboards > Sql Export
4545

4646
**Specific use with parameters**
4747

48-
- %(company_id)s allows to set in the query the company id of the user
49-
- %(user_id)s allows to set in the query the user id
50-
- for any created property, you can use it with %(Property String)s
51-
syntax
48+
- %(company_id)s allows to set in the query the company id of the user
49+
- %(user_id)s allows to set in the query the user id
50+
- for any created property, you can use it with %(Property String)s
51+
syntax
5252

5353
Known issues / Roadmap
5454
======================
5555

56-
- Some words are prohibited and can't be used is the query in anyways,
57-
even in a select query:
56+
- Some words are prohibited and can't be used is the query in anyways,
57+
even in a select query:
5858

59-
- delete
60-
- drop
61-
- insert
62-
- alter
63-
- truncate
64-
- execute
65-
- create
66-
- update
59+
- delete
60+
- drop
61+
- insert
62+
- alter
63+
- truncate
64+
- execute
65+
- create
66+
- update
6767

6868
See sql_request_abstract module to fix this issue.
6969

70-
- checking SQL request by execution and rollback is disabled in this
71-
module since variables features has been introduced. This can be
72-
fixed by overloading \_prepare_request_check_execution() function.
70+
- checking SQL request by execution and rollback is disabled in this
71+
module since variables features has been introduced. This can be fixed
72+
by overloading \_prepare_request_check_execution() function.
7373

7474
Bug Tracker
7575
===========
@@ -93,19 +93,19 @@ Authors
9393
Contributors
9494
------------
9595

96-
- `Akretion <https://www.akretion.com>`__:
96+
- `Akretion <https://www.akretion.com>`__:
9797

98-
- Florian da Costa <florian.dacosta@akretion.com>
99-
- Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com>
100-
- Benoît GUILLOT <benoit.guillot@akretion.com>
98+
- Florian da Costa <florian.dacosta@akretion.com>
99+
- Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com>
100+
- Benoît GUILLOT <benoit.guillot@akretion.com>
101101

102-
- `Eficent <https://www.eficent.com>`__:
102+
- `Eficent <https://www.eficent.com>`__:
103103

104-
- Aaron Henriquez <ahenriquez@eficent.com>
104+
- Aaron Henriquez <ahenriquez@eficent.com>
105105

106-
- `Codeforward <https://www.codeforward.nl>`__:
106+
- `Codeforward <https://www.codeforward.nl>`__:
107107

108-
- Sander Lienaerts <sander.lienaerts@codeforward.nl>
108+
- Sander Lienaerts <sander.lienaerts@codeforward.nl>
109109

110110
Maintainers
111111
-----------
@@ -123,10 +123,13 @@ promote its widespread use.
123123
.. |maintainer-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px
124124
:target: https://github.com/legalsylvain
125125
:alt: legalsylvain
126+
.. |maintainer-florian-dacosta| image:: https://github.com/florian-dacosta.png?size=40px
127+
:target: https://github.com/florian-dacosta
128+
:alt: florian-dacosta
126129

127-
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
130+
Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:
128131

129-
|maintainer-legalsylvain|
132+
|maintainer-legalsylvain| |maintainer-florian-dacosta|
130133

131134
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/18.0/sql_export>`_ project on GitHub.
132135

‎sql_export/static/description/index.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ <h1 class="title">SQL Export</h1>
367367
!! This file is generated by oca-gen-addon-readme !!
368368
!! changes will be overwritten. !!
369369
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370-
!! source digest: sha256:2cf03bbe1b27b9015fc6d1d57ce5b9b14951c00861e9d8518343c66a2c0b14cc
370+
!! source digest: sha256:4c86a7045492475d6fa066f4be3103bab42bc49afc27271a8a765f43b9874dd0
371371
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372372
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/reporting-engine/tree/18.0/sql_export"><img alt="OCA/reporting-engine" src="https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/reporting-engine-18-0/reporting-engine-18-0-sql_export"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373373
<p>Allow to export data in csv files FROM sql requests. There are some
@@ -418,8 +418,8 @@ <h1><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h1>
418418
<p>See sql_request_abstract module to fix this issue.</p>
419419
<ul class="simple">
420420
<li>checking SQL request by execution and rollback is disabled in this
421-
module since variables features has been introduced. This can be
422-
fixed by overloading _prepare_request_check_execution() function.</li>
421+
module since variables features has been introduced. This can be fixed
422+
by overloading _prepare_request_check_execution() function.</li>
423423
</ul>
424424
</div>
425425
<div class="section" id="bug-tracker">
@@ -467,8 +467,8 @@ <h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
467467
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
468468
mission is to support the collaborative development of Odoo features and
469469
promote its widespread use.</p>
470-
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
471-
<p><a class="reference external image-reference" href="https://github.com/legalsylvain"><img alt="legalsylvain" src="https://github.com/legalsylvain.png?size=40px" /></a></p>
470+
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainers</a>:</p>
471+
<p><a class="reference external image-reference" href="https://github.com/legalsylvain"><img alt="legalsylvain" src="https://github.com/legalsylvain.png?size=40px" /></a> <a class="reference external image-reference" href="https://github.com/florian-dacosta"><img alt="florian-dacosta" src="https://github.com/florian-dacosta.png?size=40px" /></a></p>
472472
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/18.0/sql_export">OCA/reporting-engine</a> project on GitHub.</p>
473473
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
474474
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.