Lines 671-677
sub handle_checkin {
Link Here
|
671 |
$resp .= maybe_add( FID_CALL_NUMBER, $item->call_number ); |
671 |
$resp .= maybe_add( FID_CALL_NUMBER, $item->call_number ); |
672 |
$resp .= maybe_add( FID_DESTINATION_LOCATION, $item->destination_loc ); |
672 |
$resp .= maybe_add( FID_DESTINATION_LOCATION, $item->destination_loc ); |
673 |
$resp .= maybe_add( FID_HOLD_PATRON_ID, $item->hold_patron_bcode ); |
673 |
$resp .= maybe_add( FID_HOLD_PATRON_ID, $item->hold_patron_bcode ); |
674 |
$resp .= maybe_add( FID_HOLD_PATRON_NAME, $item->hold_patron_name ); |
674 |
$resp .= maybe_add( FID_HOLD_PATRON_NAME, $item->hold_patron_name( $server->{account}->{da_field_template} ) ); |
675 |
if ( $status->hold and $status->hold->{branchcode} ne $item->destination_loc ) { |
675 |
if ( $status->hold and $status->hold->{branchcode} ne $item->destination_loc ) { |
676 |
warn 'SIP hold mismatch: $status->hold->{branchcode}=' . $status->hold->{branchcode} . '; $item->destination_loc=' . $item->destination_loc; |
676 |
warn 'SIP hold mismatch: $status->hold->{branchcode}=' . $status->hold->{branchcode} . '; $item->destination_loc=' . $item->destination_loc; |
677 |
|
677 |
|