We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I propose a change into the OCA module dbfilter_from_header.
dbfilter_from_header
The change is to replace the line: https://github.com/OCA/server-tools/blob/16.0/dbfilter_from_header/override.py:20
dbs = [db for db in dbs if re.match(db_filter_hdr, db)]
And replace it by:
dbs = [db for db in dbs_orig if re.match(db_filter_hdr, db)]
This change will allow to combine dbfilter_from_header AND the basic dbfilter. This is really useful the generate some powerful regex like:
dbfilter
dbfilter = ^prod_\w+ dbfilter_from_header = \w+_%d$
Or maybe this commit is a regression that was introduced, and do not allow anymore to use both filters at the same time: @cvinh e39ed29
The text was updated successfully, but these errors were encountered:
Hello Thanks for your suggestion. For better followup, can you review the PR with your suggestion ? #3261 Best regards
Sorry, something went wrong.
Hi @cvinh I added as comment. Please also fwd the fix to the v16.
No branches or pull requests
I propose a change into the OCA module
dbfilter_from_header
.The change is to replace the line:
https://github.com/OCA/server-tools/blob/16.0/dbfilter_from_header/override.py:20
And replace it by:
This change will allow to combine
dbfilter_from_header
AND the basicdbfilter
.This is really useful the generate some powerful regex like:
Or maybe this commit is a regression that was introduced, and do not allow anymore to use both filters at the same time: @cvinh
e39ed29
The text was updated successfully, but these errors were encountered: