Skip to content

Commit e68fdea

Browse files
authored
Merge pull request #901 from OCA/19.0
Syncing from upstream OCA/reporting-engine (19.0)
2 parents 0c02ce9 + 7278b34 commit e68fdea

6 files changed

Lines changed: 12 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Available addons
2121
----------------
2222
addon | version | maintainers | summary
2323
--- | --- | --- | ---
24-
[bi_sql_editor](bi_sql_editor/) | 19.0.1.0.0 | <a href='https://github.com/legalsylvain'><img src='https://github.com/legalsylvain.png' width='32' height='32' style='border-radius:50%;' alt='legalsylvain'/></a> | BI Views builder, based on Materialized or Normal SQL Views
24+
[bi_sql_editor](bi_sql_editor/) | 19.0.1.0.1 | <a href='https://github.com/legalsylvain'><img src='https://github.com/legalsylvain.png' width='32' height='32' style='border-radius:50%;' alt='legalsylvain'/></a> | BI Views builder, based on Materialized or Normal SQL Views
2525
[report_qweb_element_page_visibility](report_qweb_element_page_visibility/) | 19.0.1.0.0 | | Report Qweb Element Page Visibility
2626
[report_xlsx](report_xlsx/) | 19.0.1.0.2 | | Base module to create xlsx report
2727
[report_xlsx_helper](report_xlsx_helper/) | 19.0.1.0.0 | | Report xlsx helpers

bi_sql_editor/README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BI SQL Editor
1111
!! This file is generated by oca-gen-addon-readme !!
1212
!! changes will be overwritten. !!
1313
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14-
!! source digest: sha256:0c4fe10f6d3e9eb17c3d190497c09dabf179ce5ce821c17e017e819929127822
14+
!! source digest: sha256:9a7186167db4d48168e2f8f904d2fd9e6ef20d25fcf521a350050d270feb036e
1515
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1616
1717
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -182,6 +182,8 @@ Contributors
182182

183183
- Thien Vo thienvh@trobz.com
184184

185+
- Baptiste P. baptiste@newlogic.com
186+
185187
- This module is highly inspired by the work of
186188

187189
- Onestein: (http://www.onestein.nl/) Module:

bi_sql_editor/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"name": "BI SQL Editor",
77
"summary": "BI Views builder, based on Materialized or Normal SQL Views",
8-
"version": "19.0.1.0.0",
8+
"version": "19.0.1.0.1",
99
"license": "AGPL-3",
1010
"category": "Reporting",
1111
"author": "GRAP,Odoo Community Association (OCA)",

bi_sql_editor/models/bi_sql_view.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ class BiSQLView(models.Model):
116116

117117
@api.model
118118
def _default_parent_menu_id(self):
119-
return self.env.ref("bi_sql_editor.menu_bi_sql_editor")
119+
return self.env.ref(
120+
"bi_sql_editor.menu_bi_sql_editor", raise_if_not_found=False
121+
)
120122

121123
parent_menu_id = fields.Many2one(
122124
string="Parent Odoo Menu",

bi_sql_editor/readme/CONTRIBUTORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
- Thien Vo <thienvh@trobz.com>
1010

11+
- Baptiste P. <baptiste@newlogic.com>
12+
1113
- This module is highly inspired by the work of
1214
- Onestein: (<http://www.onestein.nl/>) Module:
1315
OCA/server-tools/bi_view_editor. Link:

bi_sql_editor/static/description/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ <h1>BI SQL Editor</h1>
372372
!! This file is generated by oca-gen-addon-readme !!
373373
!! changes will be overwritten. !!
374374
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
375-
!! source digest: sha256:0c4fe10f6d3e9eb17c3d190497c09dabf179ce5ce821c17e017e819929127822
375+
!! source digest: sha256:9a7186167db4d48168e2f8f904d2fd9e6ef20d25fcf521a350050d270feb036e
376376
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
377377
<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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/reporting-engine/tree/19.0/bi_sql_editor"><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-19-0/reporting-engine-19-0-bi_sql_editor"><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=19.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
378378
<p>This module extends the functionality of reporting, to support creation
@@ -510,6 +510,7 @@ <h2>Contributors</h2>
510510
<li>David James, WilldooIT (<a class="reference external" href="http://www.willdooit.com/">http://www.willdooit.com/</a>)</li>
511511
<li>Guillem Casassas <a class="reference external" href="mailto:guillem.casassas&#64;forgeflow.com">guillem.casassas&#64;forgeflow.com</a></li>
512512
<li>Thien Vo <a class="reference external" href="mailto:thienvh&#64;trobz.com">thienvh&#64;trobz.com</a></li>
513+
<li>Baptiste P. <a class="reference external" href="mailto:baptiste&#64;newlogic.com">baptiste&#64;newlogic.com</a></li>
513514
<li>This module is highly inspired by the work of<ul>
514515
<li>Onestein: (<a class="reference external" href="http://www.onestein.nl/">http://www.onestein.nl/</a>) Module:
515516
OCA/server-tools/bi_view_editor. Link:

0 commit comments

Comments
 (0)