From b791e100d80de99fc45051db0ff88276d39f1670 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 16 Jul 2020 09:40:23 +0100 Subject: [PATCH] Bug 25998: Add 'library' relation to Koha::Account::Line https://bugs.koha-community.org/show_bug.cgi?id=24381 --- Koha/Account/Line.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Koha/Account/Line.pm b/Koha/Account/Line.pm index 155ae4e29b..ce00de0623 100644 --- a/Koha/Account/Line.pm +++ b/Koha/Account/Line.pm @@ -85,6 +85,19 @@ sub checkout { return $self->{_checkout}; } +=head3 library + +Returns a Koha::Library object representing where the accountline was recorded + +=cut + +sub library { + my ( $self ) = @_; + my $rs = $self->_result->branchcode; + return unless $rs; + return Koha::Library->_new_from_dbic($rs); +} + =head3 credit_type Return the credit_type linked to this account line -- 2.20.1