From 3f40a6a3fdb4c62bdf69a5128b1ba257bb263555 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 28 Mar 2017 11:39:09 -0300 Subject: [PATCH] Bug 17828: Use Koha::Patron::Attributes instead of _resultset Signed-off-by: Jonathan Druart --- Koha/Patron/Attribute.pm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Koha/Patron/Attribute.pm b/Koha/Patron/Attribute.pm index 52eb9c1..79b7eaf 100644 --- a/Koha/Patron/Attribute.pm +++ b/Koha/Patron/Attribute.pm @@ -109,8 +109,7 @@ sub _check_repeatable { my $self = shift; if ( !$self->type->repeatable ) { - my $attr_count - = Koha::Database->new->schema->resultset( $self->_type )->search( + my $attr_count = Koha::Patron::Attributes->search( { borrowernumber => $self->borrowernumber, code => $self->code } @@ -135,8 +134,7 @@ sub _check_unique_id { my $self = shift; if ( $self->type->unique_id ) { - my $unique_count - = Koha::Database->new->schema->resultset( $self->_type ) + my $unique_count = Koha::Patron::Attributes ->search( { code => $self->code, attribute => $self->attribute } ) ->count; Koha::Exceptions::Patron::Attribute::UniqueIDConstraint->throw() -- 2.9.3