@@ -, +, @@ - View the detail page for any bibliographic record. All toolbar buttons ("New," "Edit," "Save," etc.) should work as expected. - View the detail page for any patron. Click the "Add message" button in the toolbar. Selecting a predefined note should correctly populate the textarea with your selected message. --- koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc | 3 --- koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc | 9 ++++++--- 2 files changed, 6 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc @@ -127,8 +127,6 @@
-
- [% IF ( CAN_user_editcatalogue_edit_catalogue || CAN_user_editcatalogue_edit_items || CAN_user_serials_create_subscription ) %]
@@ -263,7 +261,6 @@ CAN_user_serials_create_subscription ) %] [% END %] [% END %] -
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc @@ -69,7 +69,10 @@ $(document).ready(function(){ $("#searchtohold").click(function(){ searchToHold(); return false; - }) + }); + $("#select_patron_messages").on("change",function(){ + $("#borrower_message").val( $(this).val() ); + }); }); function confirm_deletion() { var is_confirmed = window.confirm(_("Are you sure you want to delete this patron? This cannot be undone.")); @@ -234,8 +237,8 @@ function searchToHold(){ [% bor_notes = AuthorisedValues.Get( 'BOR_NOTES' ) %] [% IF bor_notes %]
  • - - [% FOREACH bor_note IN bor_notes %] --