Borrowing Request Checked In From Library
This event hook is triggered when an item is processed from the Check In from Lending Library batch processing form using the Check In, Check In Scan Now, or Check In Scan Later buttons.
Event Hook Name: BorrowingRequestCheckedInFromLibrary
Input Parameters
TransactionNumber | The transaction number that was processed. |
|---|---|
RequestType | The request type of the processed transaction. |
Example
The following is an example of the syntax used to register for the Borrowing Request Checked In From Library event hook and has a sample handler to add a flag to the processed transaction.
function Init()
RegisterSystemEventHandler("BorrowingRequestCheckedInFromLibrary",
"CheckedInHandler");
end
function CheckedInHandler(transactionProcessedEventArgs)
ExecuteCommand("AddTransactionFlag", { transactionProcessedEventArgs.
TransactionNumber, "Checked In Flag" });
end