https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22129
Bug ID: 22129
Summary: Report 1.3.3 Patrons Whose Age Violates Category Age
Limits (finds nothing /is faulty)
Change sponsored?: ---
Product: Koha
Version: 18.05
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P5 - low
Component: Reports
Assignee: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
Target Milestone: ---
The report is faulty: For MaxAge a value specified correctly in the category is
overidden and replaced by 999. Therefore no violation of MaxAge is found by
this report.
I made a quick and dirty correction:
$ diff Rep*
7c7,8
< GREATEST ( c.upperagelimit, 999 ) AS MaxAge,
---
> # GREATEST ( c.upperagelimit, 999 ) AS MaxAge,
> c.upperagelimit AS MaxAge,
19c20,23
< # age NOT BETWEEN MinAge AND MaxAge
---
> age < MinAge or ( age > MaxAge And Maxage > 0 )
--
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/