Description
Martin Renvoize (ashimema)
2025-01-19 07:41:18 UTC
Initial proposed specification: https://docs.google.com/document/d/1YbEuWbt2ELNbFv36T0qlMscofhMI2wwyhjhhLYAM2X8/edit?usp=sharing Created attachment 178582 [details] [review] Bug 38924: Add patron_quotas table Add the new patron_quotas table for storing circulation quotas Created attachment 178583 [details] [review] Bug 38924: DBIC Schema DBIC update Created attachment 178584 [details] [review] Bug 38924: Add Koha::Patron::Quota(s) classes Add initial Koha::Patron::Quota(s) classes for working with circulation quotas, including an overloaded store method to prevent overlapping quota periods. Additionally added a definition for the custom exception for if you are trying to store a quota whos active period overlaps with another for this patron Created attachment 178585 [details] [review] Bug 38924: Add quotas permissions This patch adds the new quotas permissions to the system Created attachment 178586 [details] [review] Bug 38924: Add API endpoints for managing quotas This commit adds the api endpoints for administering circulation quotas Created attachment 178587 [details] [review] Bug 38924: Add patron quota management page Add a new patron quota management tab under the members area for patrons of the organization category type. FIXME: Tie into permissions for 'add', 'edit' Depending on permissions, we will need display only options including guarantor and guarantee usage against quotas and also the options to add and edit quota. Created attachment 178588 [details] [review] Bug 38924: Add patron_quota_usage table Add the new patron_quota_usage table for recording usage of quota allocations against user issues. Created attachment 178589 [details] [review] Bug 38924: DBIC Schema Created attachment 178590 [details] [review] Bug 38924: Add Koha::Patron::Quota::Usage(s) classes Add ::Usage(s) classes for working with quota allocation usage. We overload store to ensure data consistency for the checkout_id field which is linked to either the issue or old_issue table appropriatly. We include a checkout relationship that handles the lack of foreign key due to issues/old_issues. We also add the Usage relations to Quota objects Created attachment 178591 [details] [review] Bug 38924: Overload delete method in Koha::Old::Checkout This overloads the delete method for old::checkouts to ensure that the issue_id for quotas usage is nulled in the event that an old_checkout is deleted. Would like to make this the standard for all the tables we have had to handle issue/old_issues for but is currently just hard-coded for quotas as many of the other tables with issue_id columns are not nullable. Created attachment 178592 [details] [review] Bug 38924: Add AllowQuotaOverride and UseGuarantorQuota preferences Add a system preferences to allow/dissallow quota overflow at checkout and enable/disable the use of guarantor quotas against guarantees Created attachment 178593 [details] [review] Bug 38924: Add get_patron_quotas method This commit adds the ability to return the guarantor's quota when searching for a patron's quota at checkout. This will only occur if the related syspref is enabled "UseGuaratorQuota" and will return in this order or priority: guarantor's quota with availability patrons's quota with availability guarantor's quota with no availability patron's quota with no availibility null Created attachment 178594 [details] [review] Bug 38924: Hook quota check and allocation into checkout Created attachment 178595 [details] [review] Bug 38924: Hook quota check and allocation into renewals This adds the checks for quotas and allocates a usage for a renewal of a book, should a quota exist for this patron Created attachment 178596 [details] [review] Bug 38924: Add quota picker to checkout confirmation This patch adds the quota selector to the checkout confirmation for if multiple eligable quotas are available Bug 38924: Return all eligable quotas so that the staff user can pick This patch adds the logic to return multiple eligable quotas if there are more than 1, allowing the staff user to pick which to assign an item to. Bug 38924: Add searcher method for currently active quota for patron Bug 38924: amend circ logic to handle multiple eligable quotas This amends the circulations logic to handle the fact that we can return multiple eligable quotas now. This ensures that the same quotas as was used for the checkout will be used for the renewal (both check and assignment) and that we use the selected quota from our confirmation dropdown for checkout of new item Bug 38924: add better name display for quota select at checkout Created attachment 178597 [details] [review] Bug 38924: Add koha_object_class to Schema files Created attachment 178598 [details] [review] Bug 38924: Move from get_patron_quota to Koha::Patron relations Bug 38924: Deal with multiple quota options in QUOTA_EXCEEDED handling Bug 38924: Deal with using the same quota for renewals Created attachment 178599 [details] [review] Bug 38924: Add quotas available on circuation screen Created attachment 178600 [details] [review] Bug 38924: Add relations after the hash in DBIC This adds additional relations to our DBIC classes to allow relation traversal in our Koha::Objects Created attachment 178601 [details] [review] Bug 38924: Add type and timestamp to usage table This allows us to more easily audit what actions incremented the usage and when. We will use this later in display Created attachment 178602 [details] [review] Bug 38924: DBIC Dump Created attachment 178603 [details] [review] Bug 38924: Add quota accessor to Koha::Checkout and use on checkouts page Created attachment 178604 [details] [review] Bug 38924: Display quota used at checkout Use the quota relation added to Koha::Checkout to display an info alert message that quota allocation has been used by the checkout that just took place Created attachment 178605 [details] [review] Bug 38924: Add issue and old_issue relations to Schema Created attachment 178606 [details] [review] Bug 38924: Add quota usage api endpoint Created attachment 178607 [details] [review] Bug 38924: Add quota usage details modal Created attachment 178608 [details] [review] Bug 38924: Add option to enable/disable quotas This was a team effort between Jacob and I |