diff --git a/README.md b/README.md index 1fafb5b5e..73de645ce 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,10 @@ Available addons ---------------- addon | version | maintainers | summary --- | --- | --- | --- +[bi_sql_editor](bi_sql_editor/) | 17.0.1.0.1 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | BI Views builder, based on Materialized or Normal SQL Views [report_qweb_parameter](report_qweb_parameter/) | 17.0.1.0.0 | | Add new parameters for qweb templates in order to reduce field length and check minimal length [report_xlsx](report_xlsx/) | 17.0.1.0.0 | | Base module to create xlsx report +[sql_request_abstract](sql_request_abstract/) | 17.0.1.0.1 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Abstract Model to manage SQL Requests [//]: # (end addons) diff --git a/bi_sql_editor/README.rst b/bi_sql_editor/README.rst index c976a655f..75db53ee0 100644 --- a/bi_sql_editor/README.rst +++ b/bi_sql_editor/README.rst @@ -7,7 +7,7 @@ BI SQL Editor !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:2cd8ab59abe1f67505f360059541525311a4e5f9d41ecf7e5713ea9bedb55540 + !! source digest: sha256:424f915993d81045a5243c2754398a7e6603844fc6a656a5ddad6479502ff981 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/bi_sql_editor/__manifest__.py b/bi_sql_editor/__manifest__.py index 9bf6453bc..f87a2518b 100644 --- a/bi_sql_editor/__manifest__.py +++ b/bi_sql_editor/__manifest__.py @@ -5,7 +5,7 @@ { "name": "BI SQL Editor", "summary": "BI Views builder, based on Materialized or Normal SQL Views", - "version": "17.0.1.0.0", + "version": "17.0.1.0.1", "license": "AGPL-3", "category": "Reporting", "author": "GRAP,Odoo Community Association (OCA)", diff --git a/bi_sql_editor/static/description/index.html b/bi_sql_editor/static/description/index.html index 844d6d215..b1836d79f 100644 --- a/bi_sql_editor/static/description/index.html +++ b/bi_sql_editor/static/description/index.html @@ -366,7 +366,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:2cd8ab59abe1f67505f360059541525311a4e5f9d41ecf7e5713ea9bedb55540 +!! source digest: sha256:424f915993d81045a5243c2754398a7e6603844fc6a656a5ddad6479502ff981 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/reporting-engine Translate me on Weblate Try me on Runboat

This module extends the functionality of reporting, to support creation diff --git a/setup/_metapackage/pyproject.toml b/setup/_metapackage/pyproject.toml index bdac46720..1b4b9eb20 100644 --- a/setup/_metapackage/pyproject.toml +++ b/setup/_metapackage/pyproject.toml @@ -1,9 +1,11 @@ [project] name = "odoo-addons-oca-reporting-engine" -version = "17.0.20231209.0" +version = "17.0.20240108.0" dependencies = [ + "odoo-addon-bi_sql_editor>=17.0dev,<17.1dev", "odoo-addon-report_qweb_parameter>=17.0dev,<17.1dev", "odoo-addon-report_xlsx>=17.0dev,<17.1dev", + "odoo-addon-sql_request_abstract>=17.0dev,<17.1dev", ] classifiers=[ "Programming Language :: Python", diff --git a/sql_request_abstract/README.rst b/sql_request_abstract/README.rst index 16df145e9..fdd7777c0 100644 --- a/sql_request_abstract/README.rst +++ b/sql_request_abstract/README.rst @@ -7,7 +7,7 @@ SQL Request Abstract !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:e65a56914d10ae27bb307f92fe00fa9c00a67f0842a1227a7a2a869c1847a166 + !! source digest: sha256:d9671a76ee25d212c63c7f1a747acea88c2778536f30430a3e619352852e9bc9 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/sql_request_abstract/__manifest__.py b/sql_request_abstract/__manifest__.py index 1140fb1dd..82decd51f 100644 --- a/sql_request_abstract/__manifest__.py +++ b/sql_request_abstract/__manifest__.py @@ -4,7 +4,7 @@ { "name": "SQL Request Abstract", - "version": "17.0.1.0.0", + "version": "17.0.1.0.1", "author": "GRAP,Akretion,Odoo Community Association (OCA)", "maintainers": ["legalsylvain"], "website": "https://github.com/OCA/reporting-engine", diff --git a/sql_request_abstract/static/description/index.html b/sql_request_abstract/static/description/index.html index 8af9916a1..c2a59888b 100644 --- a/sql_request_abstract/static/description/index.html +++ b/sql_request_abstract/static/description/index.html @@ -366,7 +366,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:e65a56914d10ae27bb307f92fe00fa9c00a67f0842a1227a7a2a869c1847a166 +!! source digest: sha256:d9671a76ee25d212c63c7f1a747acea88c2778536f30430a3e619352852e9bc9 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/reporting-engine Translate me on Weblate Try me on Runboat

This module provides an abstract model to manage SQL Select requests on