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
-- VARIABLE: { -- name: "topic", -- type: "select", -- database_options: { -- table: "ost_help_topic", -- column: "topic_id", -- display: "topic", -- all: true -- }
builds the following query:
SELECT * FROM ost_ticket where topic_id = 'ALL' ...
so it litterally passes 'ALL' instead of omitting the condition.
Addidionally, as noted in #260 , this property cannot be turned off
The text was updated successfully, but these errors were encountered:
This is why I do in the report: {% if facility != 'ALL' %} AND facilities.id = {{facility}} {% endif %}
Sorry, something went wrong.
No branches or pull requests
-- VARIABLE: {
-- name: "topic",
-- type: "select",
-- database_options: {
-- table: "ost_help_topic",
-- column: "topic_id",
-- display: "topic",
-- all: true
-- }
builds the following query:
SELECT
*
FROM
ost_ticket
where
topic_id = 'ALL'
...
so it litterally passes 'ALL' instead of omitting the condition.
Addidionally, as noted in #260 , this property cannot be turned off
The text was updated successfully, but these errors were encountered: