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

(-)a/C4/SIP/ILS/Patron.pm (-52 / +56 lines)
Lines 100-167 sub new { Link Here
100
    $dexpiry and $dexpiry =~ s/-//g;    # YYYYMMDD
100
    $dexpiry and $dexpiry =~ s/-//g;    # YYYYMMDD
101
101
102
    # Get fines and add fines for guarantees (depends on preference NoIssuesChargeGuarantees)
102
    # Get fines and add fines for guarantees (depends on preference NoIssuesChargeGuarantees)
103
    my $patron_charge_limits  = $patron->is_patron_inside_charge_limits();
103
    my $fines_amount          = ( $patron->account->balance > 0 ) ? $patron->account->non_issues_charges : 0;
104
    my $fines_amount          = $patron_charge_limits->{noissuescharge}->{charge};
105
    my $personal_fines_amount = $fines_amount;
104
    my $personal_fines_amount = $fines_amount;
106
    my $fee_limit             = $patron_charge_limits->{noissuescharge}->{limit} || 5;
105
    my $fee_limit             = _fee_limit();
107
    my $noissueschargeguarantorswithguarantees =
106
    my $noissueschargeguarantorswithguarantees = C4::Context->preference('NoIssuesChargeGuarantorsWithGuarantees');
108
        $patron_charge_limits->{NoIssuesChargeGuarantorsWithGuarantees}->{limit};
107
    my $fines_msg                              = "";
109
    my $noissueschargeguarantees = $patron_charge_limits->{NoIssuesChargeGuarantees}->{limit};
108
    my $fine_blocked                           = 0;
110
109
    my $noissueschargeguarantees               = C4::Context->preference('NoIssuesChargeGuarantees');
111
    my $fines_msg    = "";
110
112
    my $fine_blocked = 0;
111
    if ( $fines_amount > $fee_limit ) {
113
    if ( $patron_charge_limits->{noissuescharge}->{overlimit} ) {
114
        $fine_blocked = 1;
112
        $fine_blocked = 1;
115
        $fines_msg .= " -- " . "Patron blocked by fines" if $fine_blocked;
113
        $fines_msg .= " -- " . "Patron blocked by fines" if $fine_blocked;
116
    } elsif ($noissueschargeguarantorswithguarantees) {
114
    } elsif ($noissueschargeguarantorswithguarantees) {
117
        $fines_amount = $patron_charge_limits->{NoIssuesChargeGuarantorsWithGuarantees}->{charge};
115
        $fines_amount += $patron->relationships_debt(
118
        $fine_blocked = $patron_charge_limits->{NoIssuesChargeGuarantorsWithGuarantees}->{overlimit};
116
            { include_guarantors => 1, only_this_guarantor => 0, include_this_patron => 0 } );
117
        $fine_blocked ||= $fines_amount > $noissueschargeguarantorswithguarantees;
119
        $fines_msg .= " -- " . "Patron blocked by fines ($fines_amount) on related accounts" if $fine_blocked;
118
        $fines_msg .= " -- " . "Patron blocked by fines ($fines_amount) on related accounts" if $fine_blocked;
120
    } elsif ($noissueschargeguarantees) {
119
    } elsif ($noissueschargeguarantees) {
121
        if ( $patron->guarantee_relationships->count ) {
120
        if ( $patron->guarantee_relationships->count ) {
122
            $fines_amount += $patron_charge_limits->{NoIssuesChargeGuarantees}->{charge};
121
            $fines_amount += $patron->relationships_debt(
123
            $fine_blocked = $patron_charge_limits->{NoIssuesChargeGuarantees}->{overlimit};
122
                { include_guarantors => 0, only_this_guarantor => 1, include_this_patron => 0 } );
123
            $fine_blocked ||= $fines_amount > $noissueschargeguarantees;
124
            $fines_msg .= " -- " . "Patron blocked by fines ($fines_amount) on guaranteed accounts" if $fine_blocked;
124
            $fines_msg .= " -- " . "Patron blocked by fines ($fines_amount) on guaranteed accounts" if $fine_blocked;
125
        }
125
        }
126
    }
126
    }
127
127
128
    # Get currency 3 chars max
129
    my $currency = substr Koha::Acquisition::Currencies->get_active->currency, 0, 3;
130
131
    my $circ_blocked =
128
    my $circ_blocked =
132
        ( C4::Context->preference('OverduesBlockCirc') ne "noblock" && defined $flags->{ODUES}->{itemlist} ) ? 1 : 0;
129
        ( C4::Context->preference('OverduesBlockCirc') ne "noblock" && defined $flags->{ODUES}->{itemlist} ) ? 1 : 0;
133
    {
130
    {
134
        no warnings;    # any of these $kp->{fields} being concat'd could be undef
131
        no warnings;    # any of these $kp->{fields} being concat'd could be undef
132
        my $screen_message = "";
133
        $screen_message .= process_tt(
134
            C4::Context->preference('SIP2ScreenMessageGreeting'),
135
            { borrower => $patron, sip_borrower => $kp }
136
        );
137
        $screen_message .= q{ } if $screen_message;
138
        $screen_message .= $kp->{opacnote} . $fines_msg;
139
135
        %ilspatron = (
140
        %ilspatron = (
136
            name            => $kp->{firstname} . " " . $kp->{surname},
141
            name             => $kp->{firstname} . " " . $kp->{surname},
137
            id              => $kp->{cardnumber},                         # to SIP, the id is the BARCODE, not userid
142
            id               => $kp->{cardnumber},                         # to SIP, the id is the BARCODE, not userid
138
            password        => $pw,
143
            password         => $pw,
139
            ptype           => $kp->{categorycode},                       # 'A'dult.  Whatever.
144
            ptype            => $kp->{categorycode},                       # 'A'dult.  Whatever.
140
            dateexpiry      => $dexpiry,
145
            dateexpiry       => $dexpiry,
141
            dateexpiry_iso  => $kp->{dateexpiry},
146
            dateexpiry_iso   => $kp->{dateexpiry},
142
            birthdate       => $dob,
147
            birthdate        => $dob,
143
            birthdate_iso   => $kp->{dateofbirth},
148
            birthdate_iso    => $kp->{dateofbirth},
144
            branchcode      => $kp->{branchcode},
149
            branchcode       => $kp->{branchcode},
145
            library_name    => "",                                        # only populated if needed, cached here
150
            library_name     => "",                                        # only populated if needed, cached here
146
            borrowernumber  => $kp->{borrowernumber},
151
            borrowernumber   => $kp->{borrowernumber},
147
            address         => $adr,
152
            address          => $adr,
148
            home_phone      => $kp->{phone},
153
            home_phone       => $kp->{phone},
149
            email_addr      => $kp->{email},
154
            email_addr       => $kp->{email},
150
            charge_ok       => ( !$debarred && !$expired && !$fine_blocked && !$circ_blocked ),
155
            charge_ok        => ( !$debarred && !$expired && !$fine_blocked && !$circ_blocked ),
151
            renew_ok        => ( !$debarred && !$expired && !$fine_blocked ),
156
            renew_ok         => ( !$debarred && !$expired && !$fine_blocked ),
152
            recall_ok       => ( !$debarred && !$expired && !$fine_blocked ),
157
            recall_ok        => ( !$debarred && !$expired && !$fine_blocked ),
153
            hold_ok         => ( !$debarred && !$expired && !$fine_blocked ),
158
            hold_ok          => ( !$debarred && !$expired && !$fine_blocked ),
154
            card_lost       => ( $kp->{lost} || $kp->{gonenoaddress} || $flags->{LOST} ),
159
            card_lost        => ( $kp->{lost} || $kp->{gonenoaddress} || $flags->{LOST} ),
155
            claims_returned => 0,
160
            claims_returned  => 0,
156
            fines           => $personal_fines_amount,
161
            fines            => $personal_fines_amount,
157
            fees           => 0,                                                     # currently not distinct from fines
162
            fees             => 0,                                         # currently not distinct from fines
158
            recall_overdue => 0,
163
            recall_overdue   => 0,
159
            items_billed   => 0,
164
            items_billed     => 0,
160
            screen_msg     => 'Greetings from Koha. ' . $kp->{opacnote} . $fines_msg,
165
            screen_msg       => $screen_message,
161
            print_line     => '',
166
            print_line       => '',
162
            items          => [],
167
            items            => [],
163
            hold_items     => $flags->{WAITING}->{itemlist},
168
            hold_items       => $flags->{WAITING}->{itemlist},
164
            overdue_items  => $flags->{ODUES}->{itemlist},
169
            overdue_items    => $flags->{ODUES}->{itemlist},
165
            too_many_overdue => $circ_blocked,
170
            too_many_overdue => $circ_blocked,
166
            fine_items       => [],
171
            fine_items       => [],
167
            recall_items     => [],
172
            recall_items     => [],
Lines 172-178 sub new { Link Here
172
            fine_blocked     => $fine_blocked,
177
            fine_blocked     => $fine_blocked,
173
            fee_limit        => $fee_limit,
178
            fee_limit        => $fee_limit,
174
            userid           => $kp->{userid},
179
            userid           => $kp->{userid},
175
            currency         => $currency,
176
        );
180
        );
177
    }
181
    }
178
182
Lines 214-220 sub new { Link Here
214
        }
218
        }
215
    }
219
    }
216
220
217
    # FIXME: populate recall_items
221
    # FIXME: populate fine_items recall_items
218
    $ilspatron{unavail_holds} = _get_outstanding_holds( $kp->{borrowernumber} );
222
    $ilspatron{unavail_holds} = _get_outstanding_holds( $kp->{borrowernumber} );
219
223
220
    my $pending_checkouts = $patron->pending_checkouts;
224
    my $pending_checkouts = $patron->pending_checkouts;
Lines 403-416 sub x_items { Link Here
403
407
404
    my $item_list = [];
408
    my $item_list = [];
405
    if ( $self->{$array_var} ) {
409
    if ( $self->{$array_var} ) {
406
407
        if ( $start && $start > 1 ) {
410
        if ( $start && $start > 1 ) {
408
            --$start;
411
            --$start;
409
        } else {
412
        } else {
410
            $start = 0;
413
            $start = 0;
411
        }
414
        }
412
        if ( $end && $end < @{ $self->{$array_var} } ) {
415
        if ( $end && $end < @{ $self->{$array_var} } ) {
413
            --$end;
414
        } else {
416
        } else {
415
            $end = @{ $self->{$array_var} };
417
            $end = @{ $self->{$array_var} };
416
            --$end;
418
            --$end;
Lines 445-451 sub charged_items { Link Here
445
}
447
}
446
448
447
sub fine_items {
449
sub fine_items {
448
449
    require Koha::Database;
450
    require Koha::Database;
450
    require Template;
451
    require Template;
451
452
Lines 478-484 sub fine_items { Link Here
478
    }
479
    }
479
480
480
    return \@return_values;
481
    return \@return_values;
481
482
}
482
}
483
483
484
sub recall_items {
484
sub recall_items {
Lines 522-527 sub inet_privileges { Link Here
522
    return $self->{inet} ? 'Y' : 'N';
522
    return $self->{inet} ? 'Y' : 'N';
523
}
523
}
524
524
525
sub _fee_limit {
526
    return C4::Context->preference('noissuescharge') || 5;
527
}
528
525
sub excessive_fees {
529
sub excessive_fees {
526
    my $self = shift;
530
    my $self = shift;
527
    return ( $self->fee_amount and $self->fee_amount > $self->fee_limit );
531
    return ( $self->fee_amount and $self->fee_amount > $self->fee_limit );
(-)a/installer/data/mysql/atomicupdate/bug_35369.pl (+19 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "BUG_NUMBER",
5
    description => "A single line description",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
10
        $dbh->do(
11
            q{
12
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
13
            ('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free')
14
        }
15
        );
16
17
        say $out "Added new system preference 'SIP2ScreenMessageGreeting'";
18
    },
19
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-47 / +18 lines)
Lines 1-5 Link Here
1
INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
1
INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
2
('1PageOrderPDFText', 'Order number must appear on all related correspondence, shipping papers and invoices. Notify us immediately if \n you are unable to supply item(s).', NULL, 'Text to be used above the order table in the 1-page order PDF file', 'textarea'),
3
('AccessControlAllowOrigin', '', NULL, 'Set the Access-Control-Allow-Origin header to the specified value', 'Free'),
2
('AccessControlAllowOrigin', '', NULL, 'Set the Access-Control-Allow-Origin header to the specified value', 'Free'),
4
('AccountAutoReconcile','0',NULL,'If enabled, patron balances will get reconciled automatically on each transaction.','YesNo'),
3
('AccountAutoReconcile','0',NULL,'If enabled, patron balances will get reconciled automatically on each transaction.','YesNo'),
5
('AcqCreateItem','ordering','ordering|receiving|cataloguing','Define when the item is created : when ordering, when receiving, or in cataloguing module','Choice'),
4
('AcqCreateItem','ordering','ordering|receiving|cataloguing','Define when the item is created : when ordering, when receiving, or in cataloguing module','Choice'),
Lines 36-42 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
36
('AllowHoldsOnPatronsPossessions','1',NULL,'Allow holds on records that patron have items of it','YesNo'),
35
('AllowHoldsOnPatronsPossessions','1',NULL,'Allow holds on records that patron have items of it','YesNo'),
37
('AllowItemsOnHoldCheckoutSCO','0','','Do not generate RESERVE_WAITING and RESERVED warning in the SCO module when checking out items reserved to someone else. This allows self checkouts for those items.','YesNo'),
36
('AllowItemsOnHoldCheckoutSCO','0','','Do not generate RESERVE_WAITING and RESERVED warning in the SCO module when checking out items reserved to someone else. This allows self checkouts for those items.','YesNo'),
38
('AllowItemsOnHoldCheckoutSIP','0','','Do not generate RESERVED warning when checking out items reserved to someone else via SIP. This allows self checkouts for those items.','YesNo'),
37
('AllowItemsOnHoldCheckoutSIP','0','','Do not generate RESERVED warning when checking out items reserved to someone else via SIP. This allows self checkouts for those items.','YesNo'),
39
('AllowItemsOnLoanCheckoutSIP','0','','Do not generate ISSUED_TO_ANOTHER warning when checking out items already checked out to someone else via SIP. This allows self checkouts for those items.','YesNo'),
40
('AllowMultipleCovers','0','1','Allow multiple cover images to be attached to each bibliographic record.','YesNo'),
38
('AllowMultipleCovers','0','1','Allow multiple cover images to be attached to each bibliographic record.','YesNo'),
41
('AllowMultipleIssuesOnABiblio',1,'Allow/Don\'t allow patrons to check out multiple items from one biblio','','YesNo'),
39
('AllowMultipleIssuesOnABiblio',1,'Allow/Don\'t allow patrons to check out multiple items from one biblio','','YesNo'),
42
('AllowNotForLoanOverride','0','','If ON, Koha will allow the librarian to loan a not for loan item.','YesNo'),
40
('AllowNotForLoanOverride','0','','If ON, Koha will allow the librarian to loan a not for loan item.','YesNo'),
Lines 78-84 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
78
('AuthorityMergeLimit','50',NULL,'Maximum number of biblio records updated immediately when an authority record has been modified.','integer'),
76
('AuthorityMergeLimit','50',NULL,'Maximum number of biblio records updated immediately when an authority record has been modified.','integer'),
79
('AuthorityMergeMode','loose','loose|strict','Authority merge mode','Choice'),
77
('AuthorityMergeMode','loose','loose|strict','Authority merge mode','Choice'),
80
('AuthoritySeparator','--','10','Used to separate a list of authorities in a display. Usually --','free'),
78
('AuthoritySeparator','--','10','Used to separate a list of authorities in a display. Usually --','free'),
81
('AuthorityXSLTDetailsDisplay','','','Enable XSL stylesheet control over authority details page display on intranet','Free'),
82
('AuthorityXSLTOpacDetailsDisplay','','','Enable XSL stylesheet control over authority details page in the OPAC','Free'),
79
('AuthorityXSLTOpacDetailsDisplay','','','Enable XSL stylesheet control over authority details page in the OPAC','Free'),
83
('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page in the OPAC','Free'),
80
('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page in the OPAC','Free'),
84
('AuthorityXSLTResultsDisplay','','','Enable XSL stylesheet control over authority results page display on intranet','Free'),
81
('AuthorityXSLTResultsDisplay','','','Enable XSL stylesheet control over authority results page display on intranet','Free'),
Lines 87-99 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
87
('AuthSuccessLog','0',NULL,'If enabled, log successful authentications','YesNo'),
84
('AuthSuccessLog','0',NULL,'If enabled, log successful authentications','YesNo'),
88
('AutoApprovePatronProfileSettings', '0', '', 'Automatically approve patron profile changes from the OPAC.', 'YesNo'),
85
('AutoApprovePatronProfileSettings', '0', '', 'Automatically approve patron profile changes from the OPAC.', 'YesNo'),
89
('autoBarcode','OFF','incremental|annual|hbyymmincr|EAN13|OFF','Used to autogenerate a barcode: incremental will be of the form 1, 2, 3; annual of the form 2007-0001, 2007-0002; hbyymmincr of the form HB08010001 where HB=Home Branch','Choice'),
86
('autoBarcode','OFF','incremental|annual|hbyymmincr|EAN13|OFF','Used to autogenerate a barcode: incremental will be of the form 1, 2, 3; annual of the form 2007-0001, 2007-0002; hbyymmincr of the form HB08010001 where HB=Home Branch','Choice'),
90
('AutoClaimReturnStatusOnCheckin','','NULL','When in use this system preference will automatically resolve the claim return and will update the lost authorized value upon check in.','Free'),
91
('AutoClaimReturnStatusOnCheckout','','NULL','When in use this system preference will automatically resolve the claim return and will update the lost authorized value upon check out.','Free'),
92
('autoControlNumber','OFF','biblionumber|OFF','Used to autogenerate a Control Number: biblionumber will be as biblionumber, OFF will leave the field as it is;','Choice'),
87
('autoControlNumber','OFF','biblionumber|OFF','Used to autogenerate a Control Number: biblionumber will be as biblionumber, OFF will leave the field as it is;','Choice'),
93
('AutoCreateAuthorities','0',NULL,'Automatically create authorities that do not exist when cataloging records.','YesNo'),
88
('AutoCreateAuthorities','0',NULL,'Automatically create authorities that do not exist when cataloging records.','YesNo'),
94
('AutoCreditNumber', '', '', 'Automatically generate a number for account credits', 'Choice'),
89
('AutoCreditNumber', '', '', 'Automatically generate a number for account credits', 'Choice'),
95
('AutoEmailNewUser','0',NULL,'Send an email to newly created patrons.','YesNo'),
90
('AutoEmailNewUser','0',NULL,'Send an email to newly created patrons.','YesNo'),
96
('AutoLinkBiblios','0',NULL,'If enabled, link biblio to authorities on creation and edit','YesNo'),
91
('AutoLinkBiblios','0',NULL,'If enabled, link biblio to authorities on creation and edit','YesNo'),
92
('AutoLocation','0',NULL,'If ON, IP authentication is enabled, blocking access to the staff interface from unauthorized IP addresses','YesNo'),
97
('AutomaticCheckinAutoFill','0',NULL,'Automatically fill the next hold with an automatic check in.','YesNo'),
93
('AutomaticCheckinAutoFill','0',NULL,'Automatically fill the next hold with an automatic check in.','YesNo'),
98
('AutomaticConfirmTransfer','0',NULL,'Defines whether transfers should be automatically confirmed at checkin if modal dismissed','YesNo'),
94
('AutomaticConfirmTransfer','0',NULL,'Defines whether transfers should be automatically confirmed at checkin if modal dismissed','YesNo'),
99
('AutomaticItemReturn','1',NULL,'If ON, Koha will automatically set up a transfer of this item to its homebranch','YesNo'),
95
('AutomaticItemReturn','1',NULL,'If ON, Koha will automatically set up a transfer of this item to its homebranch','YesNo'),
Lines 121-127 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
121
('BiblioDefaultView','normal','normal|marc|isbd','Choose the default detail view in the catalog; choose between normal, marc or isbd','Choice'),
117
('BiblioDefaultView','normal','normal|marc|isbd','Choose the default detail view in the catalog; choose between normal, marc or isbd','Choice'),
122
('BiblioItemtypeInfo','0','0','Control which itemtype info displays for biblio level itemtypes','YesNo'),
118
('BiblioItemtypeInfo','0','0','Control which itemtype info displays for biblio level itemtypes','YesNo'),
123
('BibtexExportAdditionalFields',  '', NULL ,  'Define additional BibTex tags to export from MARC records in YAML format as an associative array with either a marc tag/subfield combination as the value, or a list of tag/subfield combinations.',  'textarea'),
119
('BibtexExportAdditionalFields',  '', NULL ,  'Define additional BibTex tags to export from MARC records in YAML format as an associative array with either a marc tag/subfield combination as the value, or a list of tag/subfield combinations.',  'textarea'),
124
('BlockExpiredPatronOpacActions','','hold,renew,ill_request','Specific actions expired patrons of this category are blocked from performing. OPAC actions blocked based on the patron category take priority over this preference.','multiple'),
120
('BlockExpiredPatronOpacActions','1',NULL,'Set whether an expired patron can perform opac actions such as placing holds or renew books, can be overridden on a per patron-type basis','YesNo'),
125
('BlockReturnOfLostItems','0','0','If enabled, items that are marked as lost cannot be returned.','YesNo'),
121
('BlockReturnOfLostItems','0','0','If enabled, items that are marked as lost cannot be returned.','YesNo'),
126
('BlockReturnOfWithdrawnItems','1','0','If enabled, items that are marked as withdrawn cannot be returned.','YesNo'),
122
('BlockReturnOfWithdrawnItems','1','0','If enabled, items that are marked as withdrawn cannot be returned.','YesNo'),
127
('BorrowerMandatoryField','surname|cardnumber',NULL,'Choose the mandatory fields for a patron\'s account','free'),
123
('BorrowerMandatoryField','surname|cardnumber',NULL,'Choose the mandatory fields for a patron\'s account','free'),
Lines 154-160 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
154
('CheckPrevCheckout','hardno','hardyes|softyes|softno|hardno','By default, for every item checked out, should we warn if the patron has borrowed that item in the past?','Choice'),
150
('CheckPrevCheckout','hardno','hardyes|softyes|softno|hardno','By default, for every item checked out, should we warn if the patron has borrowed that item in the past?','Choice'),
155
('CheckPrevCheckoutDelay','0', NULL,'Maximum number of days that will trigger a warning if the patron has borrowed that item in the past when CheckPrevCheckout is enabled.','free'),
151
('CheckPrevCheckoutDelay','0', NULL,'Maximum number of days that will trigger a warning if the patron has borrowed that item in the past when CheckPrevCheckout is enabled.','free'),
156
('ChildNeedsGuarantor', 0, 'If ON, a child patron must have a guarantor when adding the patron.', '', 'YesNo'),
152
('ChildNeedsGuarantor', 0, 'If ON, a child patron must have a guarantor when adding the patron.', '', 'YesNo'),
157
('CircAutoPrintQuickSlip','qslip',NULL,'Choose what should happen when an empty barcode field is submitted in circulation: Display a print quick slip window, Display a print slip window, Do nothing, or Clear the screen.','Choice'),
153
('CircAutoPrintQuickSlip','qslip',NULL,'Choose what should happen when an empty barcode field is submitted in circulation: Display a print quick slip window, Display a print slip window or Clear the screen.','Choice'),
158
('CircConfirmItemParts', '0', NULL, 'Require staff to confirm that all parts of an item are present at checkin/checkout.', 'Yes/No'),
154
('CircConfirmItemParts', '0', NULL, 'Require staff to confirm that all parts of an item are present at checkin/checkout.', 'Yes/No'),
159
('CircControl','ItemHomeLibrary','PickupLibrary|PatronLibrary|ItemHomeLibrary','Specify the agency that controls the circulation and fines policy','Choice'),
155
('CircControl','ItemHomeLibrary','PickupLibrary|PatronLibrary|ItemHomeLibrary','Specify the agency that controls the circulation and fines policy','Choice'),
160
('CircControlReturnsBranch','ItemHomeLibrary','ItemHomeLibrary|ItemHoldingLibrary|CheckInLibrary','Specify the agency that controls the return policy','Choice'),
156
('CircControlReturnsBranch','ItemHomeLibrary','ItemHomeLibrary|ItemHoldingLibrary|CheckInLibrary','Specify the agency that controls the return policy','Choice'),
Lines 205-214 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
205
('DefaultLongOverdueChargeValue', '', NULL, "Charge a lost item to the borrower's account when the LOST value of the item changes to n.", 'integer'),
201
('DefaultLongOverdueChargeValue', '', NULL, "Charge a lost item to the borrower's account when the LOST value of the item changes to n.", 'integer'),
206
('DefaultLongOverdueDays', '', NULL, "Set the LOST value of an item when the item has been overdue for more than n days.", 'integer'),
202
('DefaultLongOverdueDays', '', NULL, "Set the LOST value of an item when the item has been overdue for more than n days.", 'integer'),
207
('DefaultLongOverdueLostValue', '', NULL, "Set the LOST value of an item to n when the item has been overdue for more than defaultlongoverduedays days.", 'integer'),
203
('DefaultLongOverdueLostValue', '', NULL, "Set the LOST value of an item to n when the item has been overdue for more than defaultlongoverduedays days.", 'integer'),
208
('DefaultLongOverduePatronCategories', '', NULL, "Set the patron categories that will be listed when longoverdue cronjob is executed", 'choice'),
209
('DefaultLongOverdueSkipLostStatuses', '', NULL, 'Skip these lost statuses by default in longoverdue.pl', 'Free'),
204
('DefaultLongOverdueSkipLostStatuses', '', NULL, 'Skip these lost statuses by default in longoverdue.pl', 'Free'),
210
('DefaultLongOverdueSkipPatronCategories', '', NULL, "Set the patron categories that will not be listed when longoverdue cronjob is executed", 'choice'),
205
('DefaultPatronSearchFields',    'firstname|middle_name|surname|othernames|cardnumber|userid',NULL,'Pipe separated list defining the default fields to be used during a patron search using the "standard" option. If empty Koha will default to "firstname|surname|othernames|cardnumber|userid". Additional fields added to this preference will be added as search options in the dropdown menu on the patron search page.','free'),
211
('DefaultPatronSearchFields',    'firstname|preferred_name|middle_name|surname|othernames|cardnumber|userid',NULL,'Pipe separated list defining the default fields to be used during a patron search using the "standard" option. If empty Koha will default to "firstname|surname|othernames|cardnumber|userid". Additional fields added to this preference will be added as search options in the dropdown menu on the patron search page.','free'),
212
('DefaultPatronSearchMethod','starts_with','Choose which search method to use by default when searching with PatronAutoComplete','starts_with|contains','Choice'),
206
('DefaultPatronSearchMethod','starts_with','Choose which search method to use by default when searching with PatronAutoComplete','starts_with|contains','Choice'),
213
('DefaultSaveRecordFileID','biblionumber','biblionumber|controlnumber','Defines whether the advanced cataloging editor will use the bibliographic record number or control number field to populate the name of the save file','Choice'),
207
('DefaultSaveRecordFileID','biblionumber','biblionumber|controlnumber','Defines whether the advanced cataloging editor will use the bibliographic record number or control number field to populate the name of the save file','Choice'),
214
('defaultSortField','relevance','relevance|popularity|call_number|pubdate|acqdate|title|author','Specify the default field used for sorting','Choice'),
208
('defaultSortField','relevance','relevance|popularity|call_number|pubdate|acqdate|title|author','Specify the default field used for sorting','Choice'),
Lines 221-227 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
221
('displayFacetCount','0',NULL,NULL,'YesNo'),
215
('displayFacetCount','0',NULL,NULL,'YesNo'),
222
('DisplayIconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.','YesNo'),
216
('DisplayIconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.','YesNo'),
223
('DisplayLibraryFacets',  'holding',  'home|holding|both',  'Defines which library facets to display.',  'Choice'),
217
('DisplayLibraryFacets',  'holding',  'home|holding|both',  'Defines which library facets to display.',  'Choice'),
224
('DisplayMultiItemHolds','0','','Display the ability to place holds on different items at the same time in staff interface and OPAC','YesNo'),
225
('DisplayMultiPlaceHold','1','','Display the ability to place multiple holds or not','YesNo'),
218
('DisplayMultiPlaceHold','1','','Display the ability to place multiple holds or not','YesNo'),
226
('DisplayOPACiconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages in the OPAC.','YesNo'),
219
('DisplayOPACiconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages in the OPAC.','YesNo'),
227
('DumpSearchQueryTemplate',0,'','Add the search query being passed to the search engine into the template for debugging','YesNo'),
220
('DumpSearchQueryTemplate',0,'','Add the search query being passed to the search engine into the template for debugging','YesNo'),
Lines 238-245 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
238
('EmailAddressForPatronRegistrations', '', '', ' If you choose EmailAddressForPatronRegistrations you have to enter a valid email address: ', 'free'),
231
('EmailAddressForPatronRegistrations', '', '', ' If you choose EmailAddressForPatronRegistrations you have to enter a valid email address: ', 'free'),
239
('EmailAddressForSuggestions','','',' If you choose EmailAddressForSuggestions you have to enter a valid email address: ','free'),
232
('EmailAddressForSuggestions','','',' If you choose EmailAddressForSuggestions you have to enter a valid email address: ','free'),
240
('EmailFieldPrecedence','email|emailpro|B_email','','Ordered list of patron email fields to use when AutoEmailPrimaryAddress is set to first valid','multiple'),
233
('EmailFieldPrecedence','email|emailpro|B_email','','Ordered list of patron email fields to use when AutoEmailPrimaryAddress is set to first valid','multiple'),
241
('EmailFieldPrimary','','|email|emailpro|B_email|cardnumber|MULTI','Defines the default email address field where patron email notices are sent.','Choice'),
234
('EmailFieldPrimary','OFF','email|emailpro|B_email|cardnumber|OFF','Defines the default email address field where patron email notices are sent.','Choice'),
242
('EmailFieldSelection','','email|emailpro|B_email','Selection list of patron email fields to use whern AutoEmailPrimaryAddress is set to selected addresses','multiple'),
243
('emailLibrarianWhenHoldIsPlaced','0',NULL,'If ON, emails the librarian whenever a hold is placed','YesNo'),
235
('emailLibrarianWhenHoldIsPlaced','0',NULL,'If ON, emails the librarian whenever a hold is placed','YesNo'),
244
('EmailOverduesNoEmail','1',NULL,'Send send overdues of patrons without email address to staff','YesNo'),
236
('EmailOverduesNoEmail','1',NULL,'Send send overdues of patrons without email address to staff','YesNo'),
245
('EmailPatronRegistrations', '0', '0|EmailAddressForPatronRegistrations|BranchEmailAddress|KohaAdminEmailAddress', 'Choose email address that new patron registrations will be sent to: ', 'Choice'),
237
('EmailPatronRegistrations', '0', '0|EmailAddressForPatronRegistrations|BranchEmailAddress|KohaAdminEmailAddress', 'Choose email address that new patron registrations will be sent to: ', 'Choice'),
Lines 285-291 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
285
('FinesLog','1',NULL,'If ON, log fines','YesNo'),
277
('FinesLog','1',NULL,'If ON, log fines','YesNo'),
286
('finesMode','off','off|production','Choose the fines mode, \'off\' (no charges), \'production\' (accrue overdue fines).  Requires accruefines cronjob.','Choice'),
278
('finesMode','off','off|production','Choose the fines mode, \'off\' (no charges), \'production\' (accrue overdue fines).  Requires accruefines cronjob.','Choice'),
287
('ForceLibrarySelection','0',NULL,'Force staff to select a library when logging into the staff interface.','YesNo'),
279
('ForceLibrarySelection','0',NULL,'Force staff to select a library when logging into the staff interface.','YesNo'),
288
('ForcePasswordResetWhenSetByStaff','0',NULL,'Force a staff created patron account to reset its password after its first OPAC login.','YesNo'),
289
('FRBRizeEditions','0','','If ON, Koha will query one or more ISBN web services for associated ISBNs and display an Editions tab on the details pages','YesNo'),
280
('FRBRizeEditions','0','','If ON, Koha will query one or more ISBN web services for associated ISBNs and display an Editions tab on the details pages','YesNo'),
290
('GenerateAuthorityField667', 'Machine generated authority record', NULL, 'When BiblioAddsAuthorities and AutoCreateAuthorities are enabled, use this as a default value for the 667$a field of MARC21 records', 'free'),
281
('GenerateAuthorityField667', 'Machine generated authority record', NULL, 'When BiblioAddsAuthorities and AutoCreateAuthorities are enabled, use this as a default value for the 667$a field of MARC21 records', 'free'),
291
('GenerateAuthorityField670', 'Work cat.', NULL, 'When BiblioAddsAuthorities and AutoCreateAuthorities are enabled, use this as a default value for the 670$a field of MARC21 records', 'free'),
282
('GenerateAuthorityField670', 'Work cat.', NULL, 'When BiblioAddsAuthorities and AutoCreateAuthorities are enabled, use this as a default value for the 670$a field of MARC21 records', 'free'),
Lines 308-314 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
308
('HoldsAutoFillPrintSlip','0',NULL,'If on, hold slip print dialog will be displayed automatically','YesNo'),
299
('HoldsAutoFillPrintSlip','0',NULL,'If on, hold slip print dialog will be displayed automatically','YesNo'),
309
('HoldsLog','0',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo'),
300
('HoldsLog','0',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo'),
310
('HoldsNeedProcessingSIP', '0', NULL, 'Require staff to check-in before hold is set to waiting state', 'YesNo' ),
301
('HoldsNeedProcessingSIP', '0', NULL, 'Require staff to check-in before hold is set to waiting state', 'YesNo' ),
311
('HoldsQueueParallelLoopsCount', '1', NULL, 'Number of parallel loops to use when running the holds queue builder', 'Integer'),
312
('HoldsQueuePrioritizeBranch','homebranch','holdingbranch|homebranch','Decides if holds queue builder patron home library match to home or holding branch','Choice'),
302
('HoldsQueuePrioritizeBranch','homebranch','holdingbranch|homebranch','Decides if holds queue builder patron home library match to home or holding branch','Choice'),
313
('HoldsQueueSkipClosed', '0', NULL, 'If enabled, any libraries that are closed when the holds queue is built will be ignored for the purpose of filling holds.', 'YesNo'),
303
('HoldsQueueSkipClosed', '0', NULL, 'If enabled, any libraries that are closed when the holds queue is built will be ignored for the purpose of filling holds.', 'YesNo'),
314
('HoldsSplitQueue','nothing','nothing|branch|itemtype|branch_itemtype','In the staff interface, split the holds view by the given criteria','Choice'),
304
('HoldsSplitQueue','nothing','nothing|branch|itemtype|branch_itemtype','In the staff interface, split the holds view by the given criteria','Choice'),
Lines 325-330 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
325
('ILLHiddenRequestStatuses', NULL, NULL, 'ILL statuses that are considered finished and should not be displayed in the ILL module', 'multiple'),
315
('ILLHiddenRequestStatuses', NULL, NULL, 'ILL statuses that are considered finished and should not be displayed in the ILL module', 'multiple'),
326
('IllLog', 0, '', 'If ON, log information about ILL requests', 'YesNo'),
316
('IllLog', 0, '', 'If ON, log information about ILL requests', 'YesNo'),
327
('ILLModule','0','If ON, enables the interlibrary loans module.','','YesNo'),
317
('ILLModule','0','If ON, enables the interlibrary loans module.','','YesNo'),
318
('ILLModuleCopyrightClearance','','70|10','Enter text to enable the copyright clearance stage of request creation. Text will be displayed','Textarea'),
328
('ILLModuleDisclaimerByType','','','YAML defining disclaimer settings for each ILL request type','Textarea'),
319
('ILLModuleDisclaimerByType','','','YAML defining disclaimer settings for each ILL request type','Textarea'),
329
('ILLModuleUnmediated','0','','If enabled, try to immediately progress newly placed ILL requests.','YesNo'),
320
('ILLModuleUnmediated','0','','If enabled, try to immediately progress newly placed ILL requests.','YesNo'),
330
('ILLOpacbackends',NULL,NULL,'ILL backends to enabled for OPAC initiated requests','multiple'),
321
('ILLOpacbackends',NULL,NULL,'ILL backends to enabled for OPAC initiated requests','multiple'),
Lines 333-339 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
333
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
324
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
334
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
325
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
335
('ImageLimit','5','','Limit images stored in the database by the Patron Card image manager to this number.','Integer'),
326
('ImageLimit','5','','Limit images stored in the database by the Patron Card image manager to this number.','Integer'),
336
('IncludeSeeAlsoFromInSearches','0','','Include see-also-from references in searches.','YesNo'),
337
('IncludeSeeFromInSearches','0','','Include see-from references in searches.','YesNo'),
327
('IncludeSeeFromInSearches','0','','Include see-from references in searches.','YesNo'),
338
('IndependentBranches','0',NULL,'If ON, increases security between libraries','YesNo'),
328
('IndependentBranches','0',NULL,'If ON, increases security between libraries','YesNo'),
339
('IndependentBranchesPatronModifications','0', NULL, 'Show only modification request for the logged in branch','YesNo'),
329
('IndependentBranchesPatronModifications','0', NULL, 'Show only modification request for the logged in branch','YesNo'),
Lines 346-351 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
346
('IntranetCoce','0', NULL, 'If on, enables cover retrieval from the configured Coce server in the staff interface', 'YesNo'),
336
('IntranetCoce','0', NULL, 'If on, enables cover retrieval from the configured Coce server in the staff interface', 'YesNo'),
347
('intranetcolorstylesheet','','50','Define the color stylesheet to use in the staff interface','free'),
337
('intranetcolorstylesheet','','50','Define the color stylesheet to use in the staff interface','free'),
348
('IntranetFavicon','','','Enter a complete URL to an image to replace the default Koha favicon on the staff interface','free'),
338
('IntranetFavicon','','','Enter a complete URL to an image to replace the default Koha favicon on the staff interface','free'),
339
('IntranetmainUserblock','','70|10','Add a block of HTML that will display on the intranet home page','Textarea'),
349
('IntranetNav','','70|10','Use HTML tabs to add navigational links to the top-hand navigational bar in the staff interface','Textarea'),
340
('IntranetNav','','70|10','Use HTML tabs to add navigational links to the top-hand navigational bar in the staff interface','Textarea'),
350
('IntranetNumbersPreferPhrase','0',NULL,'Control the use of phr operator in callnumber and standard number staff interface searches','YesNo'),
341
('IntranetNumbersPreferPhrase','0',NULL,'Control the use of phr operator in callnumber and standard number staff interface searches','YesNo'),
351
('intranetreadinghistory','1','','If ON, Checkout history is enabled for all patrons','YesNo'),
342
('intranetreadinghistory','1','','If ON, Checkout history is enabled for all patrons','YesNo'),
Lines 365-375 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
365
('itemBarcodeInputFilter','','whitespace|T-prefix|cuecat|libsuite8|EAN13','If set, allows specification of a item barcode input filter','Choice'),
356
('itemBarcodeInputFilter','','whitespace|T-prefix|cuecat|libsuite8|EAN13','If set, allows specification of a item barcode input filter','Choice'),
366
('itemcallnumber','',NULL,'The MARC field/subfield that is used to calculate the itemcallnumber (Dewey would be 082ab or 092ab; LOC would be 050ab or 090ab) could be 852hi from an item record','free'),
357
('itemcallnumber','',NULL,'The MARC field/subfield that is used to calculate the itemcallnumber (Dewey would be 082ab or 092ab; LOC would be 050ab or 090ab) could be 852hi from an item record','free'),
367
('ItemsDeniedRenewal','','','This syspref allows to define custom rules for denying renewal of specific items.','Textarea'),
358
('ItemsDeniedRenewal','','','This syspref allows to define custom rules for denying renewal of specific items.','Textarea'),
368
('JobsNotificationMethod','STOMP','polling|STOMP','Define the preferred job worker notification method','Choice'),
369
('KohaAdminEmailAddress','root@localhost','','Define the email address where patron modification requests are sent','free'),
359
('KohaAdminEmailAddress','root@localhost','','Define the email address where patron modification requests are sent','free'),
370
('KohaManualBaseURL','https://koha-community.org/manual/','','Where is the Koha manual/documentation located?','Free'),
360
('KohaManualBaseURL','https://koha-community.org/manual/','','Where is the Koha manual/documentation located?','Free'),
371
('KohaManualLanguage','en','en|ar|cs|de|es|fr|it|pt_BR|tr|zh_TW','What is the language of the online manual you want to use?','Choice'),
361
('KohaManualLanguage','en','en|ar|cs|de|es|fr|it|pt_BR|tr|zh_TW','What is the language of the online manual you want to use?','Choice'),
372
('LabelMARCView','standard','standard|economical','Define how a MARC record will display','Choice'),
362
('LabelMARCView','standard','standard|economical','Define how a MARC record will display','Choice'),
363
('language','en',NULL,'Set the default language in the staff interface.','Languages'),
373
('LibraryName','','','Define the library name as displayed on the OPAC',''),
364
('LibraryName','','','Define the library name as displayed on the OPAC',''),
374
('LibraryThingForLibrariesEnabled','0','','Enable or Disable Library Thing for Libraries Features','YesNo'),
365
('LibraryThingForLibrariesEnabled','0','','Enable or Disable Library Thing for Libraries Features','YesNo'),
375
('LibraryThingForLibrariesID','','','See:http://librarything.com/forlibraries/','free'),
366
('LibraryThingForLibrariesID','','','See:http://librarything.com/forlibraries/','free'),
Lines 401-407 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
401
('MarcFieldForModifierName','',NULL,'Where to store the name of the record''s last modifier','Free'),
392
('MarcFieldForModifierName','',NULL,'Where to store the name of the record''s last modifier','Free'),
402
('MarcFieldsToOrder','',NULL,'Set the mapping values for a new order line created from a MARC record in a staged file. In a YAML format.','textarea'),
393
('MarcFieldsToOrder','',NULL,'Set the mapping values for a new order line created from a MARC record in a staged file. In a YAML format.','textarea'),
403
('MarcItemFieldsToOrder','',NULL,'Set the mapping values for new item records created from a MARC record in a staged file. In a YAML format.','textarea'),
394
('MarcItemFieldsToOrder','',NULL,'Set the mapping values for new item records created from a MARC record in a staged file. In a YAML format.','textarea'),
404
('MarcOrderingAutomation','0',NULL,'Enables automatic order line creation from MARC records','YesNo'),
405
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
395
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
406
('MARCOverlayRules','0',NULL,'Use the MARC record overlay rules system to decide what actions to take for each field when modifying records.','YesNo'),
396
('MARCOverlayRules','0',NULL,'Use the MARC record overlay rules system to decide what actions to take for each field when modifying records.','YesNo'),
407
('MarkLostItemsAsReturned','batchmod,moredetail,cronjob,additem,pendingreserves,onpayment','claim_returned|batchmod|moredetail|cronjob|additem|pendingreserves|onpayment','Mark items as returned when flagged as lost','multiple'),
397
('MarkLostItemsAsReturned','batchmod,moredetail,cronjob,additem,pendingreserves,onpayment','claim_returned|batchmod|moredetail|cronjob|additem|pendingreserves|onpayment','Mark items as returned when flagged as lost','multiple'),
Lines 427-433 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
427
('NoIssuesChargeGuarantees','','','Define maximum amount withstanding before checkouts are blocked','Integer'),
417
('NoIssuesChargeGuarantees','','','Define maximum amount withstanding before checkouts are blocked','Integer'),
428
('NoIssuesChargeGuarantorsWithGuarantees','','','Define maximum amount withstanding before checkouts are blocked including guarantors and their other guarantees','Integer'),
418
('NoIssuesChargeGuarantorsWithGuarantees','','','Define maximum amount withstanding before checkouts are blocked including guarantors and their other guarantees','Integer'),
429
('noItemTypeImages','0',NULL,'If ON, disables itemtype images in the staff interface','YesNo'),
419
('noItemTypeImages','0',NULL,'If ON, disables itemtype images in the staff interface','YesNo'),
430
('NoRefundOnLostFinesPaidAge','','','Do not refund lost item fees if the fee was paid off more than this number of days ago','Integer'),
431
('NoRefundOnLostReturnedItemsAge','','','Do not refund lost item fees if item is lost for more than this number of days','Integer'),
420
('NoRefundOnLostReturnedItemsAge','','','Do not refund lost item fees if item is lost for more than this number of days','Integer'),
432
('NoRenewalBeforePrecision','exact_time','date|exact_time','Calculate "No renewal before" based on date only or exact time of due date','Choice'),
421
('NoRenewalBeforePrecision','exact_time','date|exact_time','Calculate "No renewal before" based on date only or exact time of due date','Choice'),
433
('NotesToHide','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'),
422
('NotesToHide','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'),
Lines 455-461 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
455
('OAI-PMH:AutoUpdateSetsEmbedItemData', '0', '', 'Embed item information when automatically updating OAI sets. Requires OAI-PMH:AutoUpdateSets syspref to be enabled', 'YesNo'),
444
('OAI-PMH:AutoUpdateSetsEmbedItemData', '0', '', 'Embed item information when automatically updating OAI sets. Requires OAI-PMH:AutoUpdateSets syspref to be enabled', 'YesNo'),
456
('OAI-PMH:ConfFile','',NULL,'If empty, Koha OAI Server operates in normal mode, otherwise it operates in extended mode.','File'),
445
('OAI-PMH:ConfFile','',NULL,'If empty, Koha OAI Server operates in normal mode, otherwise it operates in extended mode.','File'),
457
('OAI-PMH:DeletedRecord','persistent','Koha\'s deletedbiblio table will never be deleted (persistent), might be deleted (transient), or will never have any data in it (no)','transient|persistent|no','Choice'),
446
('OAI-PMH:DeletedRecord','persistent','Koha\'s deletedbiblio table will never be deleted (persistent), might be deleted (transient), or will never have any data in it (no)','transient|persistent|no','Choice'),
458
('OAI-PMH:HarvestEmailReport','','','After an OAI-PMH harvest, send a report email to the email address','Free'),
459
('OAI-PMH:MaxCount','50',NULL,'OAI-PMH maximum number of records by answer to ListRecords and ListIdentifiers queries','Integer'),
447
('OAI-PMH:MaxCount','50',NULL,'OAI-PMH maximum number of records by answer to ListRecords and ListIdentifiers queries','Integer'),
460
('OnSiteCheckoutAutoCheck','0','','Enable/Do not enable onsite checkout by default if last checkout was an onsite checkout','YesNo'),
448
('OnSiteCheckoutAutoCheck','0','','Enable/Do not enable onsite checkout by default if last checkout was an onsite checkout','YesNo'),
461
('OnSiteCheckouts','0','','Enable/Disable the on-site checkouts feature','YesNo'),
449
('OnSiteCheckouts','0','','Enable/Disable the on-site checkouts feature','YesNo'),
Lines 472-478 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
472
('OPACAllowUserToChangeBranch','','Pending, In-Transit, Suspended','Allow users to change the library to pick up a hold for these statuses:','multiple'),
460
('OPACAllowUserToChangeBranch','','Pending, In-Transit, Suspended','Allow users to change the library to pick up a hold for these statuses:','multiple'),
473
('OPACAllowUserToChooseBranch','1','1','Allow the user to choose the branch they want to pickup their hold from','YesNo'),
461
('OPACAllowUserToChooseBranch','1','1','Allow the user to choose the branch they want to pickup their hold from','YesNo'),
474
('OPACAmazonCoverImages','0','','Display cover images on OPAC from Amazon Web Services','YesNo'),
462
('OPACAmazonCoverImages','0','','Display cover images on OPAC from Amazon Web Services','YesNo'),
475
('OPACAuthorIdentifiersAndInformation', '', '', 'Display author information on the OPAC detail page','multiple_sortable'),
463
('OPACAuthorIdentifiers','0','','Display author identifiers on the OPAC detail page','YesNo'),
476
('OpacAuthorities','1',NULL,'If ON, enables the search authorities link on OPAC','YesNo'),
464
('OpacAuthorities','1',NULL,'If ON, enables the search authorities link on OPAC','YesNo'),
477
('OPACBaseURL','',NULL,'Specify the Base URL of the OPAC, e.g., http://opac.mylibrary.com, including the protocol (http:// or https://). Otherwise, the http:// will be added automatically by Koha upon saving.','Free'),
465
('OPACBaseURL','',NULL,'Specify the Base URL of the OPAC, e.g., http://opac.mylibrary.com, including the protocol (http:// or https://). Otherwise, the http:// will be added automatically by Koha upon saving.','Free'),
478
('opacbookbag','1','','If ON, enables display of Cart feature','YesNo'),
466
('opacbookbag','1','','If ON, enables display of Cart feature','YesNo'),
Lines 508-514 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
508
('OPACHoldsIfAvailableAtPickup','1','','Allow patrons to place a hold at pickup locations (libraries) where the item is available','YesNo'),
496
('OPACHoldsIfAvailableAtPickup','1','','Allow patrons to place a hold at pickup locations (libraries) where the item is available','YesNo'),
509
('OPACHoldsIfAvailableAtPickupExceptions','','','List the patron categories not affected by OPACHoldsIfAvailableAtPickup if off','Free'),
497
('OPACHoldsIfAvailableAtPickupExceptions','','','List the patron categories not affected by OPACHoldsIfAvailableAtPickup if off','Free'),
510
('OPACISBD','#100||{ 100a }{ 100b }{ 100c }{ 100d }{ 110a }{ 110b }{ 110c }{ 110d }{ 110e }{ 110f }{ 110g }{ 130a }{ 130d }{ 130f }{ 130g }{ 130h }{ 130k }{ 130l }{ 130m }{ 130n }{ 130o }{ 130p }{ 130r }{ 130s }{ 130t }|<br/><br/>\r\n#245||{ 245a }{ 245b }{245f }{ 245g }{ 245k }{ 245n }{ 245p }{ 245s }{ 245h }|\r\n#246||{ : 246i }{ 246a }{ 246b }{ 246f }{ 246g }{ 246n }{ 246p }{ 246h }|\r\n#242||{ = 242a }{ 242b }{ 242n }{ 242p }{ 242h }|\r\n#245||{ 245c }|\r\n#242||{ = 242c }|\r\n#250| - |{ 250a }{ 250b }|\r\n#254|, |{ 254a }|\r\n#255|, |{ 255a }{ 255b }{ 255c }{ 255d }{ 255e }{ 255f }{ 255g }|\r\n#256|, |{ 256a }|\r\n#257|, |{ 257a }|\r\n#258|, |{ 258a }{ 258b }|\r\n#260| - |{ 260a }{ 260b }{ 260c }|\r\n#300| - |{ 300a }{ 300b }{ 300c }{ 300d }{ 300e }{ 300f }{ 300g }|\r\n#306| - |{ 306a }|\r\n#307| - |{ 307a }{ 307b }|\r\n#310| - |{ 310a }{ 310b }|\r\n#321| - |{ 321a }{ 321b }|\r\n#340| - |{ 3403 }{ 340a }{ 340b }{ 340c }{ 340d }{ 340e }{ 340f }{ 340h }{ 340i }|\r\n#342| - |{ 342a }{ 342b }{ 342c }{ 342d }{ 342e }{ 342f }{ 342g }{ 342h }{ 342i }{ 342j }{ 342k }{ 342l }{ 342m }{ 342n }{ 342o }{ 342p }{ 342q }{ 342r }{ 342s }{ 342t }{ 342u }{ 342v }{ 342w }|\r\n#343| - |{ 343a }{ 343b }{ 343c }{ 343d }{ 343e }{ 343f }{ 343g }{ 343h }{ 343i }|\r\n#351| - |{ 3513 }{ 351a }{ 351b }{ 351c }|\r\n#352| - |{ 352a }{ 352b }{ 352c }{ 352d }{ 352e }{ 352f }{ 352g }{ 352i }{ 352q }|\r\n#362| - |{ 362a }{ 351z }|\r\n#440| - |{ 440a }{ 440n }{ 440p }{ 440v }{ 440x }|.\r\n#490| - |{ 490a }{ 490v }{ 490x }|.\r\n#800| - |{ 800a }{ 800b }{ 800c }{ 800d }{ 800e }{ 800f }{ 800g }{ 800h }{ 800j }{ 800k }{ 800l }{ 800m }{ 800n }{ 800o }{ 800p }{ 800q }{ 800r }{ 800s }{ 800t }{ 800u }{ 800v }|.\r\n#810| - |{ 810a }{ 810b }{ 810c }{ 810d }{ 810e }{ 810f }{ 810g }{ 810h }{ 810k }{ 810l }{ 810m }{ 810n }{ 810o }{ 810p }{ 810r }{ 810s }{ 810t }{ 810u }{ 810v }|.\r\n#811| - |{ 811a }{ 811c }{ 811d }{ 811e }{ 811f }{ 811g }{ 811h }{ 811k }{ 811l }{ 811n }{ 811p }{ 811q }{ 811s }{ 811t }{ 811u }{ 811v }|.\r\n#830| - |{ 830a }{ 830d }{ 830f }{ 830g }{ 830h }{ 830k }{ 830l }{ 830m }{ 830n }{ 830o }{ 830p }{ 830r }{ 830s }{ 830t }{ 830v }|.\r\n#500|<br/><br/>|{ 5003 }{ 500a }|\r\n#501|<br/><br/>|{ 501a }|\r\n#502|<br/><br/>|{ 502a }|\r\n#504|<br/><br/>|{ 504a }|\r\n#505|<br/><br/>|{ 505a }{ 505t }{ 505r }{ 505g }{ 505u }|\r\n#506|<br/><br/>|{ 5063 }{ 506a }{ 506b }{ 506c }{ 506d }{ 506u }|\r\n#507|<br/><br/>|{ 507a }{ 507b }|\r\n#508|<br/><br/>|{ 508a }{ 508a }|\r\n#510|<br/><br/>|{ 5103 }{ 510a }{ 510x }{ 510c }{ 510b }|\r\n#511|<br/><br/>|{ 511a }|\r\n#513|<br/><br/>|{ 513a }{513b }|\r\n#514|<br/><br/>|{ 514z }{ 514a }{ 514b }{ 514c }{ 514d }{ 514e }{ 514f }{ 514g }{ 514h }{ 514i }{ 514j }{ 514k }{ 514m }{ 514u }|\r\n#515|<br/><br/>|{ 515a }|\r\n#516|<br/><br/>|{ 516a }|\r\n#518|<br/><br/>|{ 5183 }{ 518a }|\r\n#520|<br/><br/>|{ 5203 }{ 520a }{ 520b }{ 520u }|\r\n#521|<br/><br/>|{ 5213 }{ 521a }{ 521b }|\r\n#522|<br/><br/>|{ 522a }|\r\n#524|<br/><br/>|{ 524a }|\r\n#525|<br/><br/>|{ 525a }|\r\n#526|<br/><br/>|{\\n510i }{\\n510a }{ 510b }{ 510c }{ 510d }{\\n510x }|\r\n#530|<br/><br/>|{\\n5063 }{\\n506a }{ 506b }{ 506c }{ 506d }{\\n506u }|\r\n#533|<br/><br/>|{\\n5333 }{\\n533a }{\\n533b }{\\n533c }{\\n533d }{\\n533e }{\\n533f }{\\n533m }{\\n533n }|\r\n#534|<br/><br/>|{\\n533p }{\\n533a }{\\n533b }{\\n533c }{\\n533d }{\\n533e }{\\n533f }{\\n533m }{\\n533n }{\\n533t }{\\n533x }{\\n533z }|\r\n#535|<br/><br/>|{\\n5353 }{\\n535a }{\\n535b }{\\n535c }{\\n535d }|\r\n#538|<br/><br/>|{\\n5383 }{\\n538a }{\\n538i }{\\n538u }|\r\n#540|<br/><br/>|{\\n5403 }{\\n540a }{ 540b }{ 540c }{ 540d }{\\n520u }|\r\n#544|<br/><br/>|{\\n5443 }{\\n544a }{\\n544b }{\\n544c }{\\n544d }{\\n544e }{\\n544n }|\r\n#545|<br/><br/>|{\\n545a }{ 545b }{\\n545u }|\r\n#546|<br/><br/>|{\\n5463 }{\\n546a }{ 546b }|\r\n#547|<br/><br/>|{\\n547a }|\r\n#550|<br/><br/>|{ 550a }|\r\n#552|<br/><br/>|{ 552z }{ 552a }{ 552b }{ 552c }{ 552d }{ 552e }{ 552f }{ 552g }{ 552h }{ 552i }{ 552j }{ 552k }{ 552l }{ 552m }{ 552n }{ 562o }{ 552p }{ 552u }|\r\n#555|<br/><br/>|{ 5553 }{ 555a }{ 555b }{ 555c }{ 555d }{ 555u }|\r\n#556|<br/><br/>|{ 556a }{ 506z }|\r\n#563|<br/><br/>|{ 5633 }{ 563a }{ 563u }|\r\n#565|<br/><br/>|{ 5653 }{ 565a }{ 565b }{ 565c }{ 565d }{ 565e }|\r\n#567|<br/><br/>|{ 567a }|\r\n#580|<br/><br/>|{ 580a }|\r\n#581|<br/><br/>|{ 5633 }{ 581a }{ 581z }|\r\n#584|<br/><br/>|{ 5843 }{ 584a }{ 584b }|\r\n#585|<br/><br/>|{ 5853 }{ 585a }|\r\n#586|<br/><br/>|{ 5863 }{ 586a }|\r\n#020|<br/><br/><label>ISBN: </label>|{ 020a }{ 020c }|\r\n#022|<br/><br/><label>ISSN: </label>|{ 022a }|\r\n#222| = |{ 222a }{ 222b }|\r\n#210| = |{ 210a }{ 210b }|\r\n#024|<br/><br/><label>Standard No.: </label>|{ 024a }{ 024c }{ 024d }{ 0242 }|\r\n#027|<br/><br/><label>Standard Tech. Report. No.: </label>|{ 027a }|\r\n#028|<br/><br/><label>Publisher. No.: </label>|{ 028a }{ 028b }|\r\n#013|<br/><br/><label>Patent No.: </label>|{ 013a }{ 013b }{ 013c }{ 013d }{ 013e }{ 013f }|\r\n#030|<br/><br/><label>CODEN: </label>|{ 030a }|\r\n#037|<br/><br/><label>Source: </label>|{ 037a }{ 037b }{ 037c }{ 037f }{ 037g }{ 037n }|\r\n#010|<br/><br/><label>LCCN: </label>|{ 010a }|\r\n#015|<br/><br/><label>Nat. Bib. No.: </label>|{ 015a }{ 0152 }|\r\n#016|<br/><br/><label>Nat. Bib. Agency Control No.: </label>|{ 016a }{ 0162 }|\r\n#600|<br/><br/><label>Subjects--Personal Names: </label>|{\\n6003 }{\\n600a}{ 600b }{ 600c }{ 600d }{ 600e }{ 600f }{ 600g }{ 600h }{--600k}{ 600l }{ 600m }{ 600n }{ 600o }{--600p}{ 600r }{ 600s }{ 600t }{ 600u }{--600x}{--600z}{--600y}{--600v}|\r\n#610|<br/><br/><label>Subjects--Corporate Names: </label>|{\\n6103 }{\\n610a}{ 610b }{ 610c }{ 610d }{ 610e }{ 610f }{ 610g }{ 610h }{--610k}{ 610l }{ 610m }{ 610n }{ 610o }{--610p}{ 610r }{ 610s }{ 610t }{ 610u }{--610x}{--610z}{--610y}{--610v}|\r\n#611|<br/><br/><label>Subjects--Meeting Names: </label>|{\\n6113 }{\\n611a}{ 611b }{ 611c }{ 611d }{ 611e }{ 611f }{ 611g }{ 611h }{--611k}{ 611l }{ 611m }{ 611n }{ 611o }{--611p}{ 611r }{ 611s }{ 611t }{ 611u }{--611x}{--611z}{--611y}{--611v}|\r\n#630|<br/><br/><label>Subjects--Uniform Titles: </label>|{\\n630a}{ 630b }{ 630c }{ 630d }{ 630e }{ 630f }{ 630g }{ 630h }{--630k }{ 630l }{ 630m }{ 630n }{ 630o }{--630p}{ 630r }{ 630s }{ 630t }{--630x}{--630z}{--630y}{--630v}|\r\n#648|<br/><br/><label>Subjects--Chronological Terms: </label>|{\\n6483 }{\\n648a }{--648x}{--648z}{--648y}{--648v}|\r\n#650|<br/><br/><label>Subjects--Topical Terms: </label>|{\\n6503 }{\\n650a}{ 650b }{ 650c }{ 650d }{ 650e }{--650x}{--650z}{--650y}{--650v}|\r\n#651|<br/><br/><label>Subjects--Geographic Terms: </label>|{\\n6513 }{\\n651a}{ 651b }{ 651c }{ 651d }{ 651e }{--651x}{--651z}{--651y}{--651v}|\r\n#653|<br/><br/><label>Subjects--Index Terms: </label>|{ 653a }|\r\n#654|<br/><br/><label>Subjects--Facted Index Terms: </label>|{\\n6543 }{\\n654a}{--654b}{--654x}{--654z}{--654y}{--654v}|\r\n#655|<br/><br/><label>Index Terms--Genre/Form: </label>|{\\n6553 }{\\n655a}{--655b}{--655x }{--655z}{--655y}{--655v}|\r\n#656|<br/><br/><label>Index Terms--Occupation: </label>|{\\n6563 }{\\n656a}{--656k}{--656x}{--656z}{--656y}{--656v}|\r\n#657|<br/><br/><label>Index Terms--Function: </label>|{\\n6573 }{\\n657a}{--657x}{--657z}{--657y}{--657v}|\r\n#658|<br/><br/><label>Index Terms--Curriculum Objective: </label>|{\\n658a}{--658b}{--658c}{--658d}{--658v}|\r\n#050|<br/><br/><label>LC Class. No.: </label>|{ 050a }{ / 050b }|\r\n#082|<br/><br/><label>Dewey Class. No.: </label>|{ 082a }{ / 082b }|\r\n#080|<br/><br/><label>Universal Decimal Class. No.: </label>|{ 080a }{ 080x }{ / 080b }|\r\n#070|<br/><br/><label>National Agricultural Library Call No.: </label>|{ 070a }{ / 070b }|\r\n#060|<br/><br/><label>National Library of Medicine Call No.: </label>|{ 060a }{ / 060b }|\r\n#074|<br/><br/><label>GPO Item No.: </label>|{ 074a }|\r\n#086|<br/><br/><label>Gov. Doc. Class. No.: </label>|{ 086a }|\r\n#088|<br/><br/><label>Report. No.: </label>|{ 088a }|','70|10','OPAC ISBD','Textarea'),
498
('OPACISBD','#100||{ 100a }{ 100b }{ 100c }{ 100d }{ 110a }{ 110b }{ 110c }{ 110d }{ 110e }{ 110f }{ 110g }{ 130a }{ 130d }{ 130f }{ 130g }{ 130h }{ 130k }{ 130l }{ 130m }{ 130n }{ 130o }{ 130p }{ 130r }{ 130s }{ 130t }|<br/><br/>\r\n#245||{ 245a }{ 245b }{245f }{ 245g }{ 245k }{ 245n }{ 245p }{ 245s }{ 245h }|\r\n#246||{ : 246i }{ 246a }{ 246b }{ 246f }{ 246g }{ 246n }{ 246p }{ 246h }|\r\n#242||{ = 242a }{ 242b }{ 242n }{ 242p }{ 242h }|\r\n#245||{ 245c }|\r\n#242||{ = 242c }|\r\n#250| - |{ 250a }{ 250b }|\r\n#254|, |{ 254a }|\r\n#255|, |{ 255a }{ 255b }{ 255c }{ 255d }{ 255e }{ 255f }{ 255g }|\r\n#256|, |{ 256a }|\r\n#257|, |{ 257a }|\r\n#258|, |{ 258a }{ 258b }|\r\n#260| - |{ 260a }{ 260b }{ 260c }|\r\n#300| - |{ 300a }{ 300b }{ 300c }{ 300d }{ 300e }{ 300f }{ 300g }|\r\n#306| - |{ 306a }|\r\n#307| - |{ 307a }{ 307b }|\r\n#310| - |{ 310a }{ 310b }|\r\n#321| - |{ 321a }{ 321b }|\r\n#340| - |{ 3403 }{ 340a }{ 340b }{ 340c }{ 340d }{ 340e }{ 340f }{ 340h }{ 340i }|\r\n#342| - |{ 342a }{ 342b }{ 342c }{ 342d }{ 342e }{ 342f }{ 342g }{ 342h }{ 342i }{ 342j }{ 342k }{ 342l }{ 342m }{ 342n }{ 342o }{ 342p }{ 342q }{ 342r }{ 342s }{ 342t }{ 342u }{ 342v }{ 342w }|\r\n#343| - |{ 343a }{ 343b }{ 343c }{ 343d }{ 343e }{ 343f }{ 343g }{ 343h }{ 343i }|\r\n#351| - |{ 3513 }{ 351a }{ 351b }{ 351c }|\r\n#352| - |{ 352a }{ 352b }{ 352c }{ 352d }{ 352e }{ 352f }{ 352g }{ 352i }{ 352q }|\r\n#362| - |{ 362a }{ 351z }|\r\n#440| - |{ 440a }{ 440n }{ 440p }{ 440v }{ 440x }|.\r\n#490| - |{ 490a }{ 490v }{ 490x }|.\r\n#800| - |{ 800a }{ 800b }{ 800c }{ 800d }{ 800e }{ 800f }{ 800g }{ 800h }{ 800j }{ 800k }{ 800l }{ 800m }{ 800n }{ 800o }{ 800p }{ 800q }{ 800r }{ 800s }{ 800t }{ 800u }{ 800v }|.\r\n#810| - |{ 810a }{ 810b }{ 810c }{ 810d }{ 810e }{ 810f }{ 810g }{ 810h }{ 810k }{ 810l }{ 810m }{ 810n }{ 810o }{ 810p }{ 810r }{ 810s }{ 810t }{ 810u }{ 810v }|.\r\n#811| - |{ 811a }{ 811c }{ 811d }{ 811e }{ 811f }{ 811g }{ 811h }{ 811k }{ 811l }{ 811n }{ 811p }{ 811q }{ 811s }{ 811t }{ 811u }{ 811v }|.\r\n#830| - |{ 830a }{ 830d }{ 830f }{ 830g }{ 830h }{ 830k }{ 830l }{ 830m }{ 830n }{ 830o }{ 830p }{ 830r }{ 830s }{ 830t }{ 830v }|.\r\n#500|<br/><br/>|{ 5003 }{ 500a }|\r\n#501|<br/><br/>|{ 501a }|\r\n#502|<br/><br/>|{ 502a }|\r\n#504|<br/><br/>|{ 504a }|\r\n#505|<br/><br/>|{ 505a }{ 505t }{ 505r }{ 505g }{ 505u }|\r\n#506|<br/><br/>|{ 5063 }{ 506a }{ 506b }{ 506c }{ 506d }{ 506u }|\r\n#507|<br/><br/>|{ 507a }{ 507b }|\r\n#508|<br/><br/>|{ 508a }{ 508a }|\r\n#510|<br/><br/>|{ 5103 }{ 510a }{ 510x }{ 510c }{ 510b }|\r\n#511|<br/><br/>|{ 511a }|\r\n#513|<br/><br/>|{ 513a }{513b }|\r\n#514|<br/><br/>|{ 514z }{ 514a }{ 514b }{ 514c }{ 514d }{ 514e }{ 514f }{ 514g }{ 514h }{ 514i }{ 514j }{ 514k }{ 514m }{ 514u }|\r\n#515|<br/><br/>|{ 515a }|\r\n#516|<br/><br/>|{ 516a }|\r\n#518|<br/><br/>|{ 5183 }{ 518a }|\r\n#520|<br/><br/>|{ 5203 }{ 520a }{ 520b }{ 520u }|\r\n#521|<br/><br/>|{ 5213 }{ 521a }{ 521b }|\r\n#522|<br/><br/>|{ 522a }|\r\n#524|<br/><br/>|{ 524a }|\r\n#525|<br/><br/>|{ 525a }|\r\n#526|<br/><br/>|{\\n510i }{\\n510a }{ 510b }{ 510c }{ 510d }{\\n510x }|\r\n#530|<br/><br/>|{\\n5063 }{\\n506a }{ 506b }{ 506c }{ 506d }{\\n506u }|\r\n#533|<br/><br/>|{\\n5333 }{\\n533a }{\\n533b }{\\n533c }{\\n533d }{\\n533e }{\\n533f }{\\n533m }{\\n533n }|\r\n#534|<br/><br/>|{\\n533p }{\\n533a }{\\n533b }{\\n533c }{\\n533d }{\\n533e }{\\n533f }{\\n533m }{\\n533n }{\\n533t }{\\n533x }{\\n533z }|\r\n#535|<br/><br/>|{\\n5353 }{\\n535a }{\\n535b }{\\n535c }{\\n535d }|\r\n#538|<br/><br/>|{\\n5383 }{\\n538a }{\\n538i }{\\n538u }|\r\n#540|<br/><br/>|{\\n5403 }{\\n540a }{ 540b }{ 540c }{ 540d }{\\n520u }|\r\n#544|<br/><br/>|{\\n5443 }{\\n544a }{\\n544b }{\\n544c }{\\n544d }{\\n544e }{\\n544n }|\r\n#545|<br/><br/>|{\\n545a }{ 545b }{\\n545u }|\r\n#546|<br/><br/>|{\\n5463 }{\\n546a }{ 546b }|\r\n#547|<br/><br/>|{\\n547a }|\r\n#550|<br/><br/>|{ 550a }|\r\n#552|<br/><br/>|{ 552z }{ 552a }{ 552b }{ 552c }{ 552d }{ 552e }{ 552f }{ 552g }{ 552h }{ 552i }{ 552j }{ 552k }{ 552l }{ 552m }{ 552n }{ 562o }{ 552p }{ 552u }|\r\n#555|<br/><br/>|{ 5553 }{ 555a }{ 555b }{ 555c }{ 555d }{ 555u }|\r\n#556|<br/><br/>|{ 556a }{ 506z }|\r\n#563|<br/><br/>|{ 5633 }{ 563a }{ 563u }|\r\n#565|<br/><br/>|{ 5653 }{ 565a }{ 565b }{ 565c }{ 565d }{ 565e }|\r\n#567|<br/><br/>|{ 567a }|\r\n#580|<br/><br/>|{ 580a }|\r\n#581|<br/><br/>|{ 5633 }{ 581a }{ 581z }|\r\n#584|<br/><br/>|{ 5843 }{ 584a }{ 584b }|\r\n#585|<br/><br/>|{ 5853 }{ 585a }|\r\n#586|<br/><br/>|{ 5863 }{ 586a }|\r\n#020|<br/><br/><label>ISBN: </label>|{ 020a }{ 020c }|\r\n#022|<br/><br/><label>ISSN: </label>|{ 022a }|\r\n#222| = |{ 222a }{ 222b }|\r\n#210| = |{ 210a }{ 210b }|\r\n#024|<br/><br/><label>Standard No.: </label>|{ 024a }{ 024c }{ 024d }{ 0242 }|\r\n#027|<br/><br/><label>Standard Tech. Report. No.: </label>|{ 027a }|\r\n#028|<br/><br/><label>Publisher. No.: </label>|{ 028a }{ 028b }|\r\n#013|<br/><br/><label>Patent No.: </label>|{ 013a }{ 013b }{ 013c }{ 013d }{ 013e }{ 013f }|\r\n#030|<br/><br/><label>CODEN: </label>|{ 030a }|\r\n#037|<br/><br/><label>Source: </label>|{ 037a }{ 037b }{ 037c }{ 037f }{ 037g }{ 037n }|\r\n#010|<br/><br/><label>LCCN: </label>|{ 010a }|\r\n#015|<br/><br/><label>Nat. Bib. No.: </label>|{ 015a }{ 0152 }|\r\n#016|<br/><br/><label>Nat. Bib. Agency Control No.: </label>|{ 016a }{ 0162 }|\r\n#600|<br/><br/><label>Subjects--Personal Names: </label>|{\\n6003 }{\\n600a}{ 600b }{ 600c }{ 600d }{ 600e }{ 600f }{ 600g }{ 600h }{--600k}{ 600l }{ 600m }{ 600n }{ 600o }{--600p}{ 600r }{ 600s }{ 600t }{ 600u }{--600x}{--600z}{--600y}{--600v}|\r\n#610|<br/><br/><label>Subjects--Corporate Names: </label>|{\\n6103 }{\\n610a}{ 610b }{ 610c }{ 610d }{ 610e }{ 610f }{ 610g }{ 610h }{--610k}{ 610l }{ 610m }{ 610n }{ 610o }{--610p}{ 610r }{ 610s }{ 610t }{ 610u }{--610x}{--610z}{--610y}{--610v}|\r\n#611|<br/><br/><label>Subjects--Meeting Names: </label>|{\\n6113 }{\\n611a}{ 611b }{ 611c }{ 611d }{ 611e }{ 611f }{ 611g }{ 611h }{--611k}{ 611l }{ 611m }{ 611n }{ 611o }{--611p}{ 611r }{ 611s }{ 611t }{ 611u }{--611x}{--611z}{--611y}{--611v}|\r\n#630|<br/><br/><label>Subjects--Uniform Titles: </label>|{\\n630a}{ 630b }{ 630c }{ 630d }{ 630e }{ 630f }{ 630g }{ 630h }{--630k }{ 630l }{ 630m }{ 630n }{ 630o }{--630p}{ 630r }{ 630s }{ 630t }{--630x}{--630z}{--630y}{--630v}|\r\n#648|<br/><br/><label>Subjects--Chronological Terms: </label>|{\\n6483 }{\\n648a }{--648x}{--648z}{--648y}{--648v}|\r\n#650|<br/><br/><label>Subjects--Topical Terms: </label>|{\\n6503 }{\\n650a}{ 650b }{ 650c }{ 650d }{ 650e }{--650x}{--650z}{--650y}{--650v}|\r\n#651|<br/><br/><label>Subjects--Geographic Terms: </label>|{\\n6513 }{\\n651a}{ 651b }{ 651c }{ 651d }{ 651e }{--651x}{--651z}{--651y}{--651v}|\r\n#653|<br/><br/><label>Subjects--Index Terms: </label>|{ 653a }|\r\n#654|<br/><br/><label>Subjects--Facted Index Terms: </label>|{\\n6543 }{\\n654a}{--654b}{--654x}{--654z}{--654y}{--654v}|\r\n#655|<br/><br/><label>Index Terms--Genre/Form: </label>|{\\n6553 }{\\n655a}{--655b}{--655x }{--655z}{--655y}{--655v}|\r\n#656|<br/><br/><label>Index Terms--Occupation: </label>|{\\n6563 }{\\n656a}{--656k}{--656x}{--656z}{--656y}{--656v}|\r\n#657|<br/><br/><label>Index Terms--Function: </label>|{\\n6573 }{\\n657a}{--657x}{--657z}{--657y}{--657v}|\r\n#658|<br/><br/><label>Index Terms--Curriculum Objective: </label>|{\\n658a}{--658b}{--658c}{--658d}{--658v}|\r\n#050|<br/><br/><label>LC Class. No.: </label>|{ 050a }{ / 050b }|\r\n#082|<br/><br/><label>Dewey Class. No.: </label>|{ 082a }{ / 082b }|\r\n#080|<br/><br/><label>Universal Decimal Class. No.: </label>|{ 080a }{ 080x }{ / 080b }|\r\n#070|<br/><br/><label>National Agricultural Library Call No.: </label>|{ 070a }{ / 070b }|\r\n#060|<br/><br/><label>National Library of Medicine Call No.: </label>|{ 060a }{ / 060b }|\r\n#074|<br/><br/><label>GPO Item No.: </label>|{ 074a }|\r\n#086|<br/><br/><label>Gov. Doc. Class. No.: </label>|{ 086a }|\r\n#088|<br/><br/><label>Report. No.: </label>|{ 088a }|','70|10','OPAC ISBD','Textarea'),
511
('OPACItemLocation','callnum','callnum|ccode|location|library','Show the shelving location of items in the opac','Choice'),
499
('OpacItemLocation','callnum','callnum|ccode|location|library','Show the shelving location of items in the opac','Choice'),
512
('OpacKohaUrl','1',NULL,'Show \'Powered by Koha\' text on OPAC footer.',NULL),
500
('OpacKohaUrl','1',NULL,'Show \'Powered by Koha\' text on OPAC footer.',NULL),
513
('OpacLangSelectorMode','both','top|both|footer','Select the location to display the language selector in OPAC','Choice'),
501
('OpacLangSelectorMode','both','top|both|footer','Select the location to display the language selector in OPAC','Choice'),
514
('OPACLanguages','en',NULL,'Set the default language in the OPAC.','Languages'),
502
('OPACLanguages','en',NULL,'Set the default language in the OPAC.','Languages'),
Lines 517-528 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
517
('OPACLocalCoverImages','0','1','Display local cover images on OPAC search and details pages.','YesNo'),
505
('OPACLocalCoverImages','0','1','Display local cover images on OPAC search and details pages.','YesNo'),
518
('OpacLocationBranchToDisplay','holding','holding|home|both','In the OPAC, under location show which branch for Location in the record details.','Choice'),
506
('OpacLocationBranchToDisplay','holding','holding|home|both','In the OPAC, under location show which branch for Location in the record details.','Choice'),
519
('OpacLocationOnDetail','holding','holding|home|both|column','In the OPAC detail, display the shelving location on its own column or under a library columns.',  'Choice'),
507
('OpacLocationOnDetail','holding','holding|home|both|column','In the OPAC detail, display the shelving location on its own column or under a library columns.',  'Choice'),
520
('OPACLoginLabelTextContent','cardnumber',NULL,NULL,NULL),
521
('OpacMaintenance','0','','If ON, enables maintenance warning in OPAC','YesNo'),
508
('OpacMaintenance','0','','If ON, enables maintenance warning in OPAC','YesNo'),
522
('OPACMandatoryHoldDates', '', '|start|end|both', 'Define which hold dates are required on OPAC reserve form', 'Choice'),
509
('OPACMandatoryHoldDates', '', '|start|end|both', 'Define which hold dates are required on OPAC reserve form', 'Choice'),
523
('OpacMaxItemsToDisplay','50','','Max items to display at the OPAC on a biblio detail','Integer'),
510
('OpacMaxItemsToDisplay','50','','Max items to display at the OPAC on a biblio detail','Integer'),
524
('OpacMetaDescription','','','This description will show in search engine results (160 characters).','Textarea'),
511
('OpacMetaDescription','','','This description will show in search engine results (160 characters).','Textarea'),
525
('OpacMetaRobots', 'noindex,nofollow', NULL, 'Improve search engine crawling.', 'Multiple'),
526
('OPACMySummaryHTML','','70|10','Enter the HTML that will appear in a column on the \'my summary\' and \'my checkout history\' tabs when a user is logged in to the OPAC. Enter {BIBLIONUMBER}, {TITLE}, {AUTHOR}, or {ISBN} in place of their respective variables in the HTML. Leave blank to disable.','Textarea'),
512
('OPACMySummaryHTML','','70|10','Enter the HTML that will appear in a column on the \'my summary\' and \'my checkout history\' tabs when a user is logged in to the OPAC. Enter {BIBLIONUMBER}, {TITLE}, {AUTHOR}, or {ISBN} in place of their respective variables in the HTML. Leave blank to disable.','Textarea'),
527
('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'),
513
('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'),
528
('OpacNoItemTypeImages','0',NULL,'If ON, disables itemtype images in the OPAC','YesNo'),
514
('OpacNoItemTypeImages','0',NULL,'If ON, disables itemtype images in the OPAC','YesNo'),
Lines 531-537 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
531
('OPACnumSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'),
517
('OPACnumSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'),
532
('OPACnumSearchResultsDropdown', 0, NULL, 'Enable option list of number of results per page to show in OPAC search results','YesNo'),
518
('OPACnumSearchResultsDropdown', 0, NULL, 'Enable option list of number of results per page to show in OPAC search results','YesNo'),
533
('OPACOpenURLItemTypes', '', NULL, 'Show the OpenURL link only for these item types', 'Free'),
519
('OPACOpenURLItemTypes', '', NULL, 'Show the OpenURL link only for these item types', 'Free'),
534
('OPACOverDrive','0',NULL,'Enable OverDrive integration in the OPAC','YesNo'),
535
('OpacPasswordChange','1',NULL,'If ON, enables patron-initiated password change in OPAC (disable it when using LDAP auth)','YesNo'),
520
('OpacPasswordChange','1',NULL,'If ON, enables patron-initiated password change in OPAC (disable it when using LDAP auth)','YesNo'),
536
('OPACPatronDetails','1','','If OFF the patron details tab in the OPAC is disabled.','YesNo'),
521
('OPACPatronDetails','1','','If OFF the patron details tab in the OPAC is disabled.','YesNo'),
537
('OPACpatronimages','0',NULL,'Enable patron images in the OPAC','YesNo'),
522
('OPACpatronimages','0',NULL,'Enable patron images in the OPAC','YesNo'),
Lines 551-563 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
551
('OPACSearchForTitleIn','<a href=\"https://worldcat.org/search?q={TITLE}\" target=\"_blank\">Other Libraries (WorldCat)</a>\n<a href=\"https://scholar.google.com/scholar?q={TITLE}\" target=\"_blank\">Other Databases (Google Scholar)</a>\n<a href=\"https://www.bookfinder.com/search/?author={AUTHOR}&amp;title={TITLE}&amp;st=xl&amp;ac=qr\" target=\"_blank\">Online Stores (Bookfinder.com)</a>\n<a href=\"https://openlibrary.org/search?author=({AUTHOR})&title=({TITLE})\" target=\"_blank\">Open Library (openlibrary.org)</a>','70|10','Enter the HTML that will appear in the \'Search for this title in\' box on the detail page in the OPAC.  Enter {TITLE}, {AUTHOR}, or {ISBN} in place of their respective variables in the URL. Leave blank to disable \'More Searches\' menu.','Textarea'),
536
('OPACSearchForTitleIn','<a href=\"https://worldcat.org/search?q={TITLE}\" target=\"_blank\">Other Libraries (WorldCat)</a>\n<a href=\"https://scholar.google.com/scholar?q={TITLE}\" target=\"_blank\">Other Databases (Google Scholar)</a>\n<a href=\"https://www.bookfinder.com/search/?author={AUTHOR}&amp;title={TITLE}&amp;st=xl&amp;ac=qr\" target=\"_blank\">Online Stores (Bookfinder.com)</a>\n<a href=\"https://openlibrary.org/search?author=({AUTHOR})&title=({TITLE})\" target=\"_blank\">Open Library (openlibrary.org)</a>','70|10','Enter the HTML that will appear in the \'Search for this title in\' box on the detail page in the OPAC.  Enter {TITLE}, {AUTHOR}, or {ISBN} in place of their respective variables in the URL. Leave blank to disable \'More Searches\' menu.','Textarea'),
552
('OpacSeparateHoldings','0',NULL,'Separate current branch holdings from other holdings (OPAC)','YesNo'),
537
('OpacSeparateHoldings','0',NULL,'Separate current branch holdings from other holdings (OPAC)','YesNo'),
553
('OpacSeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings (OPAC)','Choice'),
538
('OpacSeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings (OPAC)','Choice'),
554
('opacSerialDefaultTab','subscriptions','holdings|serialcollection|subscriptions|titlenotes','Define the default tab for serials in OPAC.','Choice'),
539
('opacSerialDefaultTab','subscriptions','holdings|serialcollection|subscriptions','Define the default tab for serials in OPAC.','Choice'),
555
('OPACSerialIssueDisplayCount','3','','Number of serial issues to display per subscription in the OPAC','Integer'),
540
('OPACSerialIssueDisplayCount','3','','Number of serial issues to display per subscription in the OPAC','Integer'),
556
('OPACShelfBrowser','1','','Enable/disable Shelf Browser on item details page. WARNING: this feature is very resource consuming on collections with large numbers of items.','YesNo'),
541
('OPACShelfBrowser','1','','Enable/disable Shelf Browser on item details page. WARNING: this feature is very resource consuming on collections with large numbers of items.','YesNo'),
557
('OPACShibOnly','0','','If ON enables shibboleth only authentication for the opac','YesNo'),
542
('OPACShibOnly','0','','If ON enables shibboleth only authentication for the opac','YesNo'),
558
('OPACShowCheckoutName','0','','Displays in the OPAC the name of patron who has checked out the material. WARNING: Most sites should leave this off. It is intended for corporate or special sites which need to track who has the item.','YesNo'),
543
('OPACShowCheckoutName','0','','Displays in the OPAC the name of patron who has checked out the material. WARNING: Most sites should leave this off. It is intended for corporate or special sites which need to track who has the item.','YesNo'),
559
('OPACShowHoldQueueDetails','none','none|priority|holds|holds_priority','Show holds details in OPAC','Choice'),
544
('OPACShowHoldQueueDetails','none','none|priority|holds|holds_priority','Show holds details in OPAC','Choice'),
560
('OPACShowLibraries', '1', '', 'If enabled, a link is shown in the OPAC pointing to a page with library information', 'YesNo'),
561
('OPACShowMusicalInscripts','0','','Display musical inscripts on the OPAC record details page when available.','YesNo'),
545
('OPACShowMusicalInscripts','0','','Display musical inscripts on the OPAC record details page when available.','YesNo'),
562
('OPACShowOpenURL', '0', NULL, 'Enable display of OpenURL links in OPAC search results and detail page', 'YesNo'),
546
('OPACShowOpenURL', '0', NULL, 'Enable display of OpenURL links in OPAC search results and detail page', 'YesNo'),
563
('OpacShowRecentComments','0',NULL,'If ON a link to recent comments will appear in the OPAC masthead','YesNo'),
547
('OpacShowRecentComments','0',NULL,'If ON a link to recent comments will appear in the OPAC masthead','YesNo'),
Lines 580-587 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
580
('opacuserlogin','1',NULL,'Enable or disable display of user login features','YesNo'),
564
('opacuserlogin','1',NULL,'Enable or disable display of user login features','YesNo'),
581
('OPACUserSummary', 1, NULL, "Show the summary of a logged in user's checkouts, overdues, holds and fines on the mainpage", 'YesNo'),
565
('OPACUserSummary', 1, NULL, "Show the summary of a logged in user's checkouts, overdues, holds and fines on the mainpage", 'YesNo'),
582
('OPACViewOthersSuggestions','0',NULL,'If ON, allows all suggestions to be displayed in the OPAC','YesNo'),
566
('OPACViewOthersSuggestions','0',NULL,'If ON, allows all suggestions to be displayed in the OPAC','YesNo'),
583
('OPACVirtualCard','0',NULL,'If ON, the patron virtual library card tab in the OPAC will be enabled','YesNo'),
584
('OPACVirtualCardBarcode','code39','code39|code128|ean13|upca|upce|ean8|itf14|qrcode|matrix2of5|industrial2of5|iata2of5|coop2of5','Specify the type of barcode to be used in the patron virtual library card tab in the OPAC','Choice'),
585
('OPACXSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on OPAC','Free'),
567
('OPACXSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on OPAC','Free'),
586
('OPACXSLTListsDisplay','default','','Enable XSLT stylesheet control over lists pages display on OPAC','Free'),
568
('OPACXSLTListsDisplay','default','','Enable XSLT stylesheet control over lists pages display on OPAC','Free'),
587
('OPACXSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on OPAC','Free'),
569
('OPACXSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on OPAC','Free'),
Lines 615-629 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
615
('PatronSelfModificationBorrowerUnwantedField','',NULL,'Name the fields you don\'t want to display when a patron is editing their information via the OPAC.','free'),
597
('PatronSelfModificationBorrowerUnwantedField','',NULL,'Name the fields you don\'t want to display when a patron is editing their information via the OPAC.','free'),
616
('PatronSelfModificationMandatoryField','',NULL,'Define the required fields when a patron is editing their information via the OPAC','free'),
598
('PatronSelfModificationMandatoryField','',NULL,'Define the required fields when a patron is editing their information via the OPAC','free'),
617
('PatronSelfRegistration','0',NULL,'If enabled, patrons will be able to register themselves via the OPAC.','YesNo'),
599
('PatronSelfRegistration','0',NULL,'If enabled, patrons will be able to register themselves via the OPAC.','YesNo'),
618
('PatronSelfRegistrationAlert','0',NULL,'If enabled, an alter will be shown on staff interface home page when there are self-registered patrons.','YesNo'),
619
('PatronSelfRegistrationBorrowerMandatoryField','surname|firstname',NULL,'Choose the mandatory fields for a patron\'s account, when registering via the OPAC.','free'),
600
('PatronSelfRegistrationBorrowerMandatoryField','surname|firstname',NULL,'Choose the mandatory fields for a patron\'s account, when registering via the OPAC.','free'),
620
('PatronSelfRegistrationBorrowerUnwantedField','',NULL,'Name the fields you don\'t want to display when registering a new patron via the OPAC.','free'),
601
('PatronSelfRegistrationBorrowerUnwantedField','',NULL,'Name the fields you don\'t want to display when registering a new patron via the OPAC.','free'),
621
('PatronSelfRegistrationConfirmEmail', '0', NULL, 'Require users to confirm their email address by entering it twice.', 'YesNo'),
602
('PatronSelfRegistrationConfirmEmail', '0', NULL, 'Require users to confirm their email address by entering it twice.', 'YesNo'),
622
('PatronSelfRegistrationDefaultCategory','','','A patron registered via the OPAC will receive a borrower category code set in this system preference.','free'),
603
('PatronSelfRegistrationDefaultCategory','','','A patron registered via the OPAC will receive a borrower category code set in this system preference.','free'),
623
('PatronSelfRegistrationEmailMustBeUnique', '0', 'If set, the field borrowers.email will be considered as a unique field on self-registering', NULL, 'YesNo'),
604
('PatronSelfRegistrationEmailMustBeUnique', '0', 'If set, the field borrowers.email will be considered as a unique field on self registering', NULL, 'YesNo'),
624
('PatronSelfRegistrationExpireTemporaryAccountsDelay','0',NULL,'If PatronSelfRegistrationDefaultCategory is enabled, this system preference controls how long a patron can have a temporary status before the account is deleted automatically. It is an integer value representing a number of days to wait before deleting a temporary patron account. Setting it to 0 disables the deleting of temporary accounts.','Integer'),
605
('PatronSelfRegistrationExpireTemporaryAccountsDelay','0',NULL,'If PatronSelfRegistrationDefaultCategory is enabled, this system preference controls how long a patron can have a temporary status before the account is deleted automatically. It is an integer value representing a number of days to wait before deleting a temporary patron account. Setting it to 0 disables the deleting of temporary accounts.','Integer'),
625
('PatronSelfRegistrationLibraryList','',NULL,'Only display libraries listed. If empty, all libraries are displayed.','Free'),
606
('PatronSelfRegistrationLibraryList','',NULL,'Only display libraries listed. If empty, all libraries are displayed.','Free'),
626
('PatronSelfRegistrationPrefillForm','1',NULL,'Display password and prefill login form after a patron has self-registered','YesNo'),
607
('PatronSelfRegistrationPrefillForm','1',NULL,'Display password and prefill login form after a patron has self registered','YesNo'),
627
('PatronSelfRegistrationVerifyByEmail','0',NULL,'If enabled, any patron attempting to register themselves via the OPAC will be required to verify themselves via email to activate their account.','YesNo'),
608
('PatronSelfRegistrationVerifyByEmail','0',NULL,'If enabled, any patron attempting to register themselves via the OPAC will be required to verify themselves via email to activate their account.','YesNo'),
628
('PatronsPerPage','20','20','Number of Patrons Per Page displayed by default','Integer'),
609
('PatronsPerPage','20','20','Number of Patrons Per Page displayed by default','Integer'),
629
('PhoneNotification','0',NULL,'If ON, enables generation of phone notifications to be sent by plugins','YesNo'),
610
('PhoneNotification','0',NULL,'If ON, enables generation of phone notifications to be sent by plugins','YesNo'),
Lines 658-664 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
658
('RecordLocalUseOnReturn','0',NULL,'If ON, statistically record returns of unissued items as local use, instead of return','YesNo'),
639
('RecordLocalUseOnReturn','0',NULL,'If ON, statistically record returns of unissued items as local use, instead of return','YesNo'),
659
('RecordStaffUserOnCheckout', '0', '', 'If enabled, when an item is checked out, the user who checked out the item is recorded', 'YesNo'),
640
('RecordStaffUserOnCheckout', '0', '', 'If enabled, when an item is checked out, the user who checked out the item is recorded', 'YesNo'),
660
('RedirectGuaranteeEmail', '0', NULL, 'Enable the ability to redirect guarantee email messages to guarantor.', 'YesNo'),
641
('RedirectGuaranteeEmail', '0', NULL, 'Enable the ability to redirect guarantee email messages to guarantor.', 'YesNo'),
661
('RedirectToSoleResult', '1', NULL, 'When a catalog search via the staff interface or the OPAC returns only one record, redirect to the result.', 'YesNo'),
662
('Reference_NFL_Statuses','1|2',NULL,'Contains not for loan statuses considered as available for reference','Free'),
642
('Reference_NFL_Statuses','1|2',NULL,'Contains not for loan statuses considered as available for reference','Free'),
663
('RefundLostOnReturnControl','CheckinLibrary','CheckinLibrary|ItemHomeBranch|ItemHoldingBranch','If a lost item is returned, choose which branch to pick rules for refunding.','Choice'),
643
('RefundLostOnReturnControl','CheckinLibrary','CheckinLibrary|ItemHomeBranch|ItemHoldingBranch','If a lost item is returned, choose which branch to pick rules for refunding.','Choice'),
664
('RenewAccruingItemInOpac','0','','If enabled, when the fines on an item accruing is paid off in the OPAC via a payment plugin, attempt to renew that item. If the syspref "RenewalPeriodBase" is set to "due date", renewed items may still be overdue','YesNo'),
644
('RenewAccruingItemInOpac','0','','If enabled, when the fines on an item accruing is paid off in the OPAC via a payment plugin, attempt to renew that item. If the syspref "RenewalPeriodBase" is set to "due date", renewed items may still be overdue','YesNo'),
Lines 669-676 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
669
('RenewSerialAddsSuggestion','0',NULL,'If ON, adds a new suggestion at serial subscription renewal','YesNo'),
649
('RenewSerialAddsSuggestion','0',NULL,'If ON, adds a new suggestion at serial subscription renewal','YesNo'),
670
('RentalFeesCheckoutConfirmation', '0', NULL , 'Allow user to confirm when checking out an item with rental fees.', 'YesNo'),
650
('RentalFeesCheckoutConfirmation', '0', NULL , 'Allow user to confirm when checking out an item with rental fees.', 'YesNo'),
671
('ReplytoDefault','',NULL,'Use this email address as the replyto in emails','Free'),
651
('ReplytoDefault','',NULL,'Use this email address as the replyto in emails','Free'),
672
('ReportsExportFormatODS',1,NULL,'Show ODS download in Reports','YesNo'),
673
('ReportsExportLimit',NULL,NULL,'Limit for report downloads','Integer'),
674
('ReportsLog','0',NULL,'If ON, log information about reports.','YesNo'),
652
('ReportsLog','0',NULL,'If ON, log information about reports.','YesNo'),
675
('RequireCashRegister','0',NULL,'Require a cash register when collecting a payment','YesNo'),
653
('RequireCashRegister','0',NULL,'Require a cash register when collecting a payment','YesNo'),
676
('RequireChoosingExistingAuthority','0',NULL,'Require existing authority selection in controlled fields during cataloging.','YesNo'),
654
('RequireChoosingExistingAuthority','0',NULL,'Require existing authority selection in controlled fields during cataloging.','YesNo'),
Lines 689-695 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
689
('RestrictedPageLocalIPs','',NULL,'Beginning of IP addresses considered as local (comma separated ex: "127.0.0,127.0.2")','Free'),
667
('RestrictedPageLocalIPs','',NULL,'Beginning of IP addresses considered as local (comma separated ex: "127.0.0,127.0.2")','Free'),
690
('RestrictedPageTitle','',NULL,'Title of the restricted page (breadcrumb and header)','Free'),
668
('RestrictedPageTitle','',NULL,'Title of the restricted page (breadcrumb and header)','Free'),
691
('RestrictionBlockRenewing','0',NULL,'If patron is restricted, should renewal be allowed or blocked','YesNo'),
669
('RestrictionBlockRenewing','0',NULL,'If patron is restricted, should renewal be allowed or blocked','YesNo'),
692
('RestrictPatronsWithFailedNotices', '0', NULL, 'If enabled then when SMS and email notices fail sending at the Koha level then a debarment will be applied to a patrons account', 'YesNo'),
693
('RetainCatalogSearchTerms', '1', NULL, 'If enabled, searches entered into the catalog search bar will be retained', 'YesNo'),
670
('RetainCatalogSearchTerms', '1', NULL, 'If enabled, searches entered into the catalog search bar will be retained', 'YesNo'),
694
('RetainPatronsSearchTerms', '1', NULL, 'If enabled, searches entered into the checkout and patrons search bar will be retained', 'YesNo'),
671
('RetainPatronsSearchTerms', '1', NULL, 'If enabled, searches entered into the checkout and patrons search bar will be retained', 'YesNo'),
695
('ReturnBeforeExpiry','0',NULL,'If ON, checkout will be prevented if returndate is after patron card expiry','YesNo'),
672
('ReturnBeforeExpiry','0',NULL,'If ON, checkout will be prevented if returndate is after patron card expiry','YesNo'),
Lines 698-711 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
698
('RisExportAdditionalFields',  '', NULL ,  'Define additional RIS tags to export from MARC records in YAML format as an associative array with either a marc tag/subfield combination as the value, or a list of tag/subfield combinations.',  'textarea'),
675
('RisExportAdditionalFields',  '', NULL ,  'Define additional RIS tags to export from MARC records in YAML format as an associative array with either a marc tag/subfield combination as the value, or a list of tag/subfield combinations.',  'textarea'),
699
('RoundFinesAtPayment','0', NULL,'If enabled any fines with fractions of a cent will be rounded to the nearest cent when payments are coll    ected. e.g. 1.004 will be paid off by a 1.00 payment','YesNo'),
676
('RoundFinesAtPayment','0', NULL,'If enabled any fines with fractions of a cent will be rounded to the nearest cent when payments are coll    ected. e.g. 1.004 will be paid off by a 1.00 payment','YesNo'),
700
('RoutingListAddReserves','0','','If ON the patrons on routing lists are automatically added to holds on the issue.','YesNo'),
677
('RoutingListAddReserves','0','','If ON the patrons on routing lists are automatically added to holds on the issue.','YesNo'),
678
('RoutingListNote','To change this note edit <a href=\"/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RoutingListNote#jumped\">RoutingListNote</a> system preference.','70|10','Define a note to be shown on all routing lists','Textarea'),
701
('RoutingSerials','1',NULL,'If ON, serials routing is enabled','YesNo'),
679
('RoutingSerials','1',NULL,'If ON, serials routing is enabled','YesNo'),
702
('SavedSearchFilters', '0', NULL, 'Allow staff with permission to create/edit custom search filters', 'YesNo'),
680
('SavedSearchFilters', '0', NULL, 'Allow staff with permission to create/edit custom search filters', 'YesNo'),
703
('SCOAllowCheckin','0','','If enabled, patrons may return items through the Web-based Self Checkout','YesNo'),
681
('SCOAllowCheckin','0','','If enabled, patrons may return items through the Web-based Self Checkout','YesNo'),
704
('SCOBatchCheckoutsValidCategories','',NULL,'Patron categories allowed to checkout in a batch while logged into Self Checkout','Free'),
705
('SCOLoadCheckoutsByDefault','1','','If enabled, load the list of a patrons checkouts when they log in to the Self Checkout','YesNo'),
682
('SCOLoadCheckoutsByDefault','1','','If enabled, load the list of a patrons checkouts when they log in to the Self Checkout','YesNo'),
706
('SCOUserCSS','',NULL,'Add CSS to be included in the SCO module in an embedded <style> tag.','free'),
683
('SCOUserCSS','',NULL,'Add CSS to be included in the SCO module in an embedded <style> tag.','free'),
707
('SCOUserJS','',NULL,'Define custom javascript for inclusion in the SCO module','free'),
684
('SCOUserJS','',NULL,'Define custom javascript for inclusion in the SCO module','free'),
708
('SearchCancelledAndInvalidISBNandISSN','0',NULL,'Enable search for cancelled or invalid forms of ISBN/ISSN when performing ISBN/ISSN search (when using ES)','YesNo'),
709
('SearchEngine','Zebra','Elasticsearch|Zebra','Search Engine','Choice'),
685
('SearchEngine','Zebra','Elasticsearch|Zebra','Search Engine','Choice'),
710
('SearchLimitLibrary', 'homebranch', 'homebranch|holdingbranch|both', "When limiting search results with a library or library group, use the item's home library, or holding library, or both.", 'Choice'),
686
('SearchLimitLibrary', 'homebranch', 'homebranch|holdingbranch|both', "When limiting search results with a library or library group, use the item's home library, or holding library, or both.", 'Choice'),
711
('SearchMyLibraryFirst','0',NULL,'If ON, OPAC searches return results limited by the user\'s library by default if they are logged in','YesNo'),
687
('SearchMyLibraryFirst','0',NULL,'If ON, OPAC searches return results limited by the user\'s library by default if they are logged in','YesNo'),
Lines 739-750 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
739
('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'),
715
('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'),
740
('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'),
716
('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'),
741
('SIP2AddOpacMessagesToScreenMessage','1','','If enabled, patron OPAC messages will be included in the SIP2 screen message','YesNo'),
717
('SIP2AddOpacMessagesToScreenMessage','1','','If enabled, patron OPAC messages will be included in the SIP2 screen message','YesNo'),
718
('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free'),
742
('SIP2SortBinMapping','',NULL,'Use the following mappings to determine the sort_bin of a returned item. The mapping should be on the form \"branchcode:item field:item field value:sort bin number\", with one mapping per line.','free'),
719
('SIP2SortBinMapping','',NULL,'Use the following mappings to determine the sort_bin of a returned item. The mapping should be on the form \"branchcode:item field:item field value:sort bin number\", with one mapping per line.','free'),
743
('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer'),
720
('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer'),
744
('SlipCSS','',NULL,'Slips CSS url.','free'),
721
('SlipCSS','',NULL,'Slips CSS url.','free'),
745
('SMSSendAdditionalOptions', '', '', 'Additional SMS::Send parameters used to send SMS messages', 'free'),
722
('SMSSendAdditionalOptions', '', '', 'Additional SMS::Send parameters used to send SMS messages', 'free'),
746
('SMSSendDriver','','','Sets which SMS::Send driver is used to send SMS messages.','free'),
723
('SMSSendDriver','','','Sets which SMS::Send driver is used to send SMS messages.','free'),
747
('SMSSendMaxChar', '', NULL, 'Add a limit for the number of characters in SMS messages', 'Integer'),
748
('SMSSendPassword', '', '', 'Password used to send SMS messages', 'free'),
724
('SMSSendPassword', '', '', 'Password used to send SMS messages', 'free'),
749
('SMSSendUsername', '', '', 'Username/Login used to send SMS messages', 'free'),
725
('SMSSendUsername', '', '', 'Username/Login used to send SMS messages', 'free'),
750
('SocialNetworks','','facebook|linkedin|email','Enable/Disable social networks links in opac detail pages','Choice'),
726
('SocialNetworks','','facebook|linkedin|email','Enable/Disable social networks links in opac detail pages','Choice'),
Lines 754-764 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
754
('SpineLabelFormat','<itemcallnumber><copynumber>','30|10','This preference defines the format for the quick spine label printer. Just list the fields you would like to see in the order you would like to see them, surrounded by <>, for example <itemcallnumber>.','Textarea'),
730
('SpineLabelFormat','<itemcallnumber><copynumber>','30|10','This preference defines the format for the quick spine label printer. Just list the fields you would like to see in the order you would like to see them, surrounded by <>, for example <itemcallnumber>.','Textarea'),
755
('SpineLabelShowPrintOnBibDetails','0','','If turned on, a \"Print label\" link will appear for each item on the bib details page in the staff interface.','YesNo'),
731
('SpineLabelShowPrintOnBibDetails','0','','If turned on, a \"Print label\" link will appear for each item on the bib details page in the staff interface.','YesNo'),
756
('staffClientBaseURL','',NULL,'Specify the base URL of the staff interface starting with http:// or https://. Do not include a trailing slash in the URL. (This must be filled in correctly for CAS, svc, and load_testing to work.)','free'),
732
('staffClientBaseURL','',NULL,'Specify the base URL of the staff interface starting with http:// or https://. Do not include a trailing slash in the URL. (This must be filled in correctly for CAS, svc, and load_testing to work.)','free'),
733
('StaffDetailItemSelection', '1', NULL, 'Enable item selection in record detail page', 'YesNo'),
757
('StaffHighlightedWords','1','','Highlight search terms on staff interface','YesNo'),
734
('StaffHighlightedWords','1','','Highlight search terms on staff interface','YesNo'),
758
('StaffInterfaceLanguages','en',NULL,'Set the default language in the staff interface.','Languages'),
759
('StaffLangSelectorMode','footer','top|both|footer','Select the location to display the language selector in staff interface','Choice'),
735
('StaffLangSelectorMode','footer','top|both|footer','Select the location to display the language selector in staff interface','Choice'),
760
('StaffLoginLibraryBasedOnIP', '1','', 'Set the logged in library for the user based on their current IP','YesNo'),
736
('StaffLoginInstructions', '', NULL, 'HTML to go into the login box for the staff interface','Free'),
761
('StaffLoginRestrictLibraryByIP','0',NULL,'If ON, IP authentication is enabled, blocking access to the staff interface from unauthorized IP addresses based on branch','YesNo'),
762
('StaffSearchResultsDisplayBranch','holdingbranch','holdingbranch|homebranch','Controls the display of the home or holding branch for staff search results','Choice'),
737
('StaffSearchResultsDisplayBranch','holdingbranch','holdingbranch|homebranch','Controls the display of the home or holding branch for staff search results','Choice'),
763
('StaffSerialIssueDisplayCount','3','','Number of serial issues to display per subscription in the staff interface','Integer'),
738
('StaffSerialIssueDisplayCount','3','','Number of serial issues to display per subscription in the staff interface','Integer'),
764
('staffShibOnly','0','','If ON enables shibboleth only authentication for the staff client','YesNo'),
739
('staffShibOnly','0','','If ON enables shibboleth only authentication for the staff client','YesNo'),
Lines 775-781 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
775
('SubscriptionLog','1',NULL,'If ON, enables subscriptions log','YesNo'),
750
('SubscriptionLog','1',NULL,'If ON, enables subscriptions log','YesNo'),
776
('suggestion','1','','If ON, enables patron suggestions feature in OPAC','YesNo'),
751
('suggestion','1','','If ON, enables patron suggestions feature in OPAC','YesNo'),
777
('suggestionPatronCategoryExceptions', '', '', 'List the patron categories not affected by suggestion system preference if on', 'Free'),
752
('suggestionPatronCategoryExceptions', '', '', 'List the patron categories not affected by suggestion system preference if on', 'Free'),
778
('SuggestionsLog','0',NULL,'If ON, log pirchase suggestion changes','YesNo'),
779
('SuspendHoldsIntranet','1','Allow holds to be suspended from the intranet.',NULL,'YesNo'),
753
('SuspendHoldsIntranet','1','Allow holds to be suspended from the intranet.',NULL,'YesNo'),
780
('SuspendHoldsOpac','1','Allow holds to be suspended from the OPAC.',NULL,'YesNo'),
754
('SuspendHoldsOpac','1','Allow holds to be suspended from the OPAC.',NULL,'YesNo'),
781
('SuspensionsCalendar','noSuspensionsWhenClosed','ignoreCalendar|noSuspensionsWhenClosed','Specify whether to use the Calendar in calculating suspension expiration','Choice'),
755
('SuspensionsCalendar','noSuspensionsWhenClosed','ignoreCalendar|noSuspensionsWhenClosed','Specify whether to use the Calendar in calculating suspension expiration','Choice'),
Lines 825-832 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
825
('UnsubscribeReflectionDelay','',NULL,'Delay for locking unsubscribers', 'Integer'),
799
('UnsubscribeReflectionDelay','',NULL,'Delay for locking unsubscribers', 'Integer'),
826
('UpdateItemLocationOnCheckin', '', 'NULL', 'This is a list of value pairs.\n Examples:\n\nPROC: FIC - causes an item in the Processing Center location to be updated into the Fiction location on check in.\nFIC: GEN - causes an item in the Fiction location to be updated into the General stacks location on check in.\n_BLANK_:FIC - causes an item that has no location to be updated into the Fiction location on check in.\nFIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check in.\n_ALL_:FIC - causes all items to be updated into the Fiction location on check in.\nPROC: _PERM_ - causes an item that is in the Processing Center to be updated to it''s permanent location.\n\nGeneral rule: if the location value on the left matches the item''s current location, it will be updated to match the location value on the right.\nNote: PROC and CART are special values, for these locations only can location and permanent_location differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.\n\nThe special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.\nThe special term _ALL_ is used on the left side of the colon (:) to affect all items.\nThe special term _PERM_ is used on the right side of the colon (:) to return items to their permanent location.', 'Free'),
800
('UpdateItemLocationOnCheckin', '', 'NULL', 'This is a list of value pairs.\n Examples:\n\nPROC: FIC - causes an item in the Processing Center location to be updated into the Fiction location on check in.\nFIC: GEN - causes an item in the Fiction location to be updated into the General stacks location on check in.\n_BLANK_:FIC - causes an item that has no location to be updated into the Fiction location on check in.\nFIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check in.\n_ALL_:FIC - causes all items to be updated into the Fiction location on check in.\nPROC: _PERM_ - causes an item that is in the Processing Center to be updated to it''s permanent location.\n\nGeneral rule: if the location value on the left matches the item''s current location, it will be updated to match the location value on the right.\nNote: PROC and CART are special values, for these locations only can location and permanent_location differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.\n\nThe special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.\nThe special term _ALL_ is used on the left side of the colon (:) to affect all items.\nThe special term _PERM_ is used on the right side of the colon (:) to return items to their permanent location.', 'Free'),
827
('UpdateItemLocationOnCheckout', '', 'NULL', 'This is a list of value pairs.\n Examples:\n\nPROC: FIC - causes an item in the Processing Center location to be updated into the Fiction location on check out.\nFIC: GEN - causes an item in the Fiction location to be updated into the General stacks location on check out.\n_BLANK_:FIC - causes an item that has no location to be updated into the Fiction location on check out.\nFIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check out.\n_ALL_:FIC - causes all items to be updated into the Fiction location on check out.\nPROC: _PERM_ - causes an item that is in the Processing Center to be updated to it''s permanent location.\n\nGeneral rule: if the location value on the left matches the item''s current location, it will be updated to match the location value on the right.\nNote: PROC and CART are special values, for these locations only can location and permanent_location differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.\n\nThe special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.\nThe special term _ALL_ is used on the left side of the colon (:) to affect all items.\nThe special term _PERM_ is used on the right side of the colon (:) to return items to their permanent location.', 'Free'),
801
('UpdateItemLocationOnCheckout', '', 'NULL', 'This is a list of value pairs.\n Examples:\n\nPROC: FIC - causes an item in the Processing Center location to be updated into the Fiction location on check out.\nFIC: GEN - causes an item in the Fiction location to be updated into the General stacks location on check out.\n_BLANK_:FIC - causes an item that has no location to be updated into the Fiction location on check out.\nFIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check out.\n_ALL_:FIC - causes all items to be updated into the Fiction location on check out.\nPROC: _PERM_ - causes an item that is in the Processing Center to be updated to it''s permanent location.\n\nGeneral rule: if the location value on the left matches the item''s current location, it will be updated to match the location value on the right.\nNote: PROC and CART are special values, for these locations only can location and permanent_location differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.\n\nThe special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.\nThe special term _ALL_ is used on the left side of the colon (:) to affect all items.\nThe special term _PERM_ is used on the right side of the colon (:) to return items to their permanent location.', 'Free'),
828
('UpdateItemLostStatusWhenPaid', '0', NULL, 'Allows the status of lost items to be automatically changed to lost and paid for when paid for', 'Integer'),
829
('UpdateItemLostStatusWhenWriteoff', '0', NULL, 'Allows the status of lost items to be automatically changed to lost and paid for when written off', 'Integer'),
830
('UpdateItemWhenLostFromHoldList','',NULL,'This is a list of values to update an item when it is marked as lost from the holds to pull screen','Free'),
802
('UpdateItemWhenLostFromHoldList','',NULL,'This is a list of values to update an item when it is marked as lost from the holds to pull screen','Free'),
831
('UpdateNotForLoanStatusOnCheckin', '', 'NULL', 'This is a list of item types and value pairs.\nExamples:\n_ALL_:\n -1: 0\n\nCR:\n 1: 0\n\nWhen an item is checked in, if its item type matches CR then when the value on the left (1) matches the items not for loan value it will be updated to the value on the right.\n\nThe special term _ALL_ is used on the left side of the colon (:) to affect all item types. This does not override all other rules\n\nEach item type needs to be defined on a separate line on the left side of the colon (:).\nEach pair of not for loan values, for that item type, should be listed on separate lines below the item type, each indented by a leading space.', 'Free'),
803
('UpdateNotForLoanStatusOnCheckin', '', 'NULL', 'This is a list of item types and value pairs.\nExamples:\n_ALL_:\n -1: 0\n\nCR:\n 1: 0\n\nWhen an item is checked in, if its item type matches CR then when the value on the left (1) matches the items not for loan value it will be updated to the value on the right.\n\nThe special term _ALL_ is used on the left side of the colon (:) to affect all item types. This does not override all other rules\n\nEach item type needs to be defined on a separate line on the left side of the colon (:).\nEach pair of not for loan values, for that item type, should be listed on separate lines below the item type, each indented by a leading space.', 'Free'),
832
('UpdateNotForLoanStatusOnCheckout', '', 'NULL', 'This is a list of value pairs. When an item is checked out, if the not for loan value on the left matches the items not for loan value it will be updated to the right-hand value. E.g. ''-1: 0'' will cause an item that was set to ''Ordered'' to now be available for loan. Each pair of values should be on a separate line.', 'Free'),
804
('UpdateNotForLoanStatusOnCheckout', '', 'NULL', 'This is a list of value pairs. When an item is checked out, if the not for loan value on the left matches the items not for loan value it will be updated to the right-hand value. E.g. ''-1: 0'' will cause an item that was set to ''Ordered'' to now be available for loan. Each pair of values should be on a separate line.', 'Free'),
Lines 874-879 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
874
('XSLTListsDisplay','default','','Enable XSLT stylesheet control over lists pages display on intranet','Free'),
846
('XSLTListsDisplay','default','','Enable XSLT stylesheet control over lists pages display on intranet','Free'),
875
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
847
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
876
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
848
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
877
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo'),
849
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
878
('z3950Status','','','This syspref allows to define custom YAML based rules for marking items unavailable in z3950 results.','Textarea')
879
;
850
;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-169 / +88 lines)
Lines 74-84 Circulation: Link Here
74
            - pref: HoldsToPullStartDate
74
            - pref: HoldsToPullStartDate
75
              class: integer
75
              class: integer
76
            - day(s) ago. Note that the default end date is controlled by the system preference <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ConfirmFutureHolds">ConfirmFutureHolds</a>.
76
            - day(s) ago. Note that the default end date is controlled by the system preference <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ConfirmFutureHolds">ConfirmFutureHolds</a>.
77
        -
78
            - When building the holds queue, calculate hold matches using
79
            - pref: HoldsQueueParallelLoopsCount
80
              class: integer
81
            - parallel loop(s). The more loops used, the faster it will calculate and the more computing resources it will use.
82
        -
77
        -
83
            - pref: AllowAllMessageDeletion
78
            - pref: AllowAllMessageDeletion
84
              choices:
79
              choices:
Lines 132-138 Circulation: Link Here
132
            - pref: CircAutoPrintQuickSlip
127
            - pref: CircAutoPrintQuickSlip
133
              choices:
128
              choices:
134
                  clear: "clear the screen"
129
                  clear: "clear the screen"
135
                  ignore: "do nothing"
136
                  qslip: "open a print quick slip window"
130
                  qslip: "open a print quick slip window"
137
                  slip: "open a print slip window"
131
                  slip: "open a print slip window"
138
            - .
132
            - .
Lines 140-146 Circulation: Link Here
140
            - Include the stylesheet at
134
            - Include the stylesheet at
141
            - pref: NoticeCSS
135
            - pref: NoticeCSS
142
              class: url
136
              class: url
143
            - on notices (this should be a complete URL, starting with <code>http://</code>).
137
            - on notices. (This should be a complete URL, starting with <code>http://</code>)
144
        -
138
        -
145
            - pref: UpdateTotalIssuesOnCirc
139
            - pref: UpdateTotalIssuesOnCirc
146
              choices:
140
              choices:
Lines 174-192 Circulation: Link Here
174
              choices:
168
              choices:
175
                  1: "Use"
169
                  1: "Use"
176
                  0: "Don't use"
170
                  0: "Don't use"
177
            - circulation desks.
171
            - circulation desks with circulation.
172
178
    Checkout policy:
173
    Checkout policy:
179
        -
180
            - pref: AlwaysLoadCheckoutsTable
181
              choices:
182
                  1: "Do"
183
                  0: "Don't"
184
            - always load the checkouts table immediately on opening the patron account in the staff interface.
185
        -
174
        -
186
            - Delay the automatic loading of the checkouts table on the checkouts page by
175
            - Delay the automatic loading of the checkouts table on the checkouts page by
187
            - pref: LoadCheckoutsTableDelay
176
            - pref: LoadCheckoutsTableDelay
188
              class: integer
177
              class: integer
189
            - seconds when "Always show checkouts automatically" or <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=AlwaysLoadCheckoutsTable">AlwaysLoadCheckoutsTable</a> are enabled.
178
            - seconds when "Always show checkouts automatically" is enabled.
190
        -
179
        -
191
            - pref: OnSiteCheckoutAutoCheck
180
            - pref: OnSiteCheckoutAutoCheck
192
              choices:
181
              choices:
Lines 237-250 Circulation: Link Here
237
            - checkouts of items reserved to someone else via SIP checkout messages.
226
            - checkouts of items reserved to someone else via SIP checkout messages.
238
            - If allowed do not generate RESERVED warning.
227
            - If allowed do not generate RESERVED warning.
239
            - This allows self checkouts for those items. If using the holds queue items with pending holds will be marked as "unavailable" if this set to "Don't allow".
228
            - This allows self checkouts for those items. If using the holds queue items with pending holds will be marked as "unavailable" if this set to "Don't allow".
240
        -
241
            - pref: AllowItemsOnLoanCheckoutSIP
242
              choices:
243
                  1: Allow
244
                  0: "Don't allow"
245
            - checkouts of items already checked out to someone else via SIP checkout messages.
246
            - If allowed do not generate ISSUED_TO_ANOTHER warning.
247
            - This allows self checkouts for those items.
248
        -
229
        -
249
            - pref: AllowItemsOnHoldCheckoutSCO
230
            - pref: AllowItemsOnHoldCheckoutSCO
250
              choices:
231
              choices:
Lines 291-327 Circulation: Link Here
291
            - pref: CircControl
272
            - pref: CircControl
292
              type: choice
273
              type: choice
293
              choices:
274
              choices:
294
                  PickupLibrary: the library you are logged in at
275
                  PickupLibrary: the library you are logged in at.
295
                  PatronLibrary: the library the patron is from
276
                  PatronLibrary: the library the patron is from.
296
                  ItemHomeLibrary: the library the item is from
277
                  ItemHomeLibrary: the library the item is from.
297
            - .
298
        -
278
        -
299
            - To determine whether an item is transferred or remains in the library after checkin, use the circulation rules of
279
            - To determine whether an item is transferred or remains in the library after checkin, use the circulation rules of
300
            - pref: CircControlReturnsBranch
280
            - pref: CircControlReturnsBranch
301
              type: choice
281
              type: choice
302
              choices:
282
              choices:
303
                  ItemHoldingLibrary: the library the item is currently held by
283
                  ItemHoldingLibrary: the library the item is currently held by.
304
                  CheckInLibrary: the library the item is checked in at
284
                  CheckInLibrary: the library the item is checked in at.
305
                  ItemHomeLibrary: the library the item is owned by
285
                  ItemHomeLibrary: the library the item is owned by.
306
            - .
307
        -
286
        -
308
            - Use the circulation and fine rules of
287
            - Use the circulation and fine rules of
309
            - pref: HomeOrHoldingBranch
288
            - pref: HomeOrHoldingBranch
310
              type: choice
289
              type: choice
311
              choices:
290
              choices:
312
                  homebranch: the item's home library (homebranch)
291
                  homebranch: the item's home library (homebranch).
313
                  holdingbranch: the item's holding library (holdingbranch)
292
                  holdingbranch: the item's holding library (holdingbranch).
314
            - .
315
        -
293
        -
316
            - Allow items to be checked in
294
            - Allow items to be checked in
317
            - pref: AllowReturnToBranch
295
            - pref: AllowReturnToBranch
318
              type: choice
296
              type: choice
319
              choices:
297
              choices:
320
                  anywhere: at any library
298
                  anywhere: at any library.
321
                  homebranch: only at the library the item is from
299
                  homebranch: only at the library the item is from.
322
                  holdingbranch: only at the library the item was checked out from
300
                  holdingbranch: only at the library the item was checked out from.
323
                  homeorholdingbranch: either at the library the item is from or the library it was checked out from
301
                  homeorholdingbranch: either at the library the item is from or the library it was checked out from.
324
            - .
325
        -
302
        -
326
            - For search results in the staff interface, display
303
            - For search results in the staff interface, display
327
            - pref: StaffSearchResultsDisplayBranch
304
            - pref: StaffSearchResultsDisplayBranch
Lines 341-356 Circulation: Link Here
341
            - Calculate "No renewal before" based on
318
            - Calculate "No renewal before" based on
342
            - pref: NoRenewalBeforePrecision
319
            - pref: NoRenewalBeforePrecision
343
              choices:
320
              choices:
344
                  date: date
321
                  date: date.
345
                  exact_time: exact time
322
                  exact_time: exact time.
346
            - . Only relevant for loans calculated in days, hourly loans are not affected.
323
            - Only relevant for loans calculated in days, hourly loans are not affected.
347
        -
324
        -
348
            - When renewing checkouts, base the new due date on
325
            - When renewing checkouts, base the new due date on
349
            - pref: RenewalPeriodBase
326
            - pref: RenewalPeriodBase
350
              choices:
327
              choices:
351
                  date_due: the old due date of the checkout
328
                  date_due: the old due date of the checkout.
352
                  now: the current date
329
                  now: the current date.
353
            - .
354
        -
330
        -
355
            - pref: RenewalSendNotice
331
            - pref: RenewalSendNotice
356
              choices:
332
              choices:
Lines 448-453 Circulation: Link Here
448
                  1: ask
424
                  1: ask
449
                  0: "don't ask"
425
                  0: "don't ask"
450
            - "for confirmation."
426
            - "for confirmation."
427
        -
428
            - By default, set the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> value of an item to
429
            - pref: DefaultLongOverdueLostValue
430
              choices: authval
431
              source: LOST
432
            - when the item has been overdue for more than
433
            - pref: DefaultLongOverdueDays
434
              class: integer
435
            - days.
436
            - <br>WARNING — These preferences will activate the automatic item loss process. Leave these fields empty if you don't want to activate this feature.
437
            - "<br>Example: [1] [30] Sets an item to the <a href='/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST'>LOST</a> value 1 when it has been overdue for more than 30 days."
438
            - <br>(Used when the longoverdue.pl script is called without the --lost parameter)
439
            - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it."
440
        -
441
            - "Charge a lost item to the patron's account when the <a href='/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST'>LOST</a> value of the item changes to:"
442
            - pref: DefaultLongOverdueChargeValue
443
              choices: authval
444
              source: LOST
445
            - <br>Leave this field empty if you don't want to charge the patron for lost items.
446
            - <br>(Used when the longoverdue.pl script is called without the --charge parameter)
447
            - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it."
448
        -
449
            - When using the automatic item loss process, skip items with <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> values matching any of
450
            - pref: DefaultLongOverdueSkipLostStatuses
451
            - "."
452
            - <br>Leave this field empty if you don't want to skip any <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> statuses.
453
            - <br>Set to a list of comma separated values, e.g. <em>5,6,7</em>.
454
        -
455
            - "When issuing an item that has been marked as lost, "
456
            - pref: IssueLostItem
457
              choices:
458
                  confirm: "require confirmation"
459
                  alert: "display a message"
460
                  nothing : "do nothing"
461
            - .
451
        -
462
        -
452
            - "When checking out an item, "
463
            - "When checking out an item, "
453
            - pref: RecordStaffUserOnCheckout
464
            - pref: RecordStaffUserOnCheckout
Lines 455-460 Circulation: Link Here
455
                  1: "record"
466
                  1: "record"
456
                  0: "don't record"
467
                  0: "don't record"
457
            - "the user who checked out the item."
468
            - "the user who checked out the item."
469
        -
470
            - "Mark items as returned when flagged as lost "
471
            - pref: MarkLostItemsAsReturned
472
              multiple:
473
                cronjob: "from the longoverdue cronjob"
474
                batchmod: "from the batch item modification tool"
475
                additem: "when cataloguing an item"
476
                moredetail: "from the items tab of the catalog module"
477
                pendingreserves: "from the 'Holds to pull' list"
478
                onpayment: "when receiving payment for the item"
479
                claim_returned: "when marking an item as a return claim"
480
            - .
458
        -
481
        -
459
            - pref: AllowMultipleIssuesOnABiblio
482
            - pref: AllowMultipleIssuesOnABiblio
460
              choices:
483
              choices:
Lines 472-478 Circulation: Link Here
472
              choices:
495
              choices:
473
                  1: Enable
496
                  1: Enable
474
                  0: Disable
497
                  0: Disable
475
            - the on-site checkout for all cases (even if a patron is debarred or under similar restrictions).
498
            - the on-site checkout for all cases (even if a patron is debarred, etc.).
476
        -
499
        -
477
            - pref: ConsiderOnSiteCheckoutsAsNormalCheckouts
500
            - pref: ConsiderOnSiteCheckoutsAsNormalCheckouts
478
              choices:
501
              choices:
Lines 541-547 Circulation: Link Here
541
            - "_BLANK_: FIC - causes an item that has no location to be updated into the Fiction location on check out.<br/>"
564
            - "_BLANK_: FIC - causes an item that has no location to be updated into the Fiction location on check out.<br/>"
542
            - "FIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check out.<br/>"
565
            - "FIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check out.<br/>"
543
            - "_ALL_: FIC - causes all items to be updated into the Fiction location on check out.<br/>"
566
            - "_ALL_: FIC - causes all items to be updated into the Fiction location on check out.<br/>"
544
            - "PROC: _PERM_ - causes an item that is in the Processing Center to be updated to its permanent location.<br/><br/>"
567
            - "PROC: _PERM_ - causes an item that is in the Processing Center to be updated to it's permanent location.<br/><br/>"
545
            - "General rule: if the location value on the left of the colon (:) matches the item's current location, it will be updated to match the location value on the right of the colon (:).<br/>"
568
            - "General rule: if the location value on the left of the colon (:) matches the item's current location, it will be updated to match the location value on the right of the colon (:).<br/>"
546
            - "Note: PROC and CART are special values, for these locations the location and permanent_location can differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.<br/>"
569
            - "Note: PROC and CART are special values, for these locations the location and permanent_location can differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.<br/>"
547
            - "The special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.<br/>"
570
            - "The special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.<br/>"
Lines 561-645 Circulation: Link Here
561
                  open: "extend the loan period and set the checkout to be due at the library's open time."
584
                  open: "extend the loan period and set the checkout to be due at the library's open time."
562
                  close: "shorten the loan period and set the checkout to be due at the library's close time."
585
                  close: "shorten the loan period and set the checkout to be due at the library's close time."
563
                  ignore: "do not consider the library's opening hours."
586
                  ignore: "do not consider the library's opening hours."
564
    Lost item policy:
565
        -
566
            - By default, set the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> value of an item to
567
            - pref: DefaultLongOverdueLostValue
568
              choices: authval
569
              source: LOST
570
            - when the item has been overdue for more than
571
            - pref: DefaultLongOverdueDays
572
              class: integer
573
            - days.
574
            - <br>WARNING — These preferences will activate the automatic item loss process. Leave these fields empty if you don't want to activate this feature.
575
            - "<br>Example: [1] [30] Sets an item to the <a href='/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST'>LOST</a> value 1 when it has been overdue for more than 30 days."
576
            - <br>(Used when the longoverdue.pl script is called without the --lost parameter)
577
            - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it."
578
        -
579
            - "Charge a lost item to the patron's account when the <a href='/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST'>LOST</a> value of the item changes to:"
580
            - pref: DefaultLongOverdueChargeValue
581
              choices: authval
582
              source: LOST
583
            - <br>Leave this field empty if you don't want to charge the patron for lost items.
584
            - <br>(Used when the longoverdue.pl script is called without the --charge parameter)
585
            - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it."
586
        -
587
            - The long overdue process affects patrons in the
588
            - pref: DefaultLongOverduePatronCategories
589
              choices: patron-categories
590
              class: multiple
591
            - categories.
592
            - <br>Leave this field empty if you want to process long overdues for all patron categories.
593
            - <br>(Used when the longoverdue.pl script is called without the --category parameter)
594
            - <br><strong>WARNING:</strong> This preference will be active only if DefaultLongOverdueSkipPatronCategories is empty.
595
            - <br>
596
            - The long overdue process <i>does not</i> affect patrons in the
597
            - pref: DefaultLongOverdueSkipPatronCategories
598
              choices: patron-categories
599
              class: multiple
600
            - categories.
601
            - <br>Leave this field empty if you want to process long overdues for all patron categories.
602
            - <br>(Used when the longoverdue.pl script is called without the --skip-category parameter)
603
            - <br><strong>WARNING:</strong> This preference overrides the DefaultLongOverduePatronCategories preference, so the DefaultLongOverduePatronCategories filter will not take effect.
604
            - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it."
605
        -
606
            - When using the automatic item loss process, skip items with <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> values matching any of
607
            - pref: DefaultLongOverdueSkipLostStatuses
608
            - .
609
            - <br>Leave this field empty if you don't want to skip any <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> statuses.
610
            - <br>Set to a list of comma separated values, e.g. <em>5,6,7</em>.
611
        -
612
            - "When issuing an item that has been marked as lost, "
613
            - pref: IssueLostItem
614
              choices:
615
                  confirm: "require confirmation"
616
                  alert: "display a message"
617
                  nothing : "do nothing"
618
            - .
619
        -
620
            - "Mark items as returned when flagged as lost "
621
            - pref: MarkLostItemsAsReturned
622
              multiple:
623
                cronjob: "from the longoverdue cronjob"
624
                batchmod: "from the batch item modification tool"
625
                additem: "when cataloguing an item"
626
                moredetail: "from the items tab of the catalog module"
627
                pendingreserves: "from the 'Holds to pull' list"
628
                onpayment: "when receiving payment for the item"
629
                claim_returned: "when marking an item as a return claim"
630
            - .
631
        -
632
            - "Update item status to"
633
            - pref: UpdateItemLostStatusWhenPaid
634
              choices: authval
635
              source: LOST
636
            - "when the outstanding balance is paid."
637
        -
638
            - "Update item status to"
639
            - pref: UpdateItemLostStatusWhenWriteoff
640
              choices: authval
641
              source: LOST
642
            - "when the outstanding balance is written off."
643
    Checkin policy:
587
    Checkin policy:
644
        -
588
        -
645
            - pref: TrapHoldsOnOrder
589
            - pref: TrapHoldsOnOrder
Lines 710-716 Circulation: Link Here
710
            - "_BLANK_: FIC - causes an item that has no location to be updated into the Fiction location on check in.<br/>"
654
            - "_BLANK_: FIC - causes an item that has no location to be updated into the Fiction location on check in.<br/>"
711
            - "FIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check in.<br/>"
655
            - "FIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check in.<br/>"
712
            - "_ALL_: FIC - causes all items to be updated into the Fiction location on check in.<br/>"
656
            - "_ALL_: FIC - causes all items to be updated into the Fiction location on check in.<br/>"
713
            - "PROC: _PERM_ - causes an item that is in the Processing center to be updated to its permanent location.<br/><br/>"
657
            - "PROC: _PERM_ - causes an item that is in the Processing center to be updated to it's permanent location.<br/><br/>"
714
            - "General rule: if the location value on the left of the colon (:) matches the item's current location, it will be updated to match the location value on the right of the colon (:).<br/>"
658
            - "General rule: if the location value on the left of the colon (:) matches the item's current location, it will be updated to match the location value on the right of the colon (:).<br/>"
715
            - "Note: PROC and CART are special values, for these locations the location and permanent_location can differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.<br/>"
659
            - "Note: PROC and CART are special values, for these locations the location and permanent_location can differ, in all other cases an update will affect both. Items in the CART location will be returned to their permanent location on checkout.<br/>"
716
            - "The special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.<br/>"
660
            - "The special term _BLANK_ may be used on either side of a value pair to update or remove the location from items with no location assigned.<br/>"
Lines 762-768 Circulation: Link Here
762
            - Default the holds ratio report to
706
            - Default the holds ratio report to
763
            - pref: HoldRatioDefault
707
            - pref: HoldRatioDefault
764
              class: integer
708
              class: integer
765
            - .
709
            - "."
766
        -
710
        -
767
            - In the staff interface, split the holds queue into separate tables by
711
            - In the staff interface, split the holds queue into separate tables by
768
            - pref: HoldsSplitQueue
712
            - pref: HoldsSplitQueue
Lines 771-777 Circulation: Link Here
771
                  branch: "pickup library"
715
                  branch: "pickup library"
772
                  itemtype: "hold item type"
716
                  itemtype: "hold item type"
773
                  branch_itemtype: "pickup library and item type"
717
                  branch_itemtype: "pickup library and item type"
774
            - .
718
            - "."
775
        -
719
        -
776
            - pref: EnableItemGroupHolds
720
            - pref: EnableItemGroupHolds
777
              choices:
721
              choices:
Lines 784-790 Circulation: Link Here
784
              choices:
728
              choices:
785
                  actual: "the actual priority, which may be out of order"
729
                  actual: "the actual priority, which may be out of order"
786
                  virtual: "'virtual' priorities, where each group is numbered separately"
730
                  virtual: "'virtual' priorities, where each group is numbered separately"
787
            - .
731
            - "."
788
        -
732
        -
789
            - pref: RealTimeHoldsQueue
733
            - pref: RealTimeHoldsQueue
790
              choices:
734
              choices:
Lines 874-880 Circulation: Link Here
874
            - If using <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ExpireReservesMaxPickUpDelay">ExpireReservesMaxPickUpDelay</a>, charge a patron who allows their waiting hold to expire a fee of
818
            - If using <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ExpireReservesMaxPickUpDelay">ExpireReservesMaxPickUpDelay</a>, charge a patron who allows their waiting hold to expire a fee of
875
            - pref: ExpireReservesMaxPickUpDelayCharge
819
            - pref: ExpireReservesMaxPickUpDelayCharge
876
              class: currency
820
              class: currency
877
            - .
821
            - "."
878
        -
822
        -
879
            - The holds queue should prioritize filling a hold by matching the patron's home library with an item having a matching
823
            - The holds queue should prioritize filling a hold by matching the patron's home library with an item having a matching
880
            - pref: HoldsQueuePrioritizeBranch
824
            - pref: HoldsQueuePrioritizeBranch
Lines 935-958 Circulation: Link Here
935
                  0:  "Don't enable"
879
                  0:  "Don't enable"
936
            - "sending an email to the patron's library whenever a hold request is placed."
880
            - "sending an email to the patron's library whenever a hold request is placed."
937
            - "The first email address set from this list will be used: library reply-to, library email, <a href='/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ReplytoDefault'>ReplytoDefault</a>, <a href='/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=KohaAdminEmailAddress'>KohaAdminEmailAddress</a>."
881
            - "The first email address set from this list will be used: library reply-to, library email, <a href='/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ReplytoDefault'>ReplytoDefault</a>, <a href='/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=KohaAdminEmailAddress'>KohaAdminEmailAddress</a>."
938
        -
939
            - pref: EmailPatronWhenHoldIsPlaced
940
              choices:
941
                  1: Email
942
                  0:  "Don't email"
943
            - a patron when they have placed a hold.
944
        -
882
        -
945
            - pref: DisplayMultiPlaceHold
883
            - pref: DisplayMultiPlaceHold
946
              choices:
884
              choices:
947
                  1: Enable
885
                  1: Enable
948
                  0:  "Don't enable"
886
                  0:  "Don't enable"
949
            - "the ability to place holds on multiple bibliographic records from the search results"
887
            - "the ability to place holds on multiple bibliographic records from the search results"
950
        -
951
            - pref: DisplayMultiItemHolds
952
              choices:
953
                  1: Enable
954
                  0: "Don't enable"
955
            - "the ability to place holds on different items at the same time in staff interface and OPAC."
956
        -
888
        -
957
            - pref: TransferWhenCancelAllWaitingHolds
889
            - pref: TransferWhenCancelAllWaitingHolds
958
              choices:
890
              choices:
Lines 1086-1092 Circulation: Link Here
1086
                  loggedinlibrary: "logged in library"
1018
                  loggedinlibrary: "logged in library"
1087
                  homebranch: "item's home library"
1019
                  homebranch: "item's home library"
1088
                  holdingbranch: "item's holding library"
1020
                  holdingbranch: "item's holding library"
1089
            - .
1021
            - "."
1090
        -
1022
        -
1091
            - pref: AutomaticCheckinAutoFill
1023
            - pref: AutomaticCheckinAutoFill
1092
              choices:
1024
              choices:
Lines 1135-1141 Circulation: Link Here
1135
                  1: block
1067
                  1: block
1136
                  0: allow
1068
                  0: allow
1137
            - renewing of items from the staff interface and via the <code>misc/cronjobs/automatic_renewals.pl</code> cronjob.
1069
            - renewing of items from the staff interface and via the <code>misc/cronjobs/automatic_renewals.pl</code> cronjob.
1138
    Fines policy:
1070
        -
1071
            - pref: EmailPatronWhenHoldIsPlaced
1072
              choices:
1073
                  1: Email
1074
                  0:  "Don't email"
1075
            - a patron when they have placed a hold.
1076
    Fines Policy:
1139
        -
1077
        -
1140
            - pref: finesCalendar
1078
            - pref: finesCalendar
1141
              type: choice
1079
              type: choice
Lines 1188-1198 Circulation: Link Here
1188
            - pref: NoRefundOnLostReturnedItemsAge
1126
            - pref: NoRefundOnLostReturnedItemsAge
1189
              class: integer
1127
              class: integer
1190
            - days after it was marked lost.
1128
            - days after it was marked lost.
1191
        -
1192
            - "Don't refund lost fees if the fee was paid in full or if the balance of the fee was paid more than"
1193
            - pref: NoRefundOnLostFinesPaidAge
1194
              class: integer
1195
            - days ago.
1196
        -
1129
        -
1197
            - pref: WhenLostChargeReplacementFee
1130
            - pref: WhenLostChargeReplacementFee
1198
              choices:
1131
              choices:
Lines 1313-1323 Circulation: Link Here
1313
            - pref: SelfCheckAllowByIPRanges
1246
            - pref: SelfCheckAllowByIPRanges
1314
              class: short
1247
              class: short
1315
            - (Leave blank if not used. Use ranges or simple IP addresses separated by spaces, like <code>192.168.1.1 192.168.0.0/24</code>.)
1248
            - (Leave blank if not used. Use ranges or simple IP addresses separated by spaces, like <code>192.168.1.1 192.168.0.0/24</code>.)
1316
        -
1317
            - "Patron categories allowed to check out in a batch while logged into the self checkout system:"
1318
            - pref: SCOBatchCheckoutsValidCategories
1319
              choices: patron-categories
1320
              class: multiple
1321
    Course reserves:
1249
    Course reserves:
1322
        -
1250
        -
1323
            - pref: UseCourseReserves
1251
            - pref: UseCourseReserves
Lines 1363-1369 Circulation: Link Here
1363
              choices:
1291
              choices:
1364
                  1: Enable
1292
                  1: Enable
1365
                  0: Disable
1293
                  0: Disable
1366
            - " redirection from child to host based on MARC21 773$w when the child has no items when requesting articles on the OPAC."
1294
            - " redirection from child to host based on MARC21 773$w when the child has no items when requesting articles on the Opac."
1367
        -
1295
        -
1368
            - pref: ArticleRequestsLinkControl
1296
            - pref: ArticleRequestsLinkControl
1369
              choices:
1297
              choices:
Lines 1413-1418 Circulation: Link Here
1413
                PHOTOCOPY: Photocopy
1341
                PHOTOCOPY: Photocopy
1414
                SCAN: Scan
1342
                SCAN: Scan
1415
            - "The first listed format is selected by default when you request via the OPAC."
1343
            - "The first listed format is selected by default when you request via the OPAC."
1344
            - "(Valid choices are currently: PHOTOCOPY and SCAN. Separate the supported formats by a vertical bar. The first listed format is selected by default when you request via the OPAC.)"
1416
1345
1417
1346
1418
    Item bundles:
1347
    Item bundles:
Lines 1439-1463 Circulation: Link Here
1439
                  charge: charge a lost fee
1368
                  charge: charge a lost fee
1440
                  no_charge: don't charge a lost fee
1369
                  no_charge: don't charge a lost fee
1441
            - .
1370
            - .
1442
        -
1443
            - Automatically resolve the claim and change the resolution to the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=RETURN_CLAIM_RESOLUTION">RETURN_CLAIM_RESOLUTION</a> authorized value
1444
            - pref: AutoClaimReturnStatusOnCheckin
1445
              choices: authval
1446
              source: RETURN_CLAIM_RESOLUTION
1447
            - upon check in.
1448
        -
1449
            - Automatically resolve the claim and change the resolution to the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=RETURN_CLAIM_RESOLUTION">RETURN_CLAIM_RESOLUTION</a> authorized value
1450
            - pref: AutoClaimReturnStatusOnCheckout
1451
              choices: authval
1452
              source: RETURN_CLAIM_RESOLUTION
1453
            - upon check out.
1454
        -
1371
        -
1455
            - Use the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> authorized value
1372
            - Use the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> authorized value
1456
            - pref: ClaimReturnedLostValue
1373
            - pref: ClaimReturnedLostValue
1457
              choices: authval
1374
              choices: authval
1458
              source: LOST
1375
              source: LOST
1459
            - to represent 'claims returned'.
1376
            - to represent 'claims returned'.
1460
            - <span class="hint">This will not update the lost status of the item if there is already an existing lost status set.</span>
1461
        -
1377
        -
1462
            - Warn librarians that a patron has excessive return claims if the patron has claimed the return of more than
1378
            - Warn librarians that a patron has excessive return claims if the patron has claimed the return of more than
1463
            - pref: ClaimReturnedWarningThreshold
1379
            - pref: ClaimReturnedWarningThreshold
Lines 1516-1521 Circulation: Link Here
1516
                  1: Send
1432
                  1: Send
1517
                  0: Don't send
1433
                  0: Don't send
1518
            - OPAC patron messages in the SIP2 screen message field.
1434
            - OPAC patron messages in the SIP2 screen message field.
1435
        -
1436
            - Begin each SIP screen message with the phrase
1437
            - pref: SIP2ScreenMessageGreeting
1519
1438
1520
    Curbside pickup module:
1439
    Curbside pickup module:
1521
        -
1440
        -
(-)a/t/db_dependent/SIP/Patron.t (-46 / +21 lines)
Lines 5-11 Link Here
5
5
6
use Modern::Perl;
6
use Modern::Perl;
7
use Test::NoWarnings;
7
use Test::NoWarnings;
8
use Test::More tests => 12;
8
use Test::More tests => 13;
9
9
10
use t::lib::Mocks;
10
use t::lib::Mocks;
11
use t::lib::TestBuilder;
11
use t::lib::TestBuilder;
Lines 32-37 is( defined $sip_patron, 1, "Patron is valid" ); Link Here
32
$schema->resultset('Borrower')->search( { cardnumber => $card } )->delete;
32
$schema->resultset('Borrower')->search( { cardnumber => $card } )->delete;
33
my $sip_patron2 = C4::SIP::ILS::Patron->new($card);
33
my $sip_patron2 = C4::SIP::ILS::Patron->new($card);
34
is( $sip_patron2, undef, "Patron is not valid (anymore)" );
34
is( $sip_patron2, undef, "Patron is not valid (anymore)" );
35
t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Greetings from Koha. " );
35
36
36
subtest "new tests" => sub {
37
subtest "new tests" => sub {
37
38
Lines 337-360 subtest "NoIssuesChargeGuarantees tests" => sub { Link Here
337
338
338
    $schema->storage->txn_begin;
339
    $schema->storage->txn_begin;
339
340
340
    my $patron_category = $builder->build(
341
    my $patron  = $builder->build_object( { class => 'Koha::Patrons' } );
341
        {
342
            source => 'Category',
343
            value  => {
344
                categorycode   => 'NOT_X', category_type => 'P', enrolmentfee => 0, noissueschargeguarantees => 0,
345
                noissuescharge => 0,       noissueschargeguarantorswithguarantees => 0
346
            }
347
        }
348
    );
349
350
    my $patron = $builder->build_object(
351
        {
352
            class => 'Koha::Patrons',
353
            value => {
354
                categorycode => $patron_category->{categorycode},
355
            }
356
        }
357
    );
358
    my $child   = $builder->build_object( { class => 'Koha::Patrons' } );
342
    my $child   = $builder->build_object( { class => 'Koha::Patrons' } );
359
    my $sibling = $builder->build_object( { class => 'Koha::Patrons' } );
343
    my $sibling = $builder->build_object( { class => 'Koha::Patrons' } );
360
    $child->add_guarantor( { guarantor_id => $patron->borrowernumber, relationship => 'parent' } );
344
    $child->add_guarantor( { guarantor_id => $patron->borrowernumber, relationship => 'parent' } );
Lines 426-457 subtest "NoIssuesChargeGuarantorsWithGuarantees tests" => sub { Link Here
426
410
427
    $schema->storage->txn_begin;
411
    $schema->storage->txn_begin;
428
412
429
    my $patron_category = $builder->build(
413
    my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
430
        {
414
    my $child  = $builder->build_object( { class => 'Koha::Patrons' } );
431
            source => 'Category',
432
            value  => {
433
                categorycode   => 'NOT_X', category_type => 'P', enrolmentfee => 0, noissueschargeguarantees => 0,
434
                noissuescharge => 0,       noissueschargeguarantorswithguarantees => 0
435
            }
436
        }
437
    );
438
439
    my $patron = $builder->build_object(
440
        {
441
            class => 'Koha::Patrons',
442
            value => {
443
                categorycode => $patron_category->{categorycode},
444
            }
445
        }
446
    );
447
    my $child = $builder->build_object(
448
        {
449
            class => 'Koha::Patrons',
450
            value => {
451
                categorycode => $patron_category->{categorycode},
452
            }
453
        }
454
    );
455
    $child->add_guarantor( { guarantor_id => $patron->borrowernumber, relationship => 'parent' } );
415
    $child->add_guarantor( { guarantor_id => $patron->borrowernumber, relationship => 'parent' } );
456
416
457
    t::lib::Mocks::mock_preference( 'noissuescharge',                         50 );
417
    t::lib::Mocks::mock_preference( 'noissuescharge',                         50 );
Lines 557-559 subtest "Patron messages tests" => sub { Link Here
557
517
558
    $schema->storage->txn_rollback;
518
    $schema->storage->txn_rollback;
559
};
519
};
560
- 
520
521
subtest "Test SIP2ScreenMessageGreeting" => sub {
522
    plan tests => 2;
523
    $schema->storage->txn_begin;
524
    my $patron  = $builder->build_object( { class => 'Koha::Patrons', value => { opacnote => q{} } } );
525
    my $library = $builder->build_object( { class => 'Koha::Libraries' } );
526
527
    my $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber );
528
    is( $sip_patron->screen_msg, 'Greetings from Koha. ' );
529
530
    t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Welcome to your local library! " );
531
    $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber );
532
    is( $sip_patron->screen_msg, 'Welcome to your local library! ' );
533
534
    $schema->storage->txn_rollback;
535
};

Return to bug 35369