From bda3ed33df5b95a2b7913a280ed6c65d66257d33 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 18 Mar 2021 13:52:37 +0000 Subject: [PATCH] Bug 27985: Add option to send a record to batch modification from details page This patch adds an option to modify a single record using a marc modification template to the 'Edit' menu on the details page To test: 1 - Apply patch 2 - Browse to details page on the staff client 3 - Be a user with permission to edit records and use batch record modification 4 - Verify the option 'Modify record using template' appears in list 5 - Click it 6 - You should be sent to batch record modification screen 7 - If you have no templates there will be a link prompting you to create on, do that 8 - If oyu already had one, or created on above you shoudl now be able to select a template 9 - Apply the template 10 - Browse to the record again 11 - Confirm changes were applied correctly Signed-off-by: Kelly McElligott --- koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc index a467c7a27f..1007e8f66a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc @@ -36,6 +36,10 @@ CAN_user_serials_create_subscription ) %]
  • Edit record
  • [% END %] + [% IF CAN_user_tools_records_batchmod %] +
  • Modify record using template
  • + [% END %] + [% IF CAN_user_editcatalogue_edit_items or ( frameworkcode == 'FA' and CAN_user_editcatalogue_fast_cataloging ) %]
  • Edit items
  • [% END %] -- 2.11.0