From b25c4196b8174b375d8c13ccb8dee145c5d784b6 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Wed, 6 Mar 2019 08:43:18 +0100 Subject: [PATCH] Bug 21049: Fix value of material select for Rancor 007 widget The material type is selected in accordance with position 0 of 007 Test plan: 1. Create a new record using the advanced editor 2. Select a material type for field 007 and set at least the position 0 of this field 3. Save the record and reload the page 4. The material type should remain selected 5. Try with all available material types Signed-off-by: Liz Rea Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens (cherry picked from commit e85294a738da7cce2a4897998ffa795f977b4cd7) Signed-off-by: Martin Renvoize (cherry picked from commit d5aa7655a643a5a4868a47b8aae5371438993580) Signed-off-by: Lucas Gass --- .../prog/en/includes/cateditor-widgets-marc21.inc | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-widgets-marc21.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-widgets-marc21.inc index d01c885..fa7de56 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-widgets-marc21.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-widgets-marc21.inc @@ -163,6 +163,26 @@ require( [ 'koha-backend', 'widget', 'text-marc' ], function( KohaBackend, Widge return $result[0]; }, + materialTypeMapping: { + a: 'MPS', + c: 'ER', + d: 'GL', + f: 'TM', + g: 'PG', + h: 'MF', + k: 'NG', + m: 'MP', + o: 'KT', + q: 'NM', + r: 'RI', + s: 'SR', + t: 'TC', + v: 'VR', + z: 'UN' + }, + getMaterial: function () { + return this.materialTypeMapping[this.text.substring(0, 1)]; + }, postCreate: function( node, mark ) { this.createFromXML( 'marc21/xml/007' ); } -- 1.7.2.5