[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #199 from Lucas Gass (lukeg) --- follow-up pushed to main -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #198 from Lucas Gass (lukeg) --- Created attachment 192954 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192954&action=edit Bug 28530: (follow-up) Place system pref in corret order -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #197 from Lucas Gass (lukeg) --- Nice work everyone! Pushed to main for 26.05 -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Status|Passed QA |Pushed to main Version(s)||26.05.00 released in|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #196 from Lucas Gass (lukeg) --- Created attachment 192918 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192918&action=edit Bug 28530: (RM follow-up) Move kohastructure update to right place alphabetically -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Keywords|release-notes-needed| Text to go in the||This enhancement adds the release notes||ability to define and ||enforce a maximum number of ||items per item type to be ||held at each library when ||items are allowed to float. ||This feature is enabled ||with the ||UseLibraryFloatLimits ||system preference. Float ||limits are defined within ||Administration. Items ||checked in at a library ||that has met its float ||limit for that item type ||will be transferred to the ||branch with the lowest ||ratio of held items to ||allowed items. -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Keywords||release-notes-needed -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #195 from Martin Renvoize (ashimema) --- Created attachment 192495 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192495&action=edit Bug 28530: (QA follow-up) Fix branch transfer limits not checking alternate libraries Fixed a pre-existing bug where branch transfer limits would prevent ANY transfer if the optimal library was blocked, instead of trying the next best candidate. Original behavior: - Sort candidates by best ratio - Check if transfer to best candidate is allowed - If not allowed: exit loop immediately (bug!) and return undef - Result: No transfer created even if other valid candidates exist Fixed behavior: - Sort candidates by best ratio - Check if transfer to best candidate is allowed - If allowed: use that library and exit loop - If not allowed: continue to next candidate - Result: Uses the best ALLOWED candidate This fix ensures that when branch transfer limits block the optimal destination, the system will try the next-best option instead of giving up entirely. Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #194 from Martin Renvoize (ashimema) --- Created attachment 192494 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192494&action=edit Bug 28530: (QA follow-up) Fix N+1 query performance issue Refactored lowest_ratio_library() to eliminate the N+1 query problem by using aggregated queries with GROUP BY instead of per-branch queries. Performance improvement: - Before: O(3n) queries where n = number of branches with float limits Example: 20 branches = 60 database queries - After: O(3) queries regardless of number of branches Example: 20 branches = 3 database queries The optimization uses three aggregated queries: 1. Single query with GROUP BY to get item counts at all branches 2. Single query with GROUP BY to get in-transit-to counts for all branches 3. Single query with GROUP BY to get in-transit-from counts for all branches Results are combined in memory to calculate ratios, maintaining identical logic and behavior while dramatically improving database efficiency. Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #193 from Martin Renvoize (ashimema) --- Created attachment 192493 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192493&action=edit Bug 28530: (QA follow-up) Add POD documentation and database index - Add comprehensive POD documentation for lowest_ratio_library() method including parameter descriptions, return values, and algorithm explanation - Add database index on itemtype column in library_float_limits table to improve query performance when searching by itemtype Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #192 from Martin Renvoize (ashimema) --- Created attachment 192492 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192492&action=edit Bug 28530: (QA follow-up) Use DBIC in controller Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #191 from Martin Renvoize (ashimema) --- Created attachment 192491 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192491&action=edit Bug 28530: (QA follow-up) Guard against divide by zero Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #190 from Martin Renvoize (ashimema) --- Created attachment 192490 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192490&action=edit Bug 28530: (QA follow-up) Remove unused LibraryFloatLimitTransferRequest message handling The LibraryFloatLimitTransferRequest message was never set in C4::Circulation, making this code unreachable. Float limit transfers are already properly handled through the existing transfer message system (WasTransfered/NeedsTransfer) with TransferTrigger set to 'LibraryFloatLimit'. Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #189 from Martin Renvoize (ashimema) --- Created attachment 192489 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192489&action=edit Bug 28530: Add missing use statement for Koha::Library::FloatLimits Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #188 from Martin Renvoize (ashimema) --- Created attachment 192488 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192488&action=edit Bug 28530: Fix spelling mistakes Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #187 from Martin Renvoize (ashimema) --- Created attachment 192487 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192487&action=edit Bug 28530: Fix forbidden http pattern Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #186 from Martin Renvoize (ashimema) --- Created attachment 192486 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192486&action=edit Bug 28530: Fix tests Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #185 from Martin Renvoize (ashimema) --- Created attachment 192485 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192485&action=edit Bug 28530: Adjust tests Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #184 from Martin Renvoize (ashimema) --- Created attachment 192484 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192484&action=edit Bug 28530: Increment and decrement item count before calculation Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #183 from Martin Renvoize (ashimema) --- Created attachment 192483 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192483&action=edit Bug 28530: Add more tests Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #182 from Martin Renvoize (ashimema) --- Created attachment 192482 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192482&action=edit Bug 28530: If return policy is set to float in library group, remove non group branches Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #181 from Martin Renvoize (ashimema) --- Created attachment 192481 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192481&action=edit Bug 28530: DBIC changes DO NOT PUSH Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #180 from Martin Renvoize (ashimema) --- Created attachment 192480 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192480&action=edit Bug 28530: Implement float limits Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #179 from Martin Renvoize (ashimema) --- Created attachment 192479 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192479&action=edit Bug 28530: Add unit tests Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #178 from Martin Renvoize (ashimema) --- Created attachment 192478 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192478&action=edit Bug 28530: Add float limits editor Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #177 from Martin Renvoize (ashimema) --- Created attachment 192477 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192477&action=edit Bug 28530: Add Koha Object(s) for Float Limits Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #176 from Martin Renvoize (ashimema) --- Created attachment 192476 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192476&action=edit Bug 28530: Update database, add new schema file Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker Signed-off-by: Kris Becker Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190607|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190606|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190605|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190604|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190603|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190602|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190601|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190600|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190599|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190598|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190597|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190596|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190595|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Attachment #190594|0 |1 is obsolete|| -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Martin Renvoize (ashimema) changed: What|Removed |Added Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190547|0 |1 is obsolete|| --- Comment #175 from Andrew Fuerste-Henry --- Created attachment 190607 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190607&action=edit Bug 28530: Add missing use statement for Koha::Library::FloatLimits Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190513|0 |1 is obsolete|| --- Comment #174 from Andrew Fuerste-Henry --- Created attachment 190606 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190606&action=edit Bug 28530: Fix spelling mistakes Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190512|0 |1 is obsolete|| --- Comment #173 from Andrew Fuerste-Henry --- Created attachment 190605 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190605&action=edit Bug 28530: Fix forbidden http pattern Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190511|0 |1 is obsolete|| --- Comment #172 from Andrew Fuerste-Henry --- Created attachment 190604 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190604&action=edit Bug 28530: Fix tests Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190510|0 |1 is obsolete|| --- Comment #171 from Andrew Fuerste-Henry --- Created attachment 190603 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190603&action=edit Bug 28530: Adjust tests Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190509|0 |1 is obsolete|| --- Comment #170 from Andrew Fuerste-Henry --- Created attachment 190602 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190602&action=edit Bug 28530: Increment and decrement item count before calculation Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190508|0 |1 is obsolete|| --- Comment #169 from Andrew Fuerste-Henry --- Created attachment 190601 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190601&action=edit Bug 28530: Add more tests Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190507|0 |1 is obsolete|| --- Comment #168 from Andrew Fuerste-Henry --- Created attachment 190600 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190600&action=edit Bug 28530: If return policy is set to float in library group, remove non group branches Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190506|0 |1 is obsolete|| --- Comment #167 from Andrew Fuerste-Henry --- Created attachment 190599 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190599&action=edit Bug 28530: DBIC changes DO NOT PUSH Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190505|0 |1 is obsolete|| --- Comment #166 from Andrew Fuerste-Henry --- Created attachment 190598 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190598&action=edit Bug 28530: Implement float limits Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190504|0 |1 is obsolete|| --- Comment #165 from Andrew Fuerste-Henry --- Created attachment 190597 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190597&action=edit Bug 28530: Add unit tests Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190503|0 |1 is obsolete|| --- Comment #164 from Andrew Fuerste-Henry --- Created attachment 190596 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190596&action=edit Bug 28530: Add float limits editor Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190502|0 |1 is obsolete|| --- Comment #163 from Andrew Fuerste-Henry --- Created attachment 190595 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190595&action=edit Bug 28530: Add Koha Object(s) for Float Limits Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Attachment #190501|0 |1 is obsolete|| --- Comment #162 from Andrew Fuerste-Henry --- Created attachment 190594 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190594&action=edit Bug 28530: Update database, add new schema file Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #161 from Lucas Gass (lukeg) --- Created attachment 190547 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190547&action=edit Bug 28530: Add missing use statement for Koha::Library::FloatLimits -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Status|Needs Signoff |Failed QA --- Comment #160 from Andrew Fuerste-Henry --- "Can't locate object method "find" via package "Koha::Library::FloatLimits" (perhaps you forgot to load "Koha::Library::FloatLimits"?) at /kohadevbox/koha/C4/Circulation.pm line 2337" I get this error when performing a checkin if my system contains items of an itemtype for which there are some float limits defined at a branch that does not have float limits for that item type. Phrased differently, test plan all worked while my float limits were set for CPL, FFL, FPL, FRL, and IPT and my only REF items were at those 5 branches. However, when I created a new item at LPL I started getting this error on every checkin. -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #159 from Lucas Gass (lukeg) --- Created attachment 190513 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190513&action=edit Bug 28530: Fix spelling mistakes -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #158 from Lucas Gass (lukeg) --- Created attachment 190512 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190512&action=edit Bug 28530: Fix forbidden http pattern -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #157 from Lucas Gass (lukeg) --- Created attachment 190511 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190511&action=edit Bug 28530: Fix tests -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #187601|0 |1 is obsolete|| --- Comment #156 from Lucas Gass (lukeg) --- Created attachment 190510 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190510&action=edit Bug 28530: Adjust tests -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #187525|0 |1 is obsolete|| --- Comment #155 from Lucas Gass (lukeg) --- Created attachment 190509 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190509&action=edit Bug 28530: Increment and decrement item count before calculation -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185843|0 |1 is obsolete|| --- Comment #154 from Lucas Gass (lukeg) --- Created attachment 190508 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190508&action=edit Bug 28530: Add more tests -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185842|0 |1 is obsolete|| --- Comment #153 from Lucas Gass (lukeg) --- Created attachment 190507 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190507&action=edit Bug 28530: If return policy is set to float in library group, remove non group branches -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185841|0 |1 is obsolete|| --- Comment #152 from Lucas Gass (lukeg) --- Created attachment 190506 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190506&action=edit Bug 28530: DBIC changes DO NOT PUSH -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185840|0 |1 is obsolete|| --- Comment #151 from Lucas Gass (lukeg) --- Created attachment 190505 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190505&action=edit Bug 28530: Implement float limits -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185839|0 |1 is obsolete|| --- Comment #150 from Lucas Gass (lukeg) --- Created attachment 190504 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190504&action=edit Bug 28530: Add unit tests Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185838|0 |1 is obsolete|| --- Comment #149 from Lucas Gass (lukeg) --- Created attachment 190503 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190503&action=edit Bug 28530: Add float limits editor Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185837|0 |1 is obsolete|| --- Comment #148 from Lucas Gass (lukeg) --- Created attachment 190502 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190502&action=edit Bug 28530: Add Koha Object(s) for Float Limits Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185836|0 |1 is obsolete|| --- Comment #147 from Lucas Gass (lukeg) --- Created attachment 190501 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=190501&action=edit Bug 28530: Update database, add new schema file Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Status|Needs Signoff |Patch doesn't apply --- Comment #146 from Andrew Fuerste-Henry --- Please rebase for testing. Thank you! -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #145 from Lucas Gass (lukeg) --- Created attachment 187601 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187601&action=edit Bug 28530: Adjust tests -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Status|Failed QA |Needs Signoff --- Comment #144 from Lucas Gass (lukeg) --- I still need to adjust unit tests and make a few small QA fixes but I want to set this back to "Needs signoff" to get some people testing the float limits. -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #143 from Lucas Gass (lukeg) --- Created attachment 187525 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187525&action=edit Bug 28530: Increment and decrement item count before calculation -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #185038|0 |1 is obsolete|| --- Comment #142 from Lucas Gass (lukeg) --- Created attachment 185843 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185843&action=edit Bug 28530: Add more tests -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184967|0 |1 is obsolete|| --- Comment #141 from Lucas Gass (lukeg) --- Created attachment 185842 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185842&action=edit Bug 28530: If return policy is set to float in library group, remove non group branches -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184961|0 |1 is obsolete|| --- Comment #140 from Lucas Gass (lukeg) --- Created attachment 185841 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185841&action=edit Bug 28530: DBIC changes DO NOT PUSH -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184960|0 |1 is obsolete|| --- Comment #139 from Lucas Gass (lukeg) --- Created attachment 185840 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185840&action=edit Bug 28530: Implement float limits -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184959|0 |1 is obsolete|| --- Comment #138 from Lucas Gass (lukeg) --- Created attachment 185839 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185839&action=edit Bug 28530: Add unit tests Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184958|0 |1 is obsolete|| --- Comment #137 from Lucas Gass (lukeg) --- Created attachment 185838 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185838&action=edit Bug 28530: Add float limits editor Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184957|0 |1 is obsolete|| --- Comment #136 from Lucas Gass (lukeg) --- Created attachment 185837 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185837&action=edit Bug 28530: Add Koha Object(s) for Float Limits Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184956|0 |1 is obsolete|| --- Comment #135 from Lucas Gass (lukeg) --- Created attachment 185836 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185836&action=edit Bug 28530: Update database, add new schema file Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Andrew Fuerste-Henry changed: What|Removed |Added Status|Needs Signoff |Failed QA --- Comment #134 from Andrew Fuerste-Henry --- Still running into an issue here when all branches are *at* their float limit and an item moves from Branch A to Branch B. So, at step 12 of the test plan in comment 116, we've got 2 REF items at each branch and take one of the FFL items and check it in ay CPL. With these patches, Koha sees that moving this item would put CPL over its limit of 2, but declines to transfer the item because at that point in the transaction the item's holdingbranch hasn't yet changed and so Koha views all branches as being tied on their limit/item ratio. We should update the item's holdingbranch to the branch at which the checkin is happening *before* we check the float limits to see if it's acceptable for that item to stay at its new branch. -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #133 from Lucas Gass (lukeg) --- Created attachment 185038 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185038&action=edit Bug 28530: Add more tests -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184966|0 |1 is obsolete|| --- Comment #132 from Lucas Gass (lukeg) --- Created attachment 184967 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184967&action=edit Bug 28530: If return policy is set to float in library group, remove non group branches -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184965|0 |1 is obsolete|| --- Comment #131 from Lucas Gass (lukeg) --- Created attachment 184966 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184966&action=edit Bug 28530: If return policy is set to float in library group, remove non group branches -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184963|0 |1 is obsolete|| --- Comment #130 from Lucas Gass (lukeg) --- Created attachment 184965 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184965&action=edit Bug 28530: If return policy is set to float in library group, remove non group branches -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #129 from Lucas Gass (lukeg) --- Created attachment 184963 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184963&action=edit Bug 28530: If return policy is set to float in library group, remove non group branches -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #128 from Lucas Gass (lukeg) --- Created attachment 184961 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184961&action=edit Bug 28530: DBIC changes DO NOT PUSH -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184955|0 |1 is obsolete|| --- Comment #127 from Lucas Gass (lukeg) --- Created attachment 184960 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184960&action=edit Bug 28530: Implement float limits -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184954|0 |1 is obsolete|| --- Comment #126 from Lucas Gass (lukeg) --- Created attachment 184959 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184959&action=edit Bug 28530: Add unit tests Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184953|0 |1 is obsolete|| --- Comment #125 from Lucas Gass (lukeg) --- Created attachment 184958 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184958&action=edit Bug 28530: Add float limits editor Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184952|0 |1 is obsolete|| --- Comment #124 from Lucas Gass (lukeg) --- Created attachment 184957 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184957&action=edit Bug 28530: Add Koha Object(s) for Float Limits Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 Lucas Gass (lukeg) changed: What|Removed |Added Attachment #184951|0 |1 is obsolete|| --- Comment #123 from Lucas Gass (lukeg) --- Created attachment 184956 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184956&action=edit Bug 28530: Update database, add new schema file Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
[Koha-bugs] [Bug 28530] Allow configuration of floating limits by item type
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28530 --- Comment #122 from Lucas Gass (lukeg) --- Created attachment 184955 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=184955&action=edit Bug 28530: Implement float limits Test Plan: 1) Apply this patch set 2) Run updatedatabase.pl 3) Restart all the things! 4) Enable UseLibraryFloatLimits 5) Verify items float correctly as per your circulation rules 6) Set some float limits from the Library Float Limits configuration page in the Administration section The simplest solution is to set the float limit from one branch to 1 item, a second to 100 items, and a third to 300 items for a single itemtype 7) Verify checked in items that should have floated at this branch are now transfered to the branch with the best float ratio Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Kris Becker -- You are receiving this mail because: You are watching all bug changes. ___ Koha-bugs mailing list [email protected] https://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/
