View | Details | Raw Unified | Return to bug 22016
Collapse All | Expand All

(-)a/C4/SIP/Sip/MsgType.pm (-1 / +1 lines)
Lines 677-683 sub handle_checkin { Link Here
677
                $resp .= maybe_add( FID_COLLECTION_CODE, $item->collection_code );
677
                $resp .= maybe_add( FID_COLLECTION_CODE, $item->collection_code );
678
            }
678
            }
679
            $resp .= maybe_add( FID_CALL_NUMBER,          $item->call_number );
679
            $resp .= maybe_add( FID_CALL_NUMBER,          $item->call_number );
680
            $resp .= maybe_add( FID_DESTINATION_LOCATION, $item->destination_loc );
680
            $resp .= add_field( FID_DESTINATION_LOCATION, $item->destination_loc ) if ( $item->destination_loc || $server->{account}->{ct_always_send} );
681
            $resp .= maybe_add( FID_HOLD_PATRON_ID,       $item->hold_patron_bcode );
681
            $resp .= maybe_add( FID_HOLD_PATRON_ID,       $item->hold_patron_bcode );
682
            $resp .= maybe_add( FID_HOLD_PATRON_NAME,     $item->hold_patron_name( $server->{account}->{da_field_template} ) );
682
            $resp .= maybe_add( FID_HOLD_PATRON_NAME,     $item->hold_patron_name( $server->{account}->{da_field_template} ) );
683
            if ( $status->hold and $status->hold->{branchcode} ne $item->destination_loc ) {
683
            if ( $status->hold and $status->hold->{branchcode} ne $item->destination_loc ) {
(-)a/etc/SIPconfig.xml (-1 / +1 lines)
Lines 52-57 Link Here
52
             delimiter="|" error-detect="enabled" institution="LPL"
52
             delimiter="|" error-detect="enabled" institution="LPL"
53
             send_patron_home_library_in_af="1"
53
             send_patron_home_library_in_af="1"
54
             cv_send_00_on_success="1"
54
             cv_send_00_on_success="1"
55
             ct_always_send="1"
55
             ae_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
56
             ae_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
56
             da_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
57
             da_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
57
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]" >
58
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]" >
58
- 

Return to bug 22016