<<

NAME

Koha::Illbatch - Koha Illbatch Object class

Class methods

status

    my $status = Koha::Illbatch->status;

Return the status object associated with this batch

patron

    my $patron = Koha::Illbatch->patron;

Return the Koha::Patron object associated with this batch

library

    my $library = Koha::Illbatch->library;

Return the Koha::Library object associated with this batch

requests

Return the Koha::Illrequests 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::Illbatch->_type;

Return this object's type

AUTHOR

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

<<