Bugzilla – Attachment 65211 Details for
Bug 18931
Add a "data corrupted" section on the about page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED OFF] Bug 18931: Add items/deleteditems tables
SIGNED-OFF-Bug-18931-Add-itemsdeleteditems-tables.patch (text/plain), 2.28 KB, created by
Katrin Fischer
on 2017-07-24 21:27:35 UTC
(
hide
)
Description:
[SIGNED OFF] Bug 18931: Add items/deleteditems tables
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2017-07-24 21:27:35 UTC
Size:
2.28 KB
patch
obsolete
>From b328b3dde44dea79927a1ad02eddf1620348a20f Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 24 Jul 2017 17:46:27 -0300 >Subject: [PATCH] [SIGNED OFF] Bug 18931: Add items/deleteditems tables > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > about.pl | 5 +++++ > koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 5 +++++ > 2 files changed, 10 insertions(+) > >diff --git a/about.pl b/about.pl >index 39b05c8..1e7bd8f 100755 >--- 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, > ); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >index 709bd12..e8691ce 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >@@ -164,6 +164,11 @@ > 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: >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 18931
:
65010
|
65157
|
65188
|
65189
|
65209
|
65210
|
65211
|
65212
|
65255
|
65256
|
65257
|
65258
|
65259
|
65260
|
65266
|
65267
|
65299