<<

NAME

Koha::ILL::Batch - Koha Illbatch Object class

Class methods

status

    my $status = Koha::ILL::Batch > status;

Return the status object associated with this batch

patron

    my $patron = Koha::ILL::Batch->patron;

Return the Koha::Patron object associated with this batch

library

    my $library = Koha::ILL::Batch->library;

Return the Koha::Library object associated with this batch

requests

Return the Koha::ILL::Requests for this batch

create_and_log

    $batch->create_and_log;

Log batch creation following storage

update_and_log

    $batch->update_and_log;

Log batch update following storage

delete_and_log

    $batch->delete_and_log;

Log batch delete

Internal methods

strings_map

Returns a map of column name to string representations including the string, the mapping type and the mapping category where appropriate.

Currently handles library and ILL batch status expansions. expansions.

Accepts a param hashref where the public key denotes whether we want the public or staff client strings.

Note: the public parameter is not currently used.

_type

    my $type = Koha::ILL::Batch->_type;

Return this object's type

AUTHOR

Andrew Isherwood <andrew.isherwood@ptfs-europe.com>

<<