]> git.koha-community.org Git - koha.git/commit
Bug 30642: Record renewal type
authorMatt Blenkinsop <matt.blenkinsop@ptfs-europe.com>
Tue, 6 Dec 2022 16:48:45 +0000 (16:48 +0000)
committerJacob O'Mara <jacob.omara@ptfs-europe.com>
Mon, 13 Feb 2023 09:28:38 +0000 (09:28 +0000)
commit5b69dec4e9e8093545203b0603e08d4fc27f8ecf
tree99ed14238e4f8ce06275bebe22ba747c312e253e
parent20feb51ab63df03456eeb484ae49ed6f8388d534
Bug 30642: Record renewal type

A requirement has been requested to record whether a renewal was done manually or automatically. A column has been added to the checkout_renewals table in the database to record this and a check is now in place to determine whether the renewal was manual or automatic. The API has also been updated to reflect this new column and return the data when requested. The renewals modal view has also been updated to show what type the renewal was.

Test plan:
1) In the database shell run "show columns from checkout_renewals;" and observe that there is currently no column for recording the type of renewal
2) Apply patch
3) In the shell run "dbic" and "perl installer/data/mysql/updatedatabase.pl" to update the database schema with the new column.
4) Create some checkouts
5) Renew some checkouts manually and observe in the database that there is now a column called "renewal_type" that will have recorded these as "Manual"
6) Create some checkouts that can be automatically renewed
7) Run the cron script in automatic_renewals.pl and observe that there are now also entries with a renewal_type of "Automatic"
8) Send a GET request to http://localhost:8081/api/v1/checkouts/1/renewals and observe that the renewal_type is now returned in the response
9) In the Item Details tab for a record, there is the "Current renewals" option which has a button to view renewals. Click on this and observe that the modal now displays the new information.

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit 5045da59f15a7dfb3da72b5f96e249976a84692b)
Signed-off-by: Jacob O'Mara <jacob.omara@ptfs-europe.com>
C4/Circulation.pm
Koha/Schema/Result/CheckoutRenewal.pm
api/v1/swagger/definitions/renewal.yaml
installer/data/mysql/atomicupdate/bug_30642-add_renewal_type.pl [new file with mode: 0644]
installer/data/mysql/kohastructure.sql
koha-tmpl/intranet-tmpl/prog/en/includes/str/checkout_renewals.inc
koha-tmpl/intranet-tmpl/prog/js/checkout_renewals_modal.js