Bug 18277: Remove GetBiblionumberFromItemnumber - linkitem
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 15 Mar 2017 15:30:53 +0000 (12:30 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 10 Jul 2017 16:03:37 +0000 (13:03 -0300)
Test plan:
Enable EasyAnalyticalRecords and link an item to another one (Edit >
link to host item)

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
cataloguing/linkitem.pl
koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt

index 082c7b0..5f33c16 100755 (executable)
@@ -56,43 +56,42 @@ if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC') {
 
 $template->param(biblionumber => $biblionumber);
 
-if ($barcode && $biblionumber) { 
-    
-    # We get the host itemnumber
-    my $hostitemnumber = GetItemnumberFromBarcode($barcode);
-
-    if ($hostitemnumber) {
-       my $hostbiblionumber = GetBiblionumberFromItemnumber($hostitemnumber);
-
-       if ($hostbiblionumber) {
-               my $field = PrepHostMarcField($hostbiblionumber, $hostitemnumber,$marcflavour);
-               $biblio->append_fields($field);
-
-               my $modresult = ModBiblio($biblio, $biblionumber, ''); 
-               if ($modresult) { 
-                       $template->param(success => 1);
-               } else {
-                       $template->param(error => 1,
-                                        errornomodbiblio => 1); 
-               }
-       } else {
-               $template->param(error => 1,
-                                    errornohostbiblionumber => 1);
-       }
-    } else {
-           $template->param(error => 1,
-                            errornohostitemnumber => 1);
-
+if ( $barcode && $biblionumber ) {
+
+    my $item = Koha::Items->find( { barcode => $barcode } );
+
+    if ($item) {
+        my $field = PrepHostMarcField( $item->biblio->biblionumber, $item->itemnumber, $marcflavour );
+        $biblio->append_fields($field);
+
+        my $modresult = ModBiblio( $biblio, $biblionumber, '' );
+        if ($modresult) {
+            $template->param( success => 1 );
+        }
+        else {
+            $template->param(
+                error            => 1,
+                errornomodbiblio => 1
+            );
+        }
+    }
+    else {
+        $template->param(
+            error                 => 1,
+            errornohostitemnumber => 1,
+        );
     }
+
     $template->param(
-                       barcode => $barcode,  
-                       hostitemnumber => $hostitemnumber,
-                   );
-
-} else {
-    $template->param(missingparameter => 1);
-    if (!$barcode)      { $template->param(missingbarcode      => 1); }
-    if (!$biblionumber) { $template->param(missingbiblionumber => 1); }
+        barcode        => $barcode,
+        hostitemnumber => $item->itemnumber,
+    );
+
+}
+else {
+    $template->param( missingparameter => 1 );
+    if ( !$barcode )      { $template->param( missingbarcode      => 1 ); }
+    if ( !$biblionumber ) { $template->param( missingbiblionumber => 1 ); }
 }
 
 
index 4261554..0741fce 100644 (file)
@@ -11,7 +11,6 @@
 [% IF ( error ) %]
     <div class="dialog alert">
        [% IF ( errornomodbiblio ) %]ERROR: Unable to modify the bibliographic record.[% END %]
-       [% IF ( errornohostbiblionumber ) %]ERROR: Unable to get the biblio number of host item.[% END %]
        [% IF ( errornohostitemnumber ) %]ERROR: Unable to get the item number from this barcode.[% END %]
     </div>
     <form action="/cgi-bin/koha/catalogue/MARCdetail.pl" method="post">