Lines 672-679
sub handle_checkin {
Link Here
|
672 |
if ( $no_block eq 'Y' ) { |
672 |
if ( $no_block eq 'Y' ) { |
673 |
|
673 |
|
674 |
# Off-line transactions, ick. |
674 |
# Off-line transactions, ick. |
675 |
siplog( "LOG_WARNING", "received no-block checkin from terminal '%s'", $account->{id} ); |
675 |
siplog( "LOG_WARNING", "received no-block checkin from terminal '%s' - no-block checkin not supported", $account->{id} ); |
676 |
$status = $ils->checkin_no_block( $item_id, $trans_date, $return_date, $item_props, $cancel ); |
676 |
#FIXME We need to write the routine called below |
|
|
677 |
#$status = $ils->checkin_no_block( $item_id, $trans_date, $return_date, $item_props, $cancel ); |
678 |
#Until we do, lets just checkin the item |
679 |
$status = $ils->checkin( $item_id, $trans_date, $return_date, $my_branch, $item_props, $cancel, $account ); |
677 |
} else { |
680 |
} else { |
678 |
$status = $ils->checkin( $item_id, $trans_date, $return_date, $my_branch, $item_props, $cancel, $account ); |
681 |
$status = $ils->checkin( $item_id, $trans_date, $return_date, $my_branch, $item_props, $cancel, $account ); |
679 |
} |
682 |
} |
680 |
- |
|
|