Bugzilla – Attachment 70030 Details for
Bug 19669
Remove deprecated checkouts by patron category report
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19669 [QA Followup] - Remove itemstypes.plugin
Bug-19669-QA-Followup---Remove-itemstypesplugin.patch (text/plain), 3.65 KB, created by
Kyle M Hall (khall)
on 2017-12-21 14:17:28 UTC
(
hide
)
Description:
Bug 19669 [QA Followup] - Remove itemstypes.plugin
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2017-12-21 14:17:28 UTC
Size:
3.65 KB
patch
obsolete
>From 869a969f93c8fe62c845f89f723d8acfb8115d73 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 21 Dec 2017 09:17:01 -0500 >Subject: [PATCH] Bug 19669 [QA Followup] - Remove itemstypes.plugin > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > reports/itemtypes.plugin | 109 ----------------------------------------------- > 1 file changed, 109 deletions(-) > delete mode 100755 reports/itemtypes.plugin > >diff --git a/reports/itemtypes.plugin b/reports/itemtypes.plugin >deleted file mode 100755 >index ffa6fb7..0000000 >--- a/reports/itemtypes.plugin >+++ /dev/null >@@ -1,109 +0,0 @@ >-#!/usr/bin/perl >- >- >-# Copyright 2000-2002 Katipo Communications >-# >-# This file is part of Koha. >-# >-# Koha is free software; you can redistribute it and/or modify it >-# under the terms of the GNU General Public License as published by >-# the Free Software Foundation; either version 3 of the License, or >-# (at your option) any later version. >-# >-# Koha is distributed in the hope that it will be useful, but >-# WITHOUT ANY WARRANTY; without even the implied warranty of >-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >-# GNU General Public License for more details. >-# >-# You should have received a copy of the GNU General Public License >-# along with Koha; if not, see <http://www.gnu.org/licenses>. >- >-use strict; >-use C4::Auth; >-use CGI qw ( -utf8 ); >-use C4::Context; >-use C4::Search; >-use C4::Output; >-use C4::Koha; >-=head1 >- >-=cut >- >-sub set_parameters { >- my ($template) = @_; >- return $template; >-} >- >-sub calculate { >- my ($parameters) = @_; >- my @results =(); >- my $branch = @$parameters[0]; >- my $dbh = C4::Context->dbh; >- my $sth; >- if ($branch) { >- if (C4::Context->preference('item-level_itypes')) { >- $sth = $dbh->prepare(" >- SELECT itemtype, description, items.itype as itemtype, COUNT(*) AS total >- FROM itemtypes,items >- WHERE items.itype=itemtypes.itemtype >- AND items.holdingbranch=? >- GROUP BY items.itype >- ORDER BY itemtypes.description"); >- >- } >- else { >- $sth = $dbh->prepare(" >- SELECT itemtype, description, biblioitems.itemtype, COUNT(*) AS total >- FROM itemtypes, biblioitems, items >- WHERE biblioitems.itemtype=itemtypes.itemtype >- AND items.biblioitemnumber=biblioitems.biblioitemnumber >- AND items.holdingbranch=? >- GROUP BY biblioitems.itemtype >- ORDER BY itemtypes.description"); >- } >- $sth->execute($branch); >- } else { >- if (C4::Context->preference('item-level_itypes')) { >- $sth = $dbh->prepare(" >- SELECT itemtype, description,items.itype AS itemtype, COUNT(*) AS total >- FROM itemtypes,items >- WHERE items.itype=itemtypes.itemtype >- GROUP BY items.itype >- ORDER BY itemtypes.description"); >- } >- else { >- $sth = $dbh->prepare("SELECT itemtype, description, biblioitems.itemtype, COUNT(*) AS total >- FROM itemtypes, biblioitems,items >- WHERE biblioitems.itemtype=itemtypes.itemtype >- AND biblioitems.biblioitemnumber = items.biblioitemnumber >- GROUP BY biblioitems.itemtype >- ORDER BY itemtypes.description"); >- } >- $sth->execute; >- } >- my ($itemtype, $description,$biblioitems,$total); >- my $grantotal = 0; >- my $count = 0; >- while (($itemtype, $description,$biblioitems,$total) = $sth->fetchrow) { >- my %line; >- if($count % 2){ >- $line{toggle} = 1; >- } else { >- $line{toggle} = 0; >- } >- $line{itemtype} = $itemtype; >- $line{count} = $total; >- $grantotal += $total; >- push @results,\%line; >- $count ++; >- } >- my @mainloop; >- my %globalline; >- $globalline{loopitemtype} = \@results; >- $globalline{total} = $grantotal; >- $globalline{branch} = $branch; >- push @mainloop,\%globalline; >- return \@mainloop; >-} >- >-1; >-- >2.10.2
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 19669
:
69246
|
69406
|
70029
| 70030