| Summary: | Hardcoded value of 10 for return hour when calculating hourly loans affected by holidays | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Nick Clemens (kidclamp) <nick> |
| Component: | Circulation | Assignee: | Bugs List <koha-bugs> |
| Status: | NEW --- | QA Contact: | Testopia <testopia> |
| Severity: | normal | ||
| Priority: | P5 - low | CC: | gmcharlt, i.tortorella, josef.moravec, kyle, martin.renvoize, raymund.delahunty |
| Version: | Main | ||
| Hardware: | All | ||
| OS: | All | ||
| See Also: | https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8133 | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
Still valid. Lack of properly working hourly loans functionality in Koha is a major problem for us. To prevent items being due back on weekends, all of our 8 libraries have every weekend day set to be closed days even though the libaries are open, and loaning hundreds of 5 hourly loans daily (mainly laptops). A fix to this bug would help reduce patron confusion with loan periods. But fully working hourly loans needs other fixes including those discussed in bug 6796 and bug 9725. And I suspect others. |
From Koha/Calendar.pm: if ( $unit eq 'hours' ) { # Fixed for legacy support. Should be set as a branch parameter my $return_by_hour = 10; $dt = $self->addHours($startdate, $add_duration, $return_by_hour);