Bug 21150: add the biblionumber to the output
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 7 Aug 2018 14:14:54 +0000 (11:14 -0300)
committerNick Clemens <nick@bywatersolutions.com>
Wed, 22 Aug 2018 12:48:22 +0000 (12:48 +0000)
Signed-off-by: Owen Leonard <oleonard@myacpl.org>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

misc/maintenance/search_for_data_inconsistencies.pl

index 797f554..525d8c7 100755 (executable)
@@ -83,8 +83,8 @@ use Koha::Authorities;
             new_section("Items have invalid itype defined");
             while ( my $item = $items_with_invalid_itype->next ) {
                 new_item(
-                    sprintf "Item with itemnumber=%s does not have a valid itype value (%s)",
-                    $item->itemnumber, $item->itype
+                    sprintf "Item with itemnumber=%s, biblionumber=%s does not have a valid itype value (%s)",
+                    $item->itemnumber, $item->biblionumber, $item->itype
                 );
             }
             new_hint("The items must have a itype value that is defined in the item types of Koha (Home › Administration › Item types administration)");