Summary: | Disabling Library Location | ||
---|---|---|---|
Product: | Koha | Reporter: | Christopher Brannon <cbrannon> |
Component: | System Administration | Assignee: | Bugs List <koha-bugs> |
Status: | RESOLVED DUPLICATE | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | gmcharlt, lisettepalouse+koha |
Version: | unspecified | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Christopher Brannon
2014-04-15 22:03:03 UTC
We also have schools in our consortium that close for the summer and being able to just set them as closed with a button would be great. Lisette Just a ntoe: there is HoldsQueueSkipClosed now that might help with some of the issues mentioned. Opting for the newer bug as it has had a bit more discussion. *** This bug has been marked as a duplicate of bug 12450 *** (In reply to Katrin Fischer from comment #2) > Just a ntoe: there is HoldsQueueSkipClosed now that might help with some of > the issues mentioned. This is a tricky preference. I'm not finding sufficient information on it. If this option is set to closed, is the hold queue re-evaluated and a hold moved over to a library if it becomes open while the hold is still in a request state? For example: Library A & B have book in question. Library A is closed 3 days out of the week, but is the closer library. Book goes on hold the last of the 3 days library A is closed, and goes into library B's queue. The next day, both libraries are open, and the hold hasn't been filled yet. Does the hold request move to library A the next day, or does is stay stuck to library B? I guess you'd have to test that out - my understanding is that the holds queue is rebuilt every run of the cron... if that assumption is correct, it should move. (In reply to Katrin Fischer from comment #5) > I guess you'd have to test that out - my understanding is that the holds > queue is rebuilt every run of the cron... if that assumption is correct, it > should move. Yep, it starts fresh with every run: 174 sub CreateQueue { 175 my $dbh = C4::Context->dbh; 176 177 $dbh->do("DELETE FROM tmp_holdsqueue"); # clear the old table for new info 178 $dbh->do("DELETE FROM hold_fill_targets"); Thanks for the info. Good to know. This does make a difference. I will continue my campaign on the other bug. |