Bugzilla – Attachment 73178 Details for
Bug 16117
Log invalid patron cardnumbers and item barcodes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16117: Give methods better names
Bug-16117-Give-methods-better-names.patch (text/plain), 5.56 KB, created by
Kyle M Hall (khall)
on 2018-03-23 13:39:18 UTC
(
hide
)
Description:
Bug 16117: Give methods better names
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2018-03-23 13:39:18 UTC
Size:
5.56 KB
patch
obsolete
>From f7434bfdf6af5e443343462a9fd419f409596766 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatetsolutions.com> >Date: Fri, 23 Mar 2018 09:38:15 -0400 >Subject: [PATCH] Bug 16117: Give methods better names > >--- > C4/Circulation.pm | 4 ++-- > Koha/Statistics.pm | 18 +++++++++--------- > circ/circulation.pl | 2 +- > t/db_dependent/Stats.t | 12 ++++++------ > 4 files changed, 18 insertions(+), 18 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 3e1d5a5bd2..9d730f83b9 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -677,7 +677,7 @@ sub CanBookBeIssued { > > # MANDATORY CHECKS - unless item exists, nothing else matters > unless ( $item->{barcode} ) { >- Koha::Statistics->invalid_item( { item => $barcode } ); >+ Koha::Statistics->log_invalid_item( { item => $barcode } ); > $issuingimpossible{UNKNOWN_BARCODE} = 1; > } > return ( \%issuingimpossible, \%needsconfirmation ) if %issuingimpossible; >@@ -1803,7 +1803,7 @@ sub AddReturn { > # get information on item > my $item = GetItem( undef, $barcode ); > unless ($item) { >- Koha::Statistics->invalid_item( { item => $barcode } ); >+ Koha::Statistics->log_invalid_item( { item => $barcode } ); > return ( 0, { BadBarcode => $barcode } ); # no barcode means no item or borrower. bail out. > } > >diff --git a/Koha/Statistics.pm b/Koha/Statistics.pm >index b2abfce964..6783b4a907 100644 >--- a/Koha/Statistics.pm >+++ b/Koha/Statistics.pm >@@ -35,13 +35,13 @@ Koha::Statistics - Koha Statistic Object set class > > =head2 Class Methods > >-=head3 invalid_patron >+=head3 log_invalid_patron > >-Koha::Statistics->invalid_patron( { patron => $cardnumber } ); >+Koha::Statistics->log_invalid_patron( { patron => $cardnumber } ); > > =cut > >-sub invalid_patron { >+sub log_invalid_patron { > return unless C4::Context->preference('LogInvalidPatrons'); > > my ( $class, $params ) = @_; >@@ -49,7 +49,7 @@ sub invalid_patron { > my $patron = $params->{patron}; > croak('Invalid patron passed in!') unless $patron; > >- return $class->_invalid_value( >+ return $class->_log_invalid_value( > { > type => 'patron', > value => $patron >@@ -57,13 +57,13 @@ sub invalid_patron { > ); > } > >-=head3 invalid_item >+=head3 log_invalid_item > >-Koha::Statistics->invalid_item( { item => $barcode } ); >+Koha::Statistics->log_invalid_item( { item => $barcode } ); > > =cut > >-sub invalid_item { >+sub log_invalid_item { > return unless C4::Context->preference('LogInvalidItems'); > > my ( $class, $params ) = @_; >@@ -71,7 +71,7 @@ sub invalid_item { > my $item = $params->{item}; > croak('Invalid item passed in!') unless $item; > >- return $class->_invalid_value( >+ return $class->_log_invalid_value( > { > type => 'item', > value => $item >@@ -85,7 +85,7 @@ Koha::Statistics->invalid_value( { type => 'patron', value => $patron } ); > > =cut > >-sub _invalid_value { >+sub _log_invalid_value { > my ( $class, $params ) = @_; > > my $type = $params->{type}; >diff --git a/circ/circulation.pl b/circ/circulation.pl >index 63384ffbfa..9ac1543b26 100755 >--- a/circ/circulation.pl >+++ b/circ/circulation.pl >@@ -266,7 +266,7 @@ if ($findborrower) { > } elsif ( @$borrowers ) { > $template->param( borrowers => $borrowers ); > } else { >- Koha::Statistics->invalid_patron( { patron => $findborrower } ); >+ Koha::Statistics->log_invalid_patron( { patron => $findborrower } ); > $query->param( 'findborrower', '' ); > $message = "'$findborrower'"; > } >diff --git a/t/db_dependent/Stats.t b/t/db_dependent/Stats.t >index cc8e34a2a3..0be951ae0a 100644 >--- a/t/db_dependent/Stats.t >+++ b/t/db_dependent/Stats.t >@@ -191,28 +191,28 @@ $context->mock( > }; > } > ); >-# Test Koha::Statistic->invalid_patron >+# Test Koha::Statistic->log_invalid_patron > $dbh->do(q{DELETE FROM statistics}); > t::lib::Mocks::mock_preference( "LogInvalidPatrons", 0 ); >-Koha::Statistics->invalid_patron( { patron => 'InvalidCardnumber' } ); >+Koha::Statistics->log_invalid_patron( { patron => 'InvalidCardnumber' } ); > is( Koha::Statistics->search()->count(), 0, 'No stat line added if system preference LogInvalidPatrons is disabled' ); > > t::lib::Mocks::mock_preference( "LogInvalidPatrons", 1 ); >-Koha::Statistics->invalid_patron( { patron => 'InvalidCardnumber' } ); >+Koha::Statistics->log_invalid_patron( { patron => 'InvalidCardnumber' } ); > my $stat = Koha::Statistics->search()->next(); > is( $stat->type, 'invalid_patron', 'Type set to invalid_patron' ); > is( $stat->associatedborrower, '-1', 'Associated library id set correctly' ); > is( $stat->other, 'InvalidCardnumber', 'Invalid cardnumber is set correctly' ); > is( $stat->branch, $branchcode, 'Branchcode is set correctly' ); > >-# Test Koha::Statistic->invalid_item >+# Test Koha::Statistic->log_invalid_item > $dbh->do(q{DELETE FROM statistics}); > t::lib::Mocks::mock_preference( "LogInvalidItems", 0 ); >-Koha::Statistics->invalid_item( { item => 'InvalidBarcode' } ); >+Koha::Statistics->log_invalid_item( { item => 'InvalidBarcode' } ); > is( Koha::Statistics->search()->count(), 0, 'No stat line added if system preference LogInvalidItems is disabled' ); > > t::lib::Mocks::mock_preference( "LogInvalidItems", 1 ); >-Koha::Statistics->invalid_item( { item => 'InvalidBarcode' } ); >+Koha::Statistics->log_invalid_item( { item => 'InvalidBarcode' } ); > $stat = Koha::Statistics->search()->next(); > is( $stat->type, 'invalid_item', 'Type set to invalid_item' ); > is( $stat->associatedborrower, '-1', 'Associated library id set correctly' ); >-- >2.14.3 (Apple Git-98)
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 16117
:
65317
|
65319
|
73177
|
73178
|
81273
|
81274
|
153493
|
155498
|
158531
|
158532
|
161990