Bug 23050: Fix creation of biblio tab's id
[koha.git] / Koha / Library.pm
blobdab86e7580c8792654ca5a6e371e22088ec11078
1 package Koha::Library;
3 # Copyright 2015 Koha Development team
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use Modern::Perl;
22 use Carp;
24 use C4::Context;
26 use Koha::Database;
27 use Koha::StockRotationStages;
29 use base qw(Koha::Object);
31 =head1 NAME
33 Koha::Library - Koha Library Object class
35 =head1 API
37 =head2 Class methods
39 =head3 stockrotationstages
41 my $stages = Koha::Library->stockrotationstages;
43 Returns the stockrotation stages associated with this Library.
45 =cut
47 sub stockrotationstages {
48 my ( $self ) = @_;
49 my $rs = $self->_result->stockrotationstages;
50 return Koha::StockRotationStages->_new_from_dbic( $rs );
53 =head3 get_effective_marcorgcode
55 my $marcorgcode = Koha::Libraries->find( $library_id )->get_effective_marcorgcode();
57 Returns the effective MARC organization code of the library. It falls back to the value
58 from the I<MARCOrgCode> syspref if undefined for the library.
60 =cut
62 sub get_effective_marcorgcode {
63 my ( $self ) = @_;
65 return $self->marcorgcode || C4::Context->preference("MARCOrgCode");
68 =head3 library_groups
70 Return the Library groups of this library
72 =cut
74 sub library_groups {
75 my ( $self ) = @_;
76 my $rs = $self->_result->library_groups;
77 return Koha::Library::Groups->_new_from_dbic( $rs );
80 =head3 cash_registers
82 Return Cash::Registers associated with this Library
84 =cut
86 sub cash_registers {
87 my ( $self ) = @_;
88 my $rs = $self->_result->cash_registers;
89 return Koha::Cash::Registers->_new_from_dbic( $rs );
92 =head3 to_api_mapping
94 This method returns the mapping for representing a Koha::Library object
95 on the API.
97 =cut
99 sub to_api_mapping {
100 return {
101 branchcode => 'library_id',
102 branchname => 'name',
103 branchaddress1 => 'address1',
104 branchaddress2 => 'address2',
105 branchaddress3 => 'address3',
106 branchzip => 'postal_code',
107 branchcity => 'city',
108 branchstate => 'state',
109 branchcountry => 'country',
110 branchphone => 'phone',
111 branchfax => 'fax',
112 branchemail => 'email',
113 branchreplyto => 'reply_to_email',
114 branchreturnpath => 'return_path_email',
115 branchurl => 'url',
116 issuing => undef,
117 branchip => 'ip',
118 branchprinter => undef,
119 branchnotes => 'notes',
120 marcorgcode => 'marc_org_code',
124 =head2 Internal methods
126 =head3 _type
128 =cut
130 sub _type {
131 return 'Branch';