<<

NAME

C4::Print - Koha module dealing with printing

SYNOPSIS

  use C4::Print;

DESCRIPTION

The functions in this module handle sending text to a printer.

FUNCTIONS

remoteprint
  &remoteprint($items, $borrower);

Prints the list of items in $items to a printer.

$borrower is a reference-to-hash giving information about a patron. This may be gotten from &GetMemberDetails. The patron's name will be printed in the output.

$items is a reference-to-list, where each element is a reference-to-hash describing a borrowed item. $items may be gotten from &GetBorrowerIssues.

printslip
  &printslip($borrowernumber)

  print a slip for the given $borrowernumber

AUTHOR

Koha Developement team <info@koha.org>

SEE ALSO

C4::Circulation::Circ2(3)

<<