<<

NAME

Koha::Acquisition::Order Object class

API

Class methods

new

Overloaded new method for backwards compatibility.

store

Overloaded store method for backwards compatibility.

add_item

  $order->add_item( $itemnumber );

Link an item to this order.

basket

    my $basket = Koha::Acquisition::Orders->find( $id )->basket;

Returns the basket associated to the order.

fund

    my $fund = $order->fund

Returns the fund (aqbudgets) associated to the order.

invoice

    my $invoice = $order->invoice

Returns the invoice associated to the order.

subscription

    my $subscription = $order->subscription

Returns the subscription associated to the order.

items

    my $items = $order->items

Returns the items associated to the order.

biblio

    my $biblio = $order->biblio

Returns the bibliographic record associated to the order

duplicate_to

    my $duplicated_order = $order->duplicate_to($basket, [$default_values]);

Duplicate an existing order and attach it to a basket. $default_values can be specified as a hashref that contain default values for the different order's attributes. Items will be duplicated as well but barcodes will be set to null.

Internal methods

_type

<<