Bug 29021: RenewAccruingItemWhenPaid renewals are not seen
[koha-ffzg.git] / Koha / Patron / HouseboundVisit.pm
index a7dc0c6..debc441 100644 (file)
@@ -2,22 +2,23 @@ package Koha::Patron::HouseboundVisit;
 
 # 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 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.
+# 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, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 use Modern::Perl;
 
 use Koha::Database;
+use Koha::Patron;
 
 use base qw(Koha::Object);
 
@@ -49,7 +50,8 @@ Returns the prefetched chooser for this visit.
 
 sub chooser {
     my ( $self ) = @_;
-    return $self->_result->chooser_brwnumber;
+    my $rs = $self->_result->chooser_brwnumber;
+    return Koha::Patron->_new_from_dbic( $rs );
 }
 
 =head3 deliverer
@@ -62,7 +64,8 @@ Returns the prefetched deliverer for this visit.
 
 sub deliverer {
     my ( $self ) = @_;
-    return $self->_result->deliverer_brwnumber;
+    my $rs = $self->_result->deliverer_brwnumber;
+    return Koha::Patron->_new_from_dbic( $rs );
 
 }