From 5e8dd3fa54e9a207ac26d68c79429aedf973ea18 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 16 Mar 2020 11:45:15 +0100 Subject: [PATCH] Bug 24846: Add new permission batch_extend_due_dates Signed-off-by: Bernardo Gonzalez Kriegel --- installer/data/mysql/atomicupdate/bug_24846.perl | 11 +++++++++++ installer/data/mysql/userpermissions.sql | 1 + .../intranet-tmpl/prog/en/includes/permissions.inc | 5 +++++ 3 files changed, 17 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_24846.perl diff --git a/installer/data/mysql/atomicupdate/bug_24846.perl b/installer/data/mysql/atomicupdate/bug_24846.perl new file mode 100644 index 0000000000..cdf4f7587e --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_24846.perl @@ -0,0 +1,11 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + $dbh->do(qq{ + INSERT IGNORE permissions (module_bit, code, description) + VALUES + (13, 'batch_extend_due_dates', 'Perform batch extend due dates') + }); + + SetVersion($DBversion); + print "Upgrade to $DBversion done (Bug 24846 - Add a new permission for new tool batch extend due dates)\n"; +} diff --git a/installer/data/mysql/userpermissions.sql b/installer/data/mysql/userpermissions.sql index a6bc545449..a0a4958494 100644 --- a/installer/data/mysql/userpermissions.sql +++ b/installer/data/mysql/userpermissions.sql @@ -79,6 +79,7 @@ INSERT INTO permissions (module_bit, code, description) VALUES (13, 'import_patrons', 'Import patron data'), (13, 'edit_patrons', 'Perform batch modification of patrons'), (13, 'delete_anonymize_patrons', 'Delete old borrowers and anonymize circulation history (deletes borrower reading history)'), + (13, 'batch_extend_due_dates', 'Perform batch extend due dates'), (13, 'batch_upload_patron_images', 'Upload patron images in a batch or one at a time'), (13, 'schedule_tasks', 'Schedule tasks to run'), (13, 'items_batchmod', 'Perform batch modification of items'), diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc index d431acdc3c..280054ddf5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc @@ -407,6 +407,11 @@ Delete old borrowers and anonymize circulation history (deletes borrower reading history) ([% name | html %]) + [%- CASE 'batch_extend_due_dates' -%] + + Perform batch extend due dates + + ([% name | html %]) [%- CASE 'edit_calendar' -%] Define days when the library is closed -- 2.17.1