From d2a284da136cdf72cb201d0efd049507f66393e7 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 10 Jun 2013 14:05:32 +0200 Subject: [PATCH] Bug 10439: fix bug preventing the library for a notice from being changed 2 javascript functions should be apply only in a specific case, not for all views. Test plan: - Switch on the IndependentBranches pref and log in as a superlibrarian. - Try to change the library for a notice. Before the patch, no change is applied. - Try to create a new notice, changing the library from default in the process. Before the patch, the notice is not created. The bug can also be reproduced when IndependentBranches is off, in which case the staff user need not be a superlibrarian. Signed-off-by: Srdjan Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton (cherry picked from commit 77a5e3e365a50b02c9f224d731e05de90fc667c9) Signed-off-by: Tomas Cohen Arazi Test plan works as advertised. (cherry picked from commit a2e89edf43b2946da0986a5c83b04a60dea04061) Solved Conflicts: koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt Signed-off-by: Bernardo Gonzalez Kriegel (cherry picked from commit a2e89edf43b2946da0986a5c83b04a60dea04061) --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt index b574dbec08..ad45aab5ca 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt @@ -11,6 +11,7 @@ $(document).ready(function() { headers: { 4: {sorter:false},5: { sorter: false },6: { sorter: false }} }); + [% IF no_op_set %] $('#branch').change(function() { $('#op').val(""); $('#selectlibrary').submit(); @@ -19,6 +20,7 @@ $(document).ready(function() { $('#op').val("add_form"); return true; }); + [% END %] }); [% IF ( add_form ) %] -- 2.39.5