-
-
Notifications
You must be signed in to change notification settings - Fork 866
[16.0][MIG] sql_request_abstract #669
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[16.0][MIG] sql_request_abstract #669
Conversation
Updated by Update PO files to match POT (msgmerge) hook in Weblate.
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: server-tools-12.0/server-tools-12.0-sql_request_abstract Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-sql_request_abstract/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: server-tools-12.0/server-tools-12.0-sql_request_abstract Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-sql_request_abstract/
Currently translated at 100.0% (21 of 21 strings) Translation: server-tools-12.0/server-tools-12.0-sql_request_abstract Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-sql_request_abstract/zh_CN/
Currently translated at 100.0% (21 of 21 strings) Translation: server-tools-12.0/server-tools-12.0-sql_request_abstract Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-sql_request_abstract/pt_BR/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: server-tools-12.0/server-tools-12.0-sql_request_abstract Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-sql_request_abstract/
|
/ocabot merge patch |
|
On my way to merge this fine PR! |
|
@sebastienbeau your merge command was aborted due to failed check(s), which you can inspect on this commit of 16.0-ocabot-merge-pr-669-by-sebastienbeau-bump-patch. After fixing the problem, you can re-issue a merge command. Please refrain from merging manually as it will most probably make the target branch red. |
|
@sebastienbeau your merge command was aborted due to failed check(s), which you can inspect on this commit of 16.0-ocabot-merge-pr-669-by-sebastienbeau-bump-patch. After fixing the problem, you can re-issue a merge command. Please refrain from merging manually as it will most probably make the target branch red. |
|
I don't know why merge fails ? Error seems suggest than codecov needs to be green to be successful. |
|
@bealdav follow this path: Conclusion: need to run |
|
/ocabot rebase |
|
Sorry @legalsylvain you are not allowed to rebase. To do so you must either have push permissions on the repository, or be a declared maintainer of all modified addons. If you wish to adopt an addon and become it's maintainer, open a pull request to add your GitHub login to the |
|
@legalsylvain if the issue is fixed on the main branch, a rebase should not be necessary as the merge command merges before running the tests. |
|
OK that's https://gitlab.com/PyCQA/flake8 close repository that Pedro mention on twitter. Maybe needs a copier update to apply settings to the repo ? |
|
Now fixed OCA/pylint-odoo#446 |
|
Please @HviorForgeFlow @faide @etobella could you give a new try to get PR merged. Thanks |
|
/ocabot merge nobump |
|
This PR looks fantastic, let's merge it! |
|
@etobella your merge command was aborted due to failed check(s), which you can inspect on this commit of 16.0-ocabot-merge-pr-669-by-etobella-bump-nobump. After fixing the problem, you can re-issue a merge command. Please refrain from merging manually as it will most probably make the target branch red. |
|
Prolem with the flake8-calypse. IT should be fixed now 🙏 /ocabot merge nobump |
|
What a great day to merge this nice PR. Let's do it! |
|
Congratulations, your PR was merged at 705585d. Thanks a lot for contributing to OCA. ❤️ |


Note
indroduce ace for postgresql looks great ! See
Description
This module provides an abstract model to manage SQL Select requests on database.
It is not usefull for itself. You can see an exemple of implementation in the
'sql_export' module. (same repository).
Implemented features
Add some restrictions in the sql request:
or keys. For the time being ('ir_config_parameter').
The request can be in a 'draft' or a 'SQL Valid' status. To be valid,
the request has to be cleaned, checked and tested. All of this operations
can be disabled in the inherited modules.
This module two new groups:
them, if they are valid.
DEVELOP
Inherit the model:
See implementations in the modules
bi_sql_editorandsql_export. (same OCA/reporting-engine repository)