Feature #9314
closedFiltering query with statement condition not mantain sort criteria
0%
Description
I want to change _issuesassignedtome block.
I want to display as _issuesassignedtome the first 10 records of one public query.
Simply I use Redmine classes as above:
custom_developer_query = Query.find_by_name(query_sorted_by_priority_and_custom_value)
issues_to_you = Issue.visible.open.find(:all,
:conditions => custom_developer_query.statement,
:limit => 10,
:include => [ :status, :project, :tracker, :priority ])
I have 10 records ordered by priority but not for custom field...
Related issues
Updated by Etienne Massip about 13 years ago
- Category changed from Search engine to My page
Updated by pasquale [:dedalus] about 13 years ago
I think that the problem is that the :order directive can't use properly the query.sort_criteria; for example from my previous post, if I add the line :order => custom_developer_query.sort_criteria as above and where sort_criteria is "prioritydesccf_10asc" (as is returned quering custom_developer_query.sort_criteria)
custom_developer_query = Query.find_by_name(query_sorted_by_priority_and_custom_value)
issues_to_you = Issue.visible.open.find(:all,
:conditions => custom_developer_query.statement,
:limit => 10,
:order => custom_developer_query.sort_criteria,
:include => [ :status, :project, :tracker, :priority ])
Probably for better reflect this issue the title should be changed into "Cannot use query sort_criteria into :order directive"
Updated by Go MAEDA over 4 years ago
- Related to Feature #1565: Custom query on My page added
Updated by Go MAEDA over 4 years ago
- Tracker changed from Defect to Feature
- Status changed from New to Closed
- Resolution set to Fixed
In Redmine 3.4.0 or later, you can place your custom query on My page (#1565). I think your request can be met by the feature.