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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (-1 / +1 lines)
Lines 99-105 Cataloging: Link Here
99
              choices:
99
              choices:
100
                  1: specific item
100
                  1: specific item
101
                  0: bibliographic record
101
                  0: bibliographic record
102
            - as the authoritative item type (for determining circulation and fines rules, for displaying an item type icon on either opac detail or results page, etc).
102
            - as the authoritative item type (for determining circulation and fine rules, for displaying an item type icon on either opac detail or results page, etc).
103
        -
103
        -
104
            - Map the MARC subfields
104
            - Map the MARC subfields
105
            - pref: itemcallnumber
105
            - pref: itemcallnumber
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +2 lines)
Lines 278-284 Circulation: Link Here
278
                  CheckInLibrary: the library the item is checked in at.
278
                  CheckInLibrary: the library the item is checked in at.
279
                  ItemHomeLibrary: the library the item is owned by.
279
                  ItemHomeLibrary: the library the item is owned by.
280
        -
280
        -
281
            - Use the checkout and fines rules of
281
            - Use the circulation and fine rules of
282
            - pref: HomeOrHoldingBranch
282
            - pref: HomeOrHoldingBranch
283
              type: choice
283
              type: choice
284
              choices:
284
              choices:
Lines 1328-1334 Circulation: Link Here
1328
              choices:
1328
              choices:
1329
                  1: Use
1329
                  1: Use
1330
                  0: "Don't use"
1330
                  0: "Don't use"
1331
            - recalls. Make sure you configure <a href="/cgi-bin/koha/admin/smart-rules.pl">circulation and fines rules</a> for recalls once enabled.
1331
            - recalls. Make sure you configure <a href="/cgi-bin/koha/admin/smart-rules.pl">circulation and fine rules</a> for recalls once enabled.
1332
1332
1333
    SIP2:
1333
    SIP2:
1334
        -
1334
        -
(-)a/t/db_dependent/selenium/administration_tasks.t (-2 / +1 lines)
Lines 76-82 SKIP: { Link Here
76
        $s->click( { href => '/admin/admin-home.pl', main => 'container-main' } )
76
        $s->click( { href => '/admin/admin-home.pl', main => 'container-main' } )
77
          ;    # Koha administration
77
          ;    # Koha administration
78
        $s->click( { href => '/admin/smart-rules.pl', main_class => 'main container-fluid' } )
78
        $s->click( { href => '/admin/smart-rules.pl', main_class => 'main container-fluid' } )
79
          ;    # Circulation and fines rules
79
          ;    # Circulation and fine rules
80
        my $elt = $driver->find_element('//tr[@id="edit_row"]/td/select[@id="matrixitemtype"]/option[@value="'.$itype->itemtype.'"]');
80
        my $elt = $driver->find_element('//tr[@id="edit_row"]/td/select[@id="matrixitemtype"]/option[@value="'.$itype->itemtype.'"]');
81
        is( $elt->get_text(),$itype->description,"Our new itemtype is in the list");
81
        is( $elt->get_text(),$itype->description,"Our new itemtype is in the list");
82
        $elt->click();
82
        $elt->click();
83
- 

Return to bug 34345