From 138e19ba80a3575bbba3ca66806a21f658785993 Mon Sep 17 00:00:00 2001 From: Alex Buckley Date: Wed, 10 Aug 2022 20:57:10 +0000 Subject: [PATCH] Bug 21159: Template and yaml changes Sponsored-By: Toi Ohomai Institute of Technology, New Zealand Signed-off-by: David Nind Signed-off-by: Katrin Fischer --- .../modules/admin/preferences/circulation.pref | 17 +++++++++++++++++ .../intranet-tmpl/prog/js/pages/preferences.js | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref index 5cb207d3f0..dd7494a73c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref @@ -627,6 +627,23 @@ Circulation: - "Note: PROC and CART are special values, for these locations the location and permanent_location can differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.
" - "The special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.
" - "The special term _ALL_ is used on the left side of the colon (:) to affect all items, and overrides all other rules." + - + - pref: UpdateItemLocationOnCheckout + type: textarea + syntax: text/x-yaml + class: code + - "This is a list of value pairs. The first value is followed immediately by colon space then the second value.

" + - "Examples:
" + - "PROC: FIC - causes an item in the Processing Center location to be updated into the Fiction location on check out.
" + - "FIC: GEN - causes an item in the Fiction location to be updated into the General stacks location on check out.
" + - "_BLANK_: FIC - causes an item that has no location to be updated into the Fiction location on check out.
" + - "FIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check out.
" + - "_ALL_: FIC - causes all items to be updated into the Fiction location on check out.
" + - "PROC: _PERM_ - causes an item that is in the Processing Center to be updated to it's permanent location.

" + - "General rule: if the location value on the left of the colon (:) matches the item's current location, it will be updated to match the location value on the right of the colon (:).
" + - "Note: PROC and CART are special values, for these locations the location and permanent_location can differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.
" + - "The special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.
" + - "The special term _ALL_ is used on the left side of the colon (:) to affect all items, and overrides all other rules." - - pref: UpdateNotForLoanStatusOnCheckin type: textarea diff --git a/koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js b/koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js index 535bc0ac5a..53a0db82ea 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js +++ b/koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js @@ -249,7 +249,7 @@ $( document ).ready( function () { document.location.hash = "jumped"; } - $("#pref_UpdateItemLocationOnCheckin").change(function(){ + $("#pref_UpdateItemLocationOnCheckin, #pref_UpdateItemLocationOnCheckout").change(function(){ var the_text = $(this).val(); var alert_text = ''; if (the_text.indexOf('_ALL_:') != -1) alert_text = __("Note: _ALL_ value will override all other values") + '\n'; -- 2.30.2