From caf4b85ec9cf7076b08f63fb448c9862435e69d8 Mon Sep 17 00:00:00 2001 From: George Veranis Date: Fri, 8 Oct 2021 23:32:17 +0200 Subject: [PATCH] Bug 28075: (follow-up) adding all choices and values of 135a Extend patch of 135a to cover all choices with all possible values as described by IFLA for 135a. --- .../value_builder/unimarc_field_135a.tt | 411 ++++++++++++++++-- 1 file changed, 382 insertions(+), 29 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt index 236f04f2dd..3ff835edea 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt @@ -11,80 +11,433 @@ - [% IF ( f1space ) %] [% ELSE %] [% END %] [% IF ( f1a ) %] - + [% ELSE %] - + [% END %] [% IF ( f1b ) %] - + [% ELSE %] - + [% END %] [% IF ( f1c ) %] - + [% ELSE %] - + [% END %] [% IF ( f1d ) %] - + [% ELSE %] - + [% END %] [% IF ( f1e ) %] - + [% ELSE %] - + [% END %] [% IF ( f1f ) %] - + [% ELSE %] - + [% END %] [% IF ( f1g ) %] - + [% ELSE %] - + [% END %] [% IF ( f1h ) %] - + [% ELSE %] - + [% END %] [% IF ( f1i ) %] - + [% ELSE %] - + [% END %] [% IF ( f1j ) %] - + [% ELSE %] - + [% END %] [% IF ( f1u ) %] - + [% ELSE %] - + [% END %] [% IF ( f1v ) %] - + [% ELSE %] - + [% END %] [% IF ( f1z ) %] - + [% ELSE %] - + [% END %] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Cancel

@@ -96,7 +449,7 @@ var doc = opener.document; var field = doc.getElementById("[% index | html %]"); - field.value = document.f_pop.f1.value; + field.value = document.f_pop.f1.value+document.f_pop.f2.value+document.f_pop.f3.value+document.f_pop.f4.value+document.f_pop.f5.value+document.f_pop.f6.value+document.f_pop.f7.value+document.f_pop.f8.value+document.f_pop.f9.value+document.f_pop.f10.value+document.f_pop.f11.value; window.close(); return false; } -- 2.20.1