[Bug 25103] New: Dynamically add checkout types
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 Bug ID: 25103 Summary: Dynamically add checkout types Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: new feature Priority: P5 - low Component: Circulation Assignee: koha-bugs@lists.koha-community.org Reporter: lari.taskula@hypernova.fi QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com, kyle.m.hall@gmail.com This is a follow-up to Bug 25037 that adds issues.checkout_type column for determining the type of checkout (currently only normal and on-site are supported). This Bug adds a new authorised value category, CHECKOUT_TYPE and adds the current checkout types as authorised values. Librarians can then add their own checkout types via authorised values user interface. However this does not yet add support for checking out items with dynamically created checkout types. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 Lari Taskula <lari.taskula@hypernova.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |25037 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25037 [Bug 25037] Add support for multiple checkout types -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 --- Comment #1 from Lari Taskula <lari.taskula@hypernova.fi> --- Created attachment 102667 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=102667&action=edit Bug 25103: Add authorised value for checkout types This commit adds an authorised value category "CHECKOUT_TYPE" and an authorised value "ONSITE" (on-site) and "CHECKOUT" (normal checkout). To test: 1. perl installer/data/mysql/updatedatabase.pl Sponsored-by: The National Library of Finland -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 --- Comment #2 from Lari Taskula <lari.taskula@hypernova.fi> --- Created attachment 102668 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=102668&action=edit Bug 25103: Add authorised values to sample data Sponsored-by: The National Library of Finland -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 --- Comment #3 from Lari Taskula <lari.taskula@hypernova.fi> --- Created attachment 102669 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=102669&action=edit Bug 25103: Validate checkout_type in Koha::Checkout->store This patch adds a validation for checkout_type value when storing a Koha::Checkout To test: 1. prove t/db_dependent/Koha/Checkouts.t Sponsored-by: The National Library of Finland -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 --- Comment #4 from Lari Taskula <lari.taskula@hypernova.fi> --- Created attachment 102670 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=102670&action=edit Bug 25103: Schema changes Sponsored-by: The National Library of Finland -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 Lari Taskula <lari.taskula@hypernova.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #102667|0 |1 is obsolete| | --- Comment #5 from Lari Taskula <lari.taskula@hypernova.fi> --- Created attachment 102671 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=102671&action=edit Bug 25103: Add authorised value for checkout types This commit adds an authorised value category "CHECKOUT_TYPE" and an authorised value "ONSITE" (on-site) and "CHECKOUT" (normal checkout). To test: 1. perl installer/data/mysql/updatedatabase.pl Sponsored-by: The National Library of Finland -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 Lari Taskula <lari.taskula@hypernova.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #102670|0 |1 is obsolete| | --- Comment #6 from Lari Taskula <lari.taskula@hypernova.fi> --- Created attachment 102672 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=102672&action=edit Bug 25103: Schema changes Sponsored-by: The National Library of Finland -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 Lari Taskula <lari.taskula@hypernova.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #102668|0 |1 is obsolete| | --- Comment #7 from Lari Taskula <lari.taskula@hypernova.fi> --- Created attachment 102673 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=102673&action=edit Bug 25103: Add authorised values to sample data Sponsored-by: The National Library of Finland -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 Lari Taskula <lari.taskula@hypernova.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #102669|0 |1 is obsolete| | --- Comment #8 from Lari Taskula <lari.taskula@hypernova.fi> --- Created attachment 102674 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=102674&action=edit Bug 25103: Validate checkout_type in Koha::Checkout->store This patch adds a validation for checkout_type value when storing a Koha::Checkout To test: 1. prove t/db_dependent/Koha/Checkouts.t Sponsored-by: The National Library of Finland -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25103 Lari Taskula <lari.taskula@hypernova.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |In Discussion --- Comment #9 from Lari Taskula <lari.taskula@hypernova.fi> --- Changed to in discussion. Do we need dynamic checkout types? When I was working on Bug 25037 I thought why not have it - we could have a drop down list of checkout types in the checkout screen. If a library ever needs more types than normal and on-site, instead of adding more hardcoded code, they could simply add a new checkout type as an authorised value and the type would appear in the list. I don't consider this as a very important Bug so I won't get hurt much if it never moves on. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org