MDL-83202 reportbuilder: report list filtering by time/user modified.

This commit is contained in:
Paul Holden 2024-09-19 11:17:30 +01:00
parent 30692df849
commit f466b40ca6
No known key found for this signature in database
GPG Key ID: A81A96D6045F6164
2 changed files with 56 additions and 6 deletions

View File

@ -258,8 +258,33 @@ class reports_list extends system_report {
->set_limited_operators([
date::DATE_ANY,
date::DATE_RANGE,
date::DATE_BEFORE,
date::DATE_LAST,
date::DATE_CURRENT,
])
);
// Time modified filter.
$this->add_filter((new filter(
date::class,
'timemodified',
new lang_string('timemodified', 'core_reportbuilder'),
$this->get_report_entity_name(),
"{$tablealias}.timemodified",
))
->set_limited_operators([
date::DATE_ANY,
date::DATE_RANGE,
date::DATE_BEFORE,
date::DATE_LAST,
date::DATE_CURRENT,
])
);
// User modified filter.
$this->add_filter_from_entity('user:userselect')
->set_header(new lang_string('usermodified', 'reportbuilder'))
->set_is_available(has_capability('moodle/user:viewalldetails', $this->get_context()));
}
/**

View File

@ -178,24 +178,49 @@ Feature: Manage custom reports
| Report source | Users |
| Tags | Cat |
Scenario: Filter custom reports by date
Scenario: Filter custom reports by user
Given the following "users" exist:
| username | firstname | lastname |
| user1 | User | 1 |
And the following "core_reportbuilder > Report" exists:
| name | My report |
| source | core_user\reportbuilder\datasource\users |
And I log in as "admin"
When I navigate to "Reports > Report builder > Custom reports" in site administration
And I click on "Filters" "button"
And I set the following fields in the "Modified by" "core_reportbuilder > Filter" to these values:
| Modified by operator | Select |
| Modified by value | Admin User |
And I click on "Apply" "button" in the "[data-region='report-filters']" "css_element"
Then I should see "Filters applied"
And I should see "My report" in the "Reports list" "table"
And I set the field "Modified by value" in the "Modified by" "core_reportbuilder > Filter" to "User 1"
And I click on "Apply" "button" in the "[data-region='report-filters']" "css_element"
And I should see "Nothing to display"
And "Reports list" "table" should not exist
Scenario Outline: Filter custom reports by date
Given the following "core_reportbuilder > Report" exists:
| name | My report |
| source | core_user\reportbuilder\datasource\users |
And I log in as "admin"
When I navigate to "Reports > Report builder > Custom reports" in site administration
And I click on "Filters" "button"
And I set the following fields in the "Time created" "core_reportbuilder > Filter" to these values:
| Time created operator | Range |
| Time created from | ##2 days ago## |
| Time created to | ##tomorrow## |
And I set the following fields in the "<filter>" "core_reportbuilder > Filter" to these values:
| <filter> operator | Range |
| <filter> from | ##2 days ago## |
| <filter> to | ##tomorrow## |
And I click on "Apply" "button" in the "[data-region='report-filters']" "css_element"
Then I should see "Filters applied"
And I should see "My report" in the "Reports list" "table"
And I set the field "Time created to" in the "Time created" "core_reportbuilder > Filter" to "##yesterday##"
And I set the field "<filter> to" in the "<filter>" "core_reportbuilder > Filter" to "##yesterday##"
And I click on "Apply" "button" in the "[data-region='report-filters']" "css_element"
And I should see "Nothing to display"
And "Reports list" "table" should not exist
Examples:
| filter |
| Time created |
| Time modified |
Scenario: Reset filters in system report
Given the following "core_reportbuilder > Report" exists: