Lines 85-90
sub checkout {
Link Here
|
85 |
return $self->{_checkout}; |
85 |
return $self->{_checkout}; |
86 |
} |
86 |
} |
87 |
|
87 |
|
|
|
88 |
=head3 library |
89 |
|
90 |
Returns a Koha::Library object representing where the accountline was recorded |
91 |
|
92 |
=cut |
93 |
|
94 |
sub library { |
95 |
my ( $self ) = @_; |
96 |
my $rs = $self->_result->branchcode; |
97 |
return unless $rs; |
98 |
return Koha::Library->_new_from_dbic($rs); |
99 |
} |
100 |
|
88 |
=head3 credit_type |
101 |
=head3 credit_type |
89 |
|
102 |
|
90 |
Return the credit_type linked to this account line |
103 |
Return the credit_type linked to this account line |
91 |
- |
|
|