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

(-)a/C4/SIP/Sip/MsgType.pm (-1 / +5 lines)
Lines 684-690 sub handle_checkin { Link Here
684
        }
684
        }
685
    }
685
    }
686
686
687
    $resp .= maybe_add( FID_ALERT_TYPE, $status->alert_type ) if $status->alert;
687
    if ( $status->alert && $status->alert_type ) {
688
        $resp .= maybe_add( FID_ALERT_TYPE, $status->alert_type );
689
    } elsif ( $server->{account}->{cv_send_00_on_success} ) {
690
        $resp .= add_field( FID_ALERT_TYPE, '00' );
691
    }
688
    $resp .= maybe_add( FID_SCREEN_MSG, $status->screen_msg, $server );
692
    $resp .= maybe_add( FID_SCREEN_MSG, $status->screen_msg, $server );
689
    $resp .= maybe_add( FID_PRINT_LINE, $status->print_line );
693
    $resp .= maybe_add( FID_PRINT_LINE, $status->print_line );
690
694
(-)a/etc/SIPconfig.xml (-1 / +1 lines)
Lines 51-56 Link Here
51
      <login id="lpl-sc-beacock" password="xyzzy"
51
      <login id="lpl-sc-beacock" password="xyzzy"
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
             ae_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
55
             ae_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
55
             da_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
56
             da_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
56
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]" >
57
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]" >
57
- 

Return to bug 22014