<<

NAME

Koha::Acquisition::Bookseller Object class

API

Class methods

baskets

    my $vendor  = Koha::Acquisition::Booksellers->find( $id );
    my @baskets = $vendor->baskets();

Returns the list of baskets for the vendor

contacts

    my $vendor   = Koha::Acquisition::Booksellers->find( $id );
    my @contacts = $vendor->contacts();

Returns the list of contacts for the vendor

subscriptions

    my $vendor        = Koha::Acquisition::Booksellers->find( $id );
    my $subscriptions = $vendor->subscriptions();

Returns the list of subscriptions for the vendor

aliases

    my $aliases = $vendor->aliases

    $vendor->aliases([{ alias => 'one alias'}]);

interfaces

    my $interfaces = $vendor->interfaces

    $vendor->interfaces(\@interfaces);

issues

    my $issues = $vendor->issues

to_api_mapping

This method returns the mapping for representing a Koha::Acquisition::Bookseller object on the API.

Internal methods

_type

<<