1 package Koha
::Acquisition
::Fund
;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 use base
qw(Koha::Object);
26 Koha::Acquisition::Fund object class
34 This method returns the mapping for representing a Koha::Acquisition::Fund object
41 budget_id
=> 'fund_id',
42 budget_code
=> 'code',
43 budget_name
=> 'name',
44 budget_branchcode
=> 'library_id',
45 budget_amount
=> 'total_amount',
46 budget_encumb
=> 'warn_at_percentage',
47 budget_expend
=> 'warn_at_amount',
48 budget_notes
=> 'notes',
49 budget_period_id
=> 'budget_id',
50 timestamp
=> 'timestamp',
51 budget_owner_id
=> 'fund_owner_id',
52 budget_permission
=> 'fund_access',
53 sort1_authcat
=> 'statistic1_auth_value_category',
54 sort2_authcat
=> 'statistic2_auth_value_category',
55 budget_parent_id
=> 'parent_fund_id',
59 =head2 Internal methods