[Koha-patches] [SIGNED-OFF] [PATCH] Bug 6150 UNIMARC field 225 plugin: allow $a value data entry

Julian Maurice julian.maurice at biblibre.com
Fri Aug 5 11:08:36 CEST 2011


From: Frédéric Demians <f.demians at tamil.fr>

The current UNIMARC 225 plugin behavior forces cataloguer to select a
collection name in a combo box. The content of this combo box comes from
special EDITORS authorities list which is constructed by a script. So
there is no way to add a new collection directly in biblio data entry
form.

A input box can be added to the plugin form in order to enter by hand a
new collection.

Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>
---
 .../value_builder/unimarc_field_225a.tt            |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt
index 7f9e144..e85312c 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt
@@ -8,6 +8,8 @@
         <form name="f_pop" onsubmit="report()" action="">
             <h2 class="authority">Collection</h2>
             <p><label>Select a collection</label>[% collection %]</p>
+            OR new collection: <input type="text" value="" name="f2"/>
+            <br/>
             <input type="submit" value="OK" class="button authority" />
         </form>
     </div>
@@ -17,11 +19,11 @@
 function report() {
             var doc   = opener.document; 
             var field = doc.getElementById("[% index %]");
-            field.value =  document.f_pop.f1.value;
+            field.value = document.f_pop.f2.value || document.f_pop.f1.value;
             window.close();
             return false;
         }
     //]]>
 </script>
 
-[% INCLUDE 'popup-bottom.inc' %]
\ No newline at end of file
+[% INCLUDE 'popup-bottom.inc' %]
-- 
1.7.5.4



More information about the Koha-patches mailing list