Koha::ILL::Batch - Koha Illbatch Object class
my $status = Koha::ILL::Batch > status;
Return the status object associated with this batch
my $patron = Koha::ILL::Batch->patron;
Return the Koha::Patron object associated with this batch
my $library = Koha::ILL::Batch->library;
Return the Koha::Library object associated with this batch
Return the Koha::ILL::Requests for this batch
$batch->create_and_log;
Log batch creation following storage
$batch->update_and_log;
Log batch update following storage
$batch->delete_and_log;
Log batch delete
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.
my $type = Koha::ILL::Batch->_type;
Return this object's type
Andrew Isherwood <andrew.isherwood@ptfs-europe.com>