Bugzilla – Attachment 106972 Details for
Bug 25998
Add 'library' relation to Koha::Account::Line
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25998: Add 'library' relation to Koha::Account::Line
Bug-25998-Add-library-relation-to-KohaAccountLine.patch (text/plain), 888 bytes, created by
Martin Renvoize (ashimema)
on 2020-07-17 07:02:08 UTC
(
hide
)
Description:
Bug 25998: Add 'library' relation to Koha::Account::Line
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2020-07-17 07:02:08 UTC
Size:
888 bytes
patch
obsolete
>From 53dbc7e8cc916ce2820d8f5d03244ded893b5412 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Thu, 16 Jul 2020 09:40:23 +0100 >Subject: [PATCH] Bug 25998: Add 'library' relation to Koha::Account::Line > >--- > 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
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 25998
:
106945
|
106971
|
106972
|
106973
|
107122
|
107123
|
107124