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

(-)a/C4/SIP/Sip/MsgType.pm (-1 / +5 lines)
Lines 688-694 sub handle_checkin { Link Here
688
        }
688
        }
689
    }
689
    }
690
690
691
    $resp .= maybe_add( FID_ALERT_TYPE, $status->alert_type ) if $status->alert;
691
    if ( $status->alert ) {
692
        $resp .= maybe_add( FID_ALERT_TYPE, $status->alert_type );
693
    } elsif ( $server->{account}->{cv_send_00_on_success} ) {
694
        $resp .= add_field( FID_ALERT_TYPE, '00' );
695
    }
692
    $resp .= maybe_add( FID_SCREEN_MSG, $status->screen_msg, $server );
696
    $resp .= maybe_add( FID_SCREEN_MSG, $status->screen_msg, $server );
693
    $resp .= maybe_add( FID_PRINT_LINE, $status->print_line );
697
    $resp .= maybe_add( FID_PRINT_LINE, $status->print_line );
694
698
(-)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