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

(-)a/C4/SIP/Sip/MsgType.pm (-1 / +1 lines)
Lines 1676-1682 sub patron_status_string { Link Here
1676
        denied( $patron->hold_ok ),
1676
        denied( $patron->hold_ok ),
1677
        boolspace( $patron->card_lost ),
1677
        boolspace( $patron->card_lost ),
1678
        boolspace( $patron->too_many_charged ),
1678
        boolspace( $patron->too_many_charged ),
1679
        $server->{account}->{disable_too_many_overdue} ? q{ } : boolspace( $patron->too_many_overdue ),
1679
        $server->{account}->{overdues_block_checkout} ? boolspace( $patron->too_many_overdue ) : q{ },
1680
        boolspace( $patron->too_many_renewal ),
1680
        boolspace( $patron->too_many_renewal ),
1681
        boolspace( $patron->too_many_claim_return ),
1681
        boolspace( $patron->too_many_claim_return ),
1682
        boolspace( $patron->too_many_lost ),
1682
        boolspace( $patron->too_many_lost ),
(-)a/debian/templates/SIPconfig.xml (-1 / +2 lines)
Lines 51-58 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
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]"
54
             holds_block_checkin="0"
55
             holds_block_checkin="0"
55
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]" >
56
             overdues_block_checkout="1">
56
          <screen_msg_regex find="Greetings from Koha." replace="Welcome to your library!" />
57
          <screen_msg_regex find="Greetings from Koha." replace="Welcome to your library!" />
57
          <screen_msg_regex find="Invalid patron barcode." replace="Barcode not found, are you sure this is your library card?" />
58
          <screen_msg_regex find="Invalid patron barcode." replace="Barcode not found, are you sure this is your library card?" />
58
      </login>
59
      </login>
(-)a/etc/SIPconfig.xml (-3 / +2 lines)
Lines 60-68 Link Here
60
             da_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
60
             da_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
61
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]"
61
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]"
62
             hide_fields="BD,BE,BF,PB"
62
             hide_fields="BD,BE,BF,PB"
63
             disable_too_many_overdue="1"
64
             register_id=''
63
             register_id=''
65
             holds_block_checkin="0">
64
             holds_block_checkin="0"
65
             overdues_block_checkout="1">
66
          <screen_msg_regex find="Greetings from Koha." replace="Welcome to your library!" />
66
          <screen_msg_regex find="Greetings from Koha." replace="Welcome to your library!" />
67
          <screen_msg_regex find="Invalid patron barcode." replace="Barcode not found, are you sure this is your library card?" />
67
          <screen_msg_regex find="Invalid patron barcode." replace="Barcode not found, are you sure this is your library card?" />
68
          <patron_attribute field="XY" code="CODE" />
68
          <patron_attribute field="XY" code="CODE" />
69
- 

Return to bug 25761