<<

FUNCTIONS ABOUT BUDGETS

GetBudget

&GetBudget($budget_id);

get a specific budget

GetBudgets

&GetBudgets($filter, $order_by);

gets all budgets

GetCurrencies

@currencies = &GetCurrencies;

Returns the list of all known currencies.

$currencies is a array; its elements are references-to-hash, whose keys are the fields from the currency table in the Koha database.

ModCurrencies

&ModCurrencies($currency, $newrate);

Sets the exchange rate for $currency to be $newrate.

ConvertCurrency

$foreignprice = &ConvertCurrency($currency, $localprice);

Converts the price $localprice to foreign currency $currency by dividing by the exchange rate, and returns the result.

If no exchange rate is found,e is one to one.

returns an array containing fieldname followed by PRI as value if PRIMARY Key

AUTHOR

Koha Developement team <info@koha.org>

POD ERRORS

Hey! The above document had some coding errors, which are explained below:

Around line 633:

=back without =over

Around line 641:

You forgot a '=back' before '=head3'

Around line 776:

'=item' outside of any '=over'

<<