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

(-)a/C4/SIP/Sip/MsgType.pm (-1 / +1 lines)
Lines 673-679 sub handle_checkin { Link Here
673
            $resp .= maybe_add( FID_ITEM_PROPS,           $item->sip_item_properties );
673
            $resp .= maybe_add( FID_ITEM_PROPS,           $item->sip_item_properties );
674
            $resp .= maybe_add( FID_COLLECTION_CODE,      $item->collection_code );
674
            $resp .= maybe_add( FID_COLLECTION_CODE,      $item->collection_code );
675
            $resp .= maybe_add( FID_CALL_NUMBER,          $item->call_number );
675
            $resp .= maybe_add( FID_CALL_NUMBER,          $item->call_number );
676
            $resp .= maybe_add( FID_DESTINATION_LOCATION, $item->destination_loc );
676
            $resp .= add_field( FID_DESTINATION_LOCATION, $item->destination_loc ) if ( $item->destination_loc || $server->{account}->{ct_always_send} );
677
            $resp .= maybe_add( FID_HOLD_PATRON_ID,       $item->hold_patron_bcode );
677
            $resp .= maybe_add( FID_HOLD_PATRON_ID,       $item->hold_patron_bcode );
678
            $resp .= maybe_add( FID_HOLD_PATRON_NAME,     $item->hold_patron_name( $server->{account}->{da_field_template} ) );
678
            $resp .= maybe_add( FID_HOLD_PATRON_NAME,     $item->hold_patron_name( $server->{account}->{da_field_template} ) );
679
            if ( $status->hold and $status->hold->{branchcode} ne $item->destination_loc ) {
679
            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