Bug 18931: Add items/deleteditems tables
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 24 Jul 2017 20:46:27 +0000 (17:46 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 26 Jul 2017 16:50:56 +0000 (13:50 -0300)
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

about.pl
koha-tmpl/intranet-tmpl/prog/en/modules/about.tt

index fed0092..486768d 100755 (executable)
--- a/about.pl
+++ b/about.pl
@@ -296,6 +296,10 @@ if (  C4::Context->preference('WebBasedSelfCheck')
         q|select b.biblionumber from biblio b join deletedbiblio db on b.biblionumber=db.biblionumber|,
         { Slice => {} }
     );
+    my $items = $dbh->selectall_arrayref(
+        q|select i.itemnumber from items b join deleteditems di on i.itemnumber=di.itemnumber|,
+        { Slice => {} }
+    );
     my $checkouts = $dbh->selectall_arrayref(
         q|select i.issue_id from issues i join old_issues oi on i.issue_id=oi.issue_id|,
         { Slice => {} }
@@ -309,6 +313,7 @@ if (  C4::Context->preference('WebBasedSelfCheck')
             has_ai_issues => 1,
             ai_patrons    => $patrons,
             ai_biblios    => $biblios,
+            ai_items      => $items,
             ai_checkouts  => $checkouts,
             ai_holds      => $holds,
         );
index 6d10c48..134a53f 100644 (file)
                 The following ids exist in both the biblio and deletedbiblio table:
                 [% FOR b IN ai_biblios %][% b.biblionumber %][% UNLESS loop.last %], [% END %][% END %]
             [% END %]
+            [% IF ai_items %]
+                <h3>Items</h3>
+                The following ids exist in both the items and deleteditems table:
+                [% FOR i IN ai_items %][% i.itemnumber %][% UNLESS loop.last %], [% END %][% END %]
+            [% END %]
             [% IF ai_checkouts %]
                 <h3>Checkouts</h3>
                 The following ids exist in both the issues and old_issues table: