|
Lines 27-32
Koha::Acquisition::Fund object class
Link Here
|
| 27 |
|
27 |
|
| 28 |
=head1 API |
28 |
=head1 API |
| 29 |
|
29 |
|
|
|
30 |
=head2 Class methods |
| 31 |
|
| 32 |
=head3 to_api_mapping |
| 33 |
|
| 34 |
This method returns the mapping for representing a Koha::Acquisition::Fund object |
| 35 |
on the API. |
| 36 |
|
| 37 |
=cut |
| 38 |
|
| 39 |
sub to_api_mapping { |
| 40 |
return { |
| 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', |
| 56 |
}; |
| 57 |
} |
| 58 |
|
| 30 |
=head2 Internal methods |
59 |
=head2 Internal methods |
| 31 |
|
60 |
|
| 32 |
=head3 _type |
61 |
=head3 _type |