From: Joe Atzberger Date: Thu, 3 Jun 2010 20:45:14 +0000 (+0000) Subject: Propagate $inst_id to checkout handler X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1e26456849de515056b219859e72278decfd505f;p=working%2FSIPServer.git Propagate $inst_id to checkout handler Needed for holds routing logic --- diff --git a/Sip/MsgType.pm b/Sip/MsgType.pm index 0b96813..d01a9a8 100644 --- a/Sip/MsgType.pm +++ b/Sip/MsgType.pm @@ -647,7 +647,7 @@ sub handle_checkin { syslog("LOG_WARNING", "received no-block checkin from terminal '%s'", $account->{id}); $status = $ils->checkin_no_block($item_id, $trans_date, $return_date, $item_props, $cancel); } else { - $status = $ils->checkin($item_id, $trans_date, $return_date, $current_loc, $item_props, $cancel); + $status = $ils->checkin($item_id, $inst_id, $trans_date, $return_date, $current_loc, $item_props, $cancel); } $patron = $status->patron;