Bugzilla – Attachment 180031 Details for
Bug 35369
SIP default 'Greetings from Koha.' message for patrons should be optional and configurable
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35369: SIP default 'Greetings from Koha.' message for patrons should be optional and configurable
Bug-35369-SIP-default-Greetings-from-Koha-message-.patch (text/plain), 95.81 KB, created by
Nick Clemens (kidclamp)
on 2025-03-31 13:36:30 UTC
(
hide
)
Description:
Bug 35369: SIP default 'Greetings from Koha.' message for patrons should be optional and configurable
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2025-03-31 13:36:30 UTC
Size:
95.81 KB
patch
obsolete
>From 11e8ab02ac3789e3deb867b5b092c8d981990882 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Tue, 21 Nov 2023 06:54:36 -0500 >Subject: [PATCH] Bug 35369: SIP default 'Greetings from Koha.' message for > patrons should be optional and configurable > >It would be nice to have a syspref / sip configuration option to remove or customize this message without having to use regex on the AF field > >Test Plan: >1) Apply this patch >2) Restart all the things! >3) Make a SIP2 patron info request >4) Note the standard AF field response >5) Set the new syspref SIP2ScreenMessageGreeting to something else >6) Restart all the things again! >7) Make another SIP2 patron info request >8) Note your new AF field greeting message! >9) Set SIP2ScreenMessageGreeting to: > [% "test" %] -- [% borrower.surname %] >10) Confirm the TT is interpreted to a message like: > AFtest surname >--- > C4/SIP/ILS/Patron.pm | 108 ++++---- > .../data/mysql/atomicupdate/bug_35369.pl | 19 ++ > installer/data/mysql/mandatory/sysprefs.sql | 65 ++--- > .../admin/preferences/circulation.pref | 257 ++++++------------ > t/db_dependent/SIP/Patron.t | 66 ++--- > 5 files changed, 202 insertions(+), 313 deletions(-) > create mode 100644 installer/data/mysql/atomicupdate/bug_35369.pl > >diff --git a/C4/SIP/ILS/Patron.pm b/C4/SIP/ILS/Patron.pm >index f51cf63cbd4..491b995fb11 100644 >--- a/C4/SIP/ILS/Patron.pm >+++ b/C4/SIP/ILS/Patron.pm >@@ -100,68 +100,73 @@ sub new { > $dexpiry and $dexpiry =~ s/-//g; # YYYYMMDD > > # Get fines and add fines for guarantees (depends on preference NoIssuesChargeGuarantees) >- my $patron_charge_limits = $patron->is_patron_inside_charge_limits(); >- my $fines_amount = $patron_charge_limits->{noissuescharge}->{charge}; >+ my $fines_amount = ( $patron->account->balance > 0 ) ? $patron->account->non_issues_charges : 0; > my $personal_fines_amount = $fines_amount; >- my $fee_limit = $patron_charge_limits->{noissuescharge}->{limit} || 5; >- my $noissueschargeguarantorswithguarantees = >- $patron_charge_limits->{NoIssuesChargeGuarantorsWithGuarantees}->{limit}; >- my $noissueschargeguarantees = $patron_charge_limits->{NoIssuesChargeGuarantees}->{limit}; >- >- my $fines_msg = ""; >- my $fine_blocked = 0; >- if ( $patron_charge_limits->{noissuescharge}->{overlimit} ) { >+ my $fee_limit = _fee_limit(); >+ my $noissueschargeguarantorswithguarantees = C4::Context->preference('NoIssuesChargeGuarantorsWithGuarantees'); >+ my $fines_msg = ""; >+ my $fine_blocked = 0; >+ my $noissueschargeguarantees = C4::Context->preference('NoIssuesChargeGuarantees'); >+ >+ if ( $fines_amount > $fee_limit ) { > $fine_blocked = 1; > $fines_msg .= " -- " . "Patron blocked by fines" if $fine_blocked; > } elsif ($noissueschargeguarantorswithguarantees) { >- $fines_amount = $patron_charge_limits->{NoIssuesChargeGuarantorsWithGuarantees}->{charge}; >- $fine_blocked = $patron_charge_limits->{NoIssuesChargeGuarantorsWithGuarantees}->{overlimit}; >+ $fines_amount += $patron->relationships_debt( >+ { include_guarantors => 1, only_this_guarantor => 0, include_this_patron => 0 } ); >+ $fine_blocked ||= $fines_amount > $noissueschargeguarantorswithguarantees; > $fines_msg .= " -- " . "Patron blocked by fines ($fines_amount) on related accounts" if $fine_blocked; > } elsif ($noissueschargeguarantees) { > if ( $patron->guarantee_relationships->count ) { >- $fines_amount += $patron_charge_limits->{NoIssuesChargeGuarantees}->{charge}; >- $fine_blocked = $patron_charge_limits->{NoIssuesChargeGuarantees}->{overlimit}; >+ $fines_amount += $patron->relationships_debt( >+ { include_guarantors => 0, only_this_guarantor => 1, include_this_patron => 0 } ); >+ $fine_blocked ||= $fines_amount > $noissueschargeguarantees; > $fines_msg .= " -- " . "Patron blocked by fines ($fines_amount) on guaranteed accounts" if $fine_blocked; > } > } > >- # Get currency 3 chars max >- my $currency = substr Koha::Acquisition::Currencies->get_active->currency, 0, 3; >- > my $circ_blocked = > ( C4::Context->preference('OverduesBlockCirc') ne "noblock" && defined $flags->{ODUES}->{itemlist} ) ? 1 : 0; > { > no warnings; # any of these $kp->{fields} being concat'd could be undef >+ my $screen_message = ""; >+ $screen_message .= process_tt( >+ C4::Context->preference('SIP2ScreenMessageGreeting'), >+ { borrower => $patron, sip_borrower => $kp } >+ ); >+ $screen_message .= q{ } if $screen_message; >+ $screen_message .= $kp->{opacnote} . $fines_msg; >+ > %ilspatron = ( >- name => $kp->{firstname} . " " . $kp->{surname}, >- id => $kp->{cardnumber}, # to SIP, the id is the BARCODE, not userid >- password => $pw, >- ptype => $kp->{categorycode}, # 'A'dult. Whatever. >- dateexpiry => $dexpiry, >- dateexpiry_iso => $kp->{dateexpiry}, >- birthdate => $dob, >- birthdate_iso => $kp->{dateofbirth}, >- branchcode => $kp->{branchcode}, >- library_name => "", # only populated if needed, cached here >- borrowernumber => $kp->{borrowernumber}, >- address => $adr, >- home_phone => $kp->{phone}, >- email_addr => $kp->{email}, >- charge_ok => ( !$debarred && !$expired && !$fine_blocked && !$circ_blocked ), >- renew_ok => ( !$debarred && !$expired && !$fine_blocked ), >- recall_ok => ( !$debarred && !$expired && !$fine_blocked ), >- hold_ok => ( !$debarred && !$expired && !$fine_blocked ), >- card_lost => ( $kp->{lost} || $kp->{gonenoaddress} || $flags->{LOST} ), >- claims_returned => 0, >- fines => $personal_fines_amount, >- fees => 0, # currently not distinct from fines >- recall_overdue => 0, >- items_billed => 0, >- screen_msg => 'Greetings from Koha. ' . $kp->{opacnote} . $fines_msg, >- print_line => '', >- items => [], >- hold_items => $flags->{WAITING}->{itemlist}, >- overdue_items => $flags->{ODUES}->{itemlist}, >+ name => $kp->{firstname} . " " . $kp->{surname}, >+ id => $kp->{cardnumber}, # to SIP, the id is the BARCODE, not userid >+ password => $pw, >+ ptype => $kp->{categorycode}, # 'A'dult. Whatever. >+ dateexpiry => $dexpiry, >+ dateexpiry_iso => $kp->{dateexpiry}, >+ birthdate => $dob, >+ birthdate_iso => $kp->{dateofbirth}, >+ branchcode => $kp->{branchcode}, >+ library_name => "", # only populated if needed, cached here >+ borrowernumber => $kp->{borrowernumber}, >+ address => $adr, >+ home_phone => $kp->{phone}, >+ email_addr => $kp->{email}, >+ charge_ok => ( !$debarred && !$expired && !$fine_blocked && !$circ_blocked ), >+ renew_ok => ( !$debarred && !$expired && !$fine_blocked ), >+ recall_ok => ( !$debarred && !$expired && !$fine_blocked ), >+ hold_ok => ( !$debarred && !$expired && !$fine_blocked ), >+ card_lost => ( $kp->{lost} || $kp->{gonenoaddress} || $flags->{LOST} ), >+ claims_returned => 0, >+ fines => $personal_fines_amount, >+ fees => 0, # currently not distinct from fines >+ recall_overdue => 0, >+ items_billed => 0, >+ screen_msg => $screen_message, >+ print_line => '', >+ items => [], >+ hold_items => $flags->{WAITING}->{itemlist}, >+ overdue_items => $flags->{ODUES}->{itemlist}, > too_many_overdue => $circ_blocked, > fine_items => [], > recall_items => [], >@@ -172,7 +177,6 @@ sub new { > fine_blocked => $fine_blocked, > fee_limit => $fee_limit, > userid => $kp->{userid}, >- currency => $currency, > ); > } > >@@ -214,7 +218,7 @@ sub new { > } > } > >- # FIXME: populate recall_items >+ # FIXME: populate fine_items recall_items > $ilspatron{unavail_holds} = _get_outstanding_holds( $kp->{borrowernumber} ); > > my $pending_checkouts = $patron->pending_checkouts; >@@ -403,14 +407,12 @@ sub x_items { > > my $item_list = []; > if ( $self->{$array_var} ) { >- > if ( $start && $start > 1 ) { > --$start; > } else { > $start = 0; > } > if ( $end && $end < @{ $self->{$array_var} } ) { >- --$end; > } else { > $end = @{ $self->{$array_var} }; > --$end; >@@ -445,7 +447,6 @@ sub charged_items { > } > > sub fine_items { >- > require Koha::Database; > require Template; > >@@ -478,7 +479,6 @@ sub fine_items { > } > > return \@return_values; >- > } > > sub recall_items { >@@ -522,6 +522,10 @@ sub inet_privileges { > return $self->{inet} ? 'Y' : 'N'; > } > >+sub _fee_limit { >+ return C4::Context->preference('noissuescharge') || 5; >+} >+ > sub excessive_fees { > my $self = shift; > return ( $self->fee_amount and $self->fee_amount > $self->fee_limit ); >diff --git a/installer/data/mysql/atomicupdate/bug_35369.pl b/installer/data/mysql/atomicupdate/bug_35369.pl >new file mode 100644 >index 00000000000..ecb866f9a12 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_35369.pl >@@ -0,0 +1,19 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => "BUG_NUMBER", >+ description => "A single line description", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ $dbh->do( >+ q{ >+ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES >+ ('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free') >+ } >+ ); >+ >+ say $out "Added new system preference 'SIP2ScreenMessageGreeting'"; >+ }, >+}; >diff --git a/installer/data/mysql/mandatory/sysprefs.sql b/installer/data/mysql/mandatory/sysprefs.sql >index 764eed4f4d1..1947478a401 100644 >--- a/installer/data/mysql/mandatory/sysprefs.sql >+++ b/installer/data/mysql/mandatory/sysprefs.sql >@@ -1,5 +1,4 @@ > INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES >-('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'), > ('AccessControlAllowOrigin', '', NULL, 'Set the Access-Control-Allow-Origin header to the specified value', 'Free'), > ('AccountAutoReconcile','0',NULL,'If enabled, patron balances will get reconciled automatically on each transaction.','YesNo'), > ('AcqCreateItem','ordering','ordering|receiving|cataloguing','Define when the item is created : when ordering, when receiving, or in cataloguing module','Choice'), >@@ -36,7 +35,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('AllowHoldsOnPatronsPossessions','1',NULL,'Allow holds on records that patron have items of it','YesNo'), > ('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'), > ('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'), >-('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'), > ('AllowMultipleCovers','0','1','Allow multiple cover images to be attached to each bibliographic record.','YesNo'), > ('AllowMultipleIssuesOnABiblio',1,'Allow/Don\'t allow patrons to check out multiple items from one biblio','','YesNo'), > ('AllowNotForLoanOverride','0','','If ON, Koha will allow the librarian to loan a not for loan item.','YesNo'), >@@ -78,7 +76,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('AuthorityMergeLimit','50',NULL,'Maximum number of biblio records updated immediately when an authority record has been modified.','integer'), > ('AuthorityMergeMode','loose','loose|strict','Authority merge mode','Choice'), > ('AuthoritySeparator','--','10','Used to separate a list of authorities in a display. Usually --','free'), >-('AuthorityXSLTDetailsDisplay','','','Enable XSL stylesheet control over authority details page display on intranet','Free'), > ('AuthorityXSLTOpacDetailsDisplay','','','Enable XSL stylesheet control over authority details page in the OPAC','Free'), > ('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page in the OPAC','Free'), > ('AuthorityXSLTResultsDisplay','','','Enable XSL stylesheet control over authority results page display on intranet','Free'), >@@ -87,13 +84,12 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('AuthSuccessLog','0',NULL,'If enabled, log successful authentications','YesNo'), > ('AutoApprovePatronProfileSettings', '0', '', 'Automatically approve patron profile changes from the OPAC.', 'YesNo'), > ('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'), >-('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'), >-('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'), > ('autoControlNumber','OFF','biblionumber|OFF','Used to autogenerate a Control Number: biblionumber will be as biblionumber, OFF will leave the field as it is;','Choice'), > ('AutoCreateAuthorities','0',NULL,'Automatically create authorities that do not exist when cataloging records.','YesNo'), > ('AutoCreditNumber', '', '', 'Automatically generate a number for account credits', 'Choice'), > ('AutoEmailNewUser','0',NULL,'Send an email to newly created patrons.','YesNo'), > ('AutoLinkBiblios','0',NULL,'If enabled, link biblio to authorities on creation and edit','YesNo'), >+('AutoLocation','0',NULL,'If ON, IP authentication is enabled, blocking access to the staff interface from unauthorized IP addresses','YesNo'), > ('AutomaticCheckinAutoFill','0',NULL,'Automatically fill the next hold with an automatic check in.','YesNo'), > ('AutomaticConfirmTransfer','0',NULL,'Defines whether transfers should be automatically confirmed at checkin if modal dismissed','YesNo'), > ('AutomaticItemReturn','1',NULL,'If ON, Koha will automatically set up a transfer of this item to its homebranch','YesNo'), >@@ -121,7 +117,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('BiblioDefaultView','normal','normal|marc|isbd','Choose the default detail view in the catalog; choose between normal, marc or isbd','Choice'), > ('BiblioItemtypeInfo','0','0','Control which itemtype info displays for biblio level itemtypes','YesNo'), > ('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'), >-('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'), >+('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'), > ('BlockReturnOfLostItems','0','0','If enabled, items that are marked as lost cannot be returned.','YesNo'), > ('BlockReturnOfWithdrawnItems','1','0','If enabled, items that are marked as withdrawn cannot be returned.','YesNo'), > ('BorrowerMandatoryField','surname|cardnumber',NULL,'Choose the mandatory fields for a patron\'s account','free'), >@@ -154,7 +150,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('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'), > ('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'), > ('ChildNeedsGuarantor', 0, 'If ON, a child patron must have a guarantor when adding the patron.', '', 'YesNo'), >-('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'), >+('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'), > ('CircConfirmItemParts', '0', NULL, 'Require staff to confirm that all parts of an item are present at checkin/checkout.', 'Yes/No'), > ('CircControl','ItemHomeLibrary','PickupLibrary|PatronLibrary|ItemHomeLibrary','Specify the agency that controls the circulation and fines policy','Choice'), > ('CircControlReturnsBranch','ItemHomeLibrary','ItemHomeLibrary|ItemHoldingLibrary|CheckInLibrary','Specify the agency that controls the return policy','Choice'), >@@ -205,10 +201,8 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('DefaultLongOverdueChargeValue', '', NULL, "Charge a lost item to the borrower's account when the LOST value of the item changes to n.", 'integer'), > ('DefaultLongOverdueDays', '', NULL, "Set the LOST value of an item when the item has been overdue for more than n days.", 'integer'), > ('DefaultLongOverdueLostValue', '', NULL, "Set the LOST value of an item to n when the item has been overdue for more than defaultlongoverduedays days.", 'integer'), >-('DefaultLongOverduePatronCategories', '', NULL, "Set the patron categories that will be listed when longoverdue cronjob is executed", 'choice'), > ('DefaultLongOverdueSkipLostStatuses', '', NULL, 'Skip these lost statuses by default in longoverdue.pl', 'Free'), >-('DefaultLongOverdueSkipPatronCategories', '', NULL, "Set the patron categories that will not be listed when longoverdue cronjob is executed", 'choice'), >-('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'), >+('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'), > ('DefaultPatronSearchMethod','starts_with','Choose which search method to use by default when searching with PatronAutoComplete','starts_with|contains','Choice'), > ('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'), > ('defaultSortField','relevance','relevance|popularity|call_number|pubdate|acqdate|title|author','Specify the default field used for sorting','Choice'), >@@ -221,7 +215,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('displayFacetCount','0',NULL,NULL,'YesNo'), > ('DisplayIconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.','YesNo'), > ('DisplayLibraryFacets', 'holding', 'home|holding|both', 'Defines which library facets to display.', 'Choice'), >-('DisplayMultiItemHolds','0','','Display the ability to place holds on different items at the same time in staff interface and OPAC','YesNo'), > ('DisplayMultiPlaceHold','1','','Display the ability to place multiple holds or not','YesNo'), > ('DisplayOPACiconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages in the OPAC.','YesNo'), > ('DumpSearchQueryTemplate',0,'','Add the search query being passed to the search engine into the template for debugging','YesNo'), >@@ -238,8 +231,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('EmailAddressForPatronRegistrations', '', '', ' If you choose EmailAddressForPatronRegistrations you have to enter a valid email address: ', 'free'), > ('EmailAddressForSuggestions','','',' If you choose EmailAddressForSuggestions you have to enter a valid email address: ','free'), > ('EmailFieldPrecedence','email|emailpro|B_email','','Ordered list of patron email fields to use when AutoEmailPrimaryAddress is set to first valid','multiple'), >-('EmailFieldPrimary','','|email|emailpro|B_email|cardnumber|MULTI','Defines the default email address field where patron email notices are sent.','Choice'), >-('EmailFieldSelection','','email|emailpro|B_email','Selection list of patron email fields to use whern AutoEmailPrimaryAddress is set to selected addresses','multiple'), >+('EmailFieldPrimary','OFF','email|emailpro|B_email|cardnumber|OFF','Defines the default email address field where patron email notices are sent.','Choice'), > ('emailLibrarianWhenHoldIsPlaced','0',NULL,'If ON, emails the librarian whenever a hold is placed','YesNo'), > ('EmailOverduesNoEmail','1',NULL,'Send send overdues of patrons without email address to staff','YesNo'), > ('EmailPatronRegistrations', '0', '0|EmailAddressForPatronRegistrations|BranchEmailAddress|KohaAdminEmailAddress', 'Choose email address that new patron registrations will be sent to: ', 'Choice'), >@@ -286,7 +278,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('FinesLog','1',NULL,'If ON, log fines','YesNo'), > ('finesMode','off','off|production','Choose the fines mode, \'off\' (no charges), \'production\' (accrue overdue fines). Requires accruefines cronjob.','Choice'), > ('ForceLibrarySelection','0',NULL,'Force staff to select a library when logging into the staff interface.','YesNo'), >-('ForcePasswordResetWhenSetByStaff','0',NULL,'Force a staff created patron account to reset its password after its first OPAC login.','YesNo'), > ('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'), > ('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'), > ('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'), >@@ -309,7 +300,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('HoldsAutoFillPrintSlip','0',NULL,'If on, hold slip print dialog will be displayed automatically','YesNo'), > ('HoldsLog','0',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo'), > ('HoldsNeedProcessingSIP', '0', NULL, 'Require staff to check-in before hold is set to waiting state', 'YesNo' ), >-('HoldsQueueParallelLoopsCount', '1', NULL, 'Number of parallel loops to use when running the holds queue builder', 'Integer'), > ('HoldsQueuePrioritizeBranch','homebranch','holdingbranch|homebranch','Decides if holds queue builder patron home library match to home or holding branch','Choice'), > ('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'), > ('HoldsSplitQueue','nothing','nothing|branch|itemtype|branch_itemtype','In the staff interface, split the holds view by the given criteria','Choice'), >@@ -326,6 +316,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('ILLHiddenRequestStatuses', NULL, NULL, 'ILL statuses that are considered finished and should not be displayed in the ILL module', 'multiple'), > ('IllLog', 0, '', 'If ON, log information about ILL requests', 'YesNo'), > ('ILLModule','0','If ON, enables the interlibrary loans module.','','YesNo'), >+('ILLModuleCopyrightClearance','','70|10','Enter text to enable the copyright clearance stage of request creation. Text will be displayed','Textarea'), > ('ILLModuleDisclaimerByType','','','YAML defining disclaimer settings for each ILL request type','Textarea'), > ('ILLModuleUnmediated','0','','If enabled, try to immediately progress newly placed ILL requests.','YesNo'), > ('ILLOpacbackends',NULL,NULL,'ILL backends to enabled for OPAC initiated requests','multiple'), >@@ -334,7 +325,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'), > ('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'), > ('ImageLimit','5','','Limit images stored in the database by the Patron Card image manager to this number.','Integer'), >-('IncludeSeeAlsoFromInSearches','0','','Include see-also-from references in searches.','YesNo'), > ('IncludeSeeFromInSearches','0','','Include see-from references in searches.','YesNo'), > ('IndependentBranches','0',NULL,'If ON, increases security between libraries','YesNo'), > ('IndependentBranchesPatronModifications','0', NULL, 'Show only modification request for the logged in branch','YesNo'), >@@ -347,6 +337,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('IntranetCoce','0', NULL, 'If on, enables cover retrieval from the configured Coce server in the staff interface', 'YesNo'), > ('intranetcolorstylesheet','','50','Define the color stylesheet to use in the staff interface','free'), > ('IntranetFavicon','','','Enter a complete URL to an image to replace the default Koha favicon on the staff interface','free'), >+('IntranetmainUserblock','','70|10','Add a block of HTML that will display on the intranet home page','Textarea'), > ('IntranetNav','','70|10','Use HTML tabs to add navigational links to the top-hand navigational bar in the staff interface','Textarea'), > ('IntranetNumbersPreferPhrase','0',NULL,'Control the use of phr operator in callnumber and standard number staff interface searches','YesNo'), > ('intranetreadinghistory','1','','If ON, Checkout history is enabled for all patrons','YesNo'), >@@ -366,11 +357,11 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('itemBarcodeInputFilter','','whitespace|T-prefix|cuecat|libsuite8|EAN13','If set, allows specification of a item barcode input filter','Choice'), > ('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'), > ('ItemsDeniedRenewal','','','This syspref allows to define custom rules for denying renewal of specific items.','Textarea'), >-('JobsNotificationMethod','STOMP','polling|STOMP','Define the preferred job worker notification method','Choice'), > ('KohaAdminEmailAddress','root@localhost','','Define the email address where patron modification requests are sent','free'), > ('KohaManualBaseURL','https://koha-community.org/manual/','','Where is the Koha manual/documentation located?','Free'), > ('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'), > ('LabelMARCView','standard','standard|economical','Define how a MARC record will display','Choice'), >+('language','en',NULL,'Set the default language in the staff interface.','Languages'), > ('LibraryName','','','Define the library name as displayed on the OPAC',''), > ('LibraryThingForLibrariesEnabled','0','','Enable or Disable Library Thing for Libraries Features','YesNo'), > ('LibraryThingForLibrariesID','','','See:http://librarything.com/forlibraries/','free'), >@@ -402,7 +393,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('MarcFieldForModifierName','',NULL,'Where to store the name of the record''s last modifier','Free'), > ('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'), > ('MarcItemFieldsToOrder','',NULL,'Set the mapping values for new item records created from a MARC record in a staged file. In a YAML format.','textarea'), >-('MarcOrderingAutomation','0',NULL,'Enables automatic order line creation from MARC records','YesNo'), > ('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'), > ('MARCOverlayRules','0',NULL,'Use the MARC record overlay rules system to decide what actions to take for each field when modifying records.','YesNo'), > ('MarkLostItemsAsReturned','batchmod,moredetail,cronjob,additem,pendingreserves,onpayment','claim_returned|batchmod|moredetail|cronjob|additem|pendingreserves|onpayment','Mark items as returned when flagged as lost','multiple'), >@@ -428,7 +418,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('NoIssuesChargeGuarantees','','','Define maximum amount withstanding before checkouts are blocked','Integer'), > ('NoIssuesChargeGuarantorsWithGuarantees','','','Define maximum amount withstanding before checkouts are blocked including guarantors and their other guarantees','Integer'), > ('noItemTypeImages','0',NULL,'If ON, disables itemtype images in the staff interface','YesNo'), >-('NoRefundOnLostFinesPaidAge','','','Do not refund lost item fees if the fee was paid off more than this number of days ago','Integer'), > ('NoRefundOnLostReturnedItemsAge','','','Do not refund lost item fees if item is lost for more than this number of days','Integer'), > ('NoRenewalBeforePrecision','exact_time','date|exact_time','Calculate "No renewal before" based on date only or exact time of due date','Choice'), > ('NotesToHide','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'), >@@ -456,7 +445,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('OAI-PMH:AutoUpdateSetsEmbedItemData', '0', '', 'Embed item information when automatically updating OAI sets. Requires OAI-PMH:AutoUpdateSets syspref to be enabled', 'YesNo'), > ('OAI-PMH:ConfFile','',NULL,'If empty, Koha OAI Server operates in normal mode, otherwise it operates in extended mode.','File'), > ('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'), >-('OAI-PMH:HarvestEmailReport','','','After an OAI-PMH harvest, send a report email to the email address','Free'), > ('OAI-PMH:MaxCount','50',NULL,'OAI-PMH maximum number of records by answer to ListRecords and ListIdentifiers queries','Integer'), > ('OnSiteCheckoutAutoCheck','0','','Enable/Do not enable onsite checkout by default if last checkout was an onsite checkout','YesNo'), > ('OnSiteCheckouts','0','','Enable/Disable the on-site checkouts feature','YesNo'), >@@ -473,7 +461,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('OPACAllowUserToChangeBranch','','Pending, In-Transit, Suspended','Allow users to change the library to pick up a hold for these statuses:','multiple'), > ('OPACAllowUserToChooseBranch','1','1','Allow the user to choose the branch they want to pickup their hold from','YesNo'), > ('OPACAmazonCoverImages','0','','Display cover images on OPAC from Amazon Web Services','YesNo'), >-('OPACAuthorIdentifiersAndInformation', '', '', 'Display author information on the OPAC detail page','multiple_sortable'), >+('OPACAuthorIdentifiers','0','','Display author identifiers on the OPAC detail page','YesNo'), > ('OpacAuthorities','1',NULL,'If ON, enables the search authorities link on OPAC','YesNo'), > ('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'), > ('opacbookbag','1','','If ON, enables display of Cart feature','YesNo'), >@@ -509,7 +497,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('OPACHoldsIfAvailableAtPickup','1','','Allow patrons to place a hold at pickup locations (libraries) where the item is available','YesNo'), > ('OPACHoldsIfAvailableAtPickupExceptions','','','List the patron categories not affected by OPACHoldsIfAvailableAtPickup if off','Free'), > ('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'), >-('OPACItemLocation','callnum','callnum|ccode|location|library','Show the shelving location of items in the opac','Choice'), >+('OpacItemLocation','callnum','callnum|ccode|location|library','Show the shelving location of items in the opac','Choice'), > ('OpacKohaUrl','1',NULL,'Show \'Powered by Koha\' text on OPAC footer.',NULL), > ('OpacLangSelectorMode','both','top|both|footer','Select the location to display the language selector in OPAC','Choice'), > ('OPACLanguages','en',NULL,'Set the default language in the OPAC.','Languages'), >@@ -518,12 +506,10 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('OPACLocalCoverImages','0','1','Display local cover images on OPAC search and details pages.','YesNo'), > ('OpacLocationBranchToDisplay','holding','holding|home|both','In the OPAC, under location show which branch for Location in the record details.','Choice'), > ('OpacLocationOnDetail','holding','holding|home|both|column','In the OPAC detail, display the shelving location on its own column or under a library columns.', 'Choice'), >-('OPACLoginLabelTextContent','cardnumber',NULL,NULL,NULL), > ('OpacMaintenance','0','','If ON, enables maintenance warning in OPAC','YesNo'), > ('OPACMandatoryHoldDates', '', '|start|end|both', 'Define which hold dates are required on OPAC reserve form', 'Choice'), > ('OpacMaxItemsToDisplay','50','','Max items to display at the OPAC on a biblio detail','Integer'), > ('OpacMetaDescription','','','This description will show in search engine results (160 characters).','Textarea'), >-('OpacMetaRobots', 'noindex,nofollow', NULL, 'Improve search engine crawling.', 'Multiple'), > ('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'), > ('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'), > ('OpacNoItemTypeImages','0',NULL,'If ON, disables itemtype images in the OPAC','YesNo'), >@@ -532,7 +518,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('OPACnumSearchResults','20',NULL,'Specify the maximum number of results to display on a page of results','Integer'), > ('OPACnumSearchResultsDropdown', 0, NULL, 'Enable option list of number of results per page to show in OPAC search results','YesNo'), > ('OPACOpenURLItemTypes', '', NULL, 'Show the OpenURL link only for these item types', 'Free'), >-('OPACOverDrive','0',NULL,'Enable OverDrive integration in the OPAC','YesNo'), > ('OpacPasswordChange','1',NULL,'If ON, enables patron-initiated password change in OPAC (disable it when using LDAP auth)','YesNo'), > ('OPACPatronDetails','1','','If OFF the patron details tab in the OPAC is disabled.','YesNo'), > ('OPACpatronimages','0',NULL,'Enable patron images in the OPAC','YesNo'), >@@ -552,13 +537,12 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('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}&title={TITLE}&st=xl&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'), > ('OpacSeparateHoldings','0',NULL,'Separate current branch holdings from other holdings (OPAC)','YesNo'), > ('OpacSeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings (OPAC)','Choice'), >-('opacSerialDefaultTab','subscriptions','holdings|serialcollection|subscriptions|titlenotes','Define the default tab for serials in OPAC.','Choice'), >+('opacSerialDefaultTab','subscriptions','holdings|serialcollection|subscriptions','Define the default tab for serials in OPAC.','Choice'), > ('OPACSerialIssueDisplayCount','3','','Number of serial issues to display per subscription in the OPAC','Integer'), > ('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'), > ('OPACShibOnly','0','','If ON enables shibboleth only authentication for the opac','YesNo'), > ('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'), > ('OPACShowHoldQueueDetails','none','none|priority|holds|holds_priority','Show holds details in OPAC','Choice'), >-('OPACShowLibraries', '1', '', 'If enabled, a link is shown in the OPAC pointing to a page with library information', 'YesNo'), > ('OPACShowMusicalInscripts','0','','Display musical inscripts on the OPAC record details page when available.','YesNo'), > ('OPACShowOpenURL', '0', NULL, 'Enable display of OpenURL links in OPAC search results and detail page', 'YesNo'), > ('OpacShowRecentComments','0',NULL,'If ON a link to recent comments will appear in the OPAC masthead','YesNo'), >@@ -581,8 +565,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('opacuserlogin','1',NULL,'Enable or disable display of user login features','YesNo'), > ('OPACUserSummary', 1, NULL, "Show the summary of a logged in user's checkouts, overdues, holds and fines on the mainpage", 'YesNo'), > ('OPACViewOthersSuggestions','0',NULL,'If ON, allows all suggestions to be displayed in the OPAC','YesNo'), >-('OPACVirtualCard','0',NULL,'If ON, the patron virtual library card tab in the OPAC will be enabled','YesNo'), >-('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'), > ('OPACXSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on OPAC','Free'), > ('OPACXSLTListsDisplay','default','','Enable XSLT stylesheet control over lists pages display on OPAC','Free'), > ('OPACXSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on OPAC','Free'), >@@ -616,15 +598,14 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('PatronSelfModificationBorrowerUnwantedField','',NULL,'Name the fields you don\'t want to display when a patron is editing their information via the OPAC.','free'), > ('PatronSelfModificationMandatoryField','',NULL,'Define the required fields when a patron is editing their information via the OPAC','free'), > ('PatronSelfRegistration','0',NULL,'If enabled, patrons will be able to register themselves via the OPAC.','YesNo'), >-('PatronSelfRegistrationAlert','0',NULL,'If enabled, an alter will be shown on staff interface home page when there are self-registered patrons.','YesNo'), > ('PatronSelfRegistrationBorrowerMandatoryField','surname|firstname',NULL,'Choose the mandatory fields for a patron\'s account, when registering via the OPAC.','free'), > ('PatronSelfRegistrationBorrowerUnwantedField','',NULL,'Name the fields you don\'t want to display when registering a new patron via the OPAC.','free'), > ('PatronSelfRegistrationConfirmEmail', '0', NULL, 'Require users to confirm their email address by entering it twice.', 'YesNo'), > ('PatronSelfRegistrationDefaultCategory','','','A patron registered via the OPAC will receive a borrower category code set in this system preference.','free'), >-('PatronSelfRegistrationEmailMustBeUnique', '0', 'If set, the field borrowers.email will be considered as a unique field on self-registering', NULL, 'YesNo'), >+('PatronSelfRegistrationEmailMustBeUnique', '0', 'If set, the field borrowers.email will be considered as a unique field on self registering', NULL, 'YesNo'), > ('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'), > ('PatronSelfRegistrationLibraryList','',NULL,'Only display libraries listed. If empty, all libraries are displayed.','Free'), >-('PatronSelfRegistrationPrefillForm','1',NULL,'Display password and prefill login form after a patron has self-registered','YesNo'), >+('PatronSelfRegistrationPrefillForm','1',NULL,'Display password and prefill login form after a patron has self registered','YesNo'), > ('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'), > ('PatronsPerPage','20','20','Number of Patrons Per Page displayed by default','Integer'), > ('PhoneNotification','0',NULL,'If ON, enables generation of phone notifications to be sent by plugins','YesNo'), >@@ -659,7 +640,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('RecordLocalUseOnReturn','0',NULL,'If ON, statistically record returns of unissued items as local use, instead of return','YesNo'), > ('RecordStaffUserOnCheckout', '0', '', 'If enabled, when an item is checked out, the user who checked out the item is recorded', 'YesNo'), > ('RedirectGuaranteeEmail', '0', NULL, 'Enable the ability to redirect guarantee email messages to guarantor.', 'YesNo'), >-('RedirectToSoleResult', '1', NULL, 'When a catalog search via the staff interface or the OPAC returns only one record, redirect to the result.', 'YesNo'), > ('Reference_NFL_Statuses','1|2',NULL,'Contains not for loan statuses considered as available for reference','Free'), > ('RefundLostOnReturnControl','CheckinLibrary','CheckinLibrary|ItemHomeBranch|ItemHoldingBranch','If a lost item is returned, choose which branch to pick rules for refunding.','Choice'), > ('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'), >@@ -670,8 +650,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('RenewSerialAddsSuggestion','0',NULL,'If ON, adds a new suggestion at serial subscription renewal','YesNo'), > ('RentalFeesCheckoutConfirmation', '0', NULL , 'Allow user to confirm when checking out an item with rental fees.', 'YesNo'), > ('ReplytoDefault','',NULL,'Use this email address as the replyto in emails','Free'), >-('ReportsExportFormatODS',1,NULL,'Show ODS download in Reports','YesNo'), >-('ReportsExportLimit',NULL,NULL,'Limit for report downloads','Integer'), > ('ReportsLog','0',NULL,'If ON, log information about reports.','YesNo'), > ('RequireCashRegister','0',NULL,'Require a cash register when collecting a payment','YesNo'), > ('RequireChoosingExistingAuthority','0',NULL,'Require existing authority selection in controlled fields during cataloging.','YesNo'), >@@ -690,7 +668,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('RestrictedPageLocalIPs','',NULL,'Beginning of IP addresses considered as local (comma separated ex: "127.0.0,127.0.2")','Free'), > ('RestrictedPageTitle','',NULL,'Title of the restricted page (breadcrumb and header)','Free'), > ('RestrictionBlockRenewing','0',NULL,'If patron is restricted, should renewal be allowed or blocked','YesNo'), >-('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'), > ('RetainCatalogSearchTerms', '1', NULL, 'If enabled, searches entered into the catalog search bar will be retained', 'YesNo'), > ('RetainPatronsSearchTerms', '1', NULL, 'If enabled, searches entered into the checkout and patrons search bar will be retained', 'YesNo'), > ('ReturnBeforeExpiry','0',NULL,'If ON, checkout will be prevented if returndate is after patron card expiry','YesNo'), >@@ -699,14 +676,13 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('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'), > ('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'), > ('RoutingListAddReserves','0','','If ON the patrons on routing lists are automatically added to holds on the issue.','YesNo'), >+('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'), > ('RoutingSerials','1',NULL,'If ON, serials routing is enabled','YesNo'), > ('SavedSearchFilters', '0', NULL, 'Allow staff with permission to create/edit custom search filters', 'YesNo'), > ('SCOAllowCheckin','0','','If enabled, patrons may return items through the Web-based Self Checkout','YesNo'), >-('SCOBatchCheckoutsValidCategories','',NULL,'Patron categories allowed to checkout in a batch while logged into Self Checkout','Free'), > ('SCOLoadCheckoutsByDefault','1','','If enabled, load the list of a patrons checkouts when they log in to the Self Checkout','YesNo'), > ('SCOUserCSS','',NULL,'Add CSS to be included in the SCO module in an embedded <style> tag.','free'), > ('SCOUserJS','',NULL,'Define custom javascript for inclusion in the SCO module','free'), >-('SearchCancelledAndInvalidISBNandISSN','0',NULL,'Enable search for cancelled or invalid forms of ISBN/ISSN when performing ISBN/ISSN search (when using ES)','YesNo'), > ('SearchEngine','Zebra','Elasticsearch|Zebra','Search Engine','Choice'), > ('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'), > ('SearchMyLibraryFirst','0',NULL,'If ON, OPAC searches return results limited by the user\'s library by default if they are logged in','YesNo'), >@@ -740,12 +716,12 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'), > ('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'), > ('SIP2AddOpacMessagesToScreenMessage','1','','If enabled, patron OPAC messages will be included in the SIP2 screen message','YesNo'), >+('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free'), > ('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'), > ('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer'), > ('SlipCSS','',NULL,'Slips CSS url.','free'), > ('SMSSendAdditionalOptions', '', '', 'Additional SMS::Send parameters used to send SMS messages', 'free'), > ('SMSSendDriver','','','Sets which SMS::Send driver is used to send SMS messages.','free'), >-('SMSSendMaxChar', '', NULL, 'Add a limit for the number of characters in SMS messages', 'Integer'), > ('SMSSendPassword', '', '', 'Password used to send SMS messages', 'free'), > ('SMSSendUsername', '', '', 'Username/Login used to send SMS messages', 'free'), > ('SocialNetworks','','facebook|linkedin|email','Enable/Disable social networks links in opac detail pages','Choice'), >@@ -755,11 +731,10 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('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'), > ('SpineLabelShowPrintOnBibDetails','0','','If turned on, a \"Print label\" link will appear for each item on the bib details page in the staff interface.','YesNo'), > ('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'), >+('StaffDetailItemSelection', '1', NULL, 'Enable item selection in record detail page', 'YesNo'), > ('StaffHighlightedWords','1','','Highlight search terms on staff interface','YesNo'), >-('StaffInterfaceLanguages','en',NULL,'Set the default language in the staff interface.','Languages'), > ('StaffLangSelectorMode','footer','top|both|footer','Select the location to display the language selector in staff interface','Choice'), >-('StaffLoginLibraryBasedOnIP', '1','', 'Set the logged in library for the user based on their current IP','YesNo'), >-('StaffLoginRestrictLibraryByIP','0',NULL,'If ON, IP authentication is enabled, blocking access to the staff interface from unauthorized IP addresses based on branch','YesNo'), >+('StaffLoginInstructions', '', NULL, 'HTML to go into the login box for the staff interface','Free'), > ('StaffSearchResultsDisplayBranch','holdingbranch','holdingbranch|homebranch','Controls the display of the home or holding branch for staff search results','Choice'), > ('StaffSerialIssueDisplayCount','3','','Number of serial issues to display per subscription in the staff interface','Integer'), > ('staffShibOnly','0','','If ON enables shibboleth only authentication for the staff client','YesNo'), >@@ -776,7 +751,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('SubscriptionLog','1',NULL,'If ON, enables subscriptions log','YesNo'), > ('suggestion','1','','If ON, enables patron suggestions feature in OPAC','YesNo'), > ('suggestionPatronCategoryExceptions', '', '', 'List the patron categories not affected by suggestion system preference if on', 'Free'), >-('SuggestionsLog','0',NULL,'If ON, log pirchase suggestion changes','YesNo'), > ('SuspendHoldsIntranet','1','Allow holds to be suspended from the intranet.',NULL,'YesNo'), > ('SuspendHoldsOpac','1','Allow holds to be suspended from the OPAC.',NULL,'YesNo'), > ('SuspensionsCalendar','noSuspensionsWhenClosed','ignoreCalendar|noSuspensionsWhenClosed','Specify whether to use the Calendar in calculating suspension expiration','Choice'), >@@ -826,8 +800,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('UnsubscribeReflectionDelay','',NULL,'Delay for locking unsubscribers', 'Integer'), > ('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'), > ('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'), >-('UpdateItemLostStatusWhenPaid', '0', NULL, 'Allows the status of lost items to be automatically changed to lost and paid for when paid for', 'Integer'), >-('UpdateItemLostStatusWhenWriteoff', '0', NULL, 'Allows the status of lost items to be automatically changed to lost and paid for when written off', 'Integer'), > ('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'), > ('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'), > ('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'), >@@ -875,6 +847,5 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('XSLTListsDisplay','default','','Enable XSLT stylesheet control over lists pages display on intranet','Free'), > ('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'), > ('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'), >-('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo'), >-('z3950Status','','','This syspref allows to define custom YAML based rules for marking items unavailable in z3950 results.','Textarea') >+('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo') > ; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >index 291c6ccec6b..7e5dbcf39dc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >@@ -74,11 +74,6 @@ Circulation: > - pref: HoldsToPullStartDate > class: integer > - 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>. >- - >- - When building the holds queue, calculate hold matches using >- - pref: HoldsQueueParallelLoopsCount >- class: integer >- - parallel loop(s). The more loops used, the faster it will calculate and the more computing resources it will use. > - > - pref: AllowAllMessageDeletion > choices: >@@ -132,7 +127,6 @@ Circulation: > - pref: CircAutoPrintQuickSlip > choices: > clear: "clear the screen" >- ignore: "do nothing" > qslip: "open a print quick slip window" > slip: "open a print slip window" > - . >@@ -140,7 +134,7 @@ Circulation: > - Include the stylesheet at > - pref: NoticeCSS > class: url >- - on notices (this should be a complete URL, starting with <code>http://</code>). >+ - on notices. (This should be a complete URL, starting with <code>http://</code>) > - > - pref: UpdateTotalIssuesOnCirc > choices: >@@ -174,19 +168,14 @@ Circulation: > choices: > 1: "Use" > 0: "Don't use" >- - circulation desks. >+ - circulation desks with circulation. >+ > Checkout policy: >- - >- - pref: AlwaysLoadCheckoutsTable >- choices: >- 1: "Do" >- 0: "Don't" >- - always load the checkouts table immediately on opening the patron account in the staff interface. > - > - Delay the automatic loading of the checkouts table on the checkouts page by > - pref: LoadCheckoutsTableDelay > class: integer >- - seconds when "Always show checkouts automatically" or <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=AlwaysLoadCheckoutsTable">AlwaysLoadCheckoutsTable</a> are enabled. >+ - seconds when "Always show checkouts automatically" is enabled. > - > - pref: OnSiteCheckoutAutoCheck > choices: >@@ -237,14 +226,6 @@ Circulation: > - checkouts of items reserved to someone else via SIP checkout messages. > - If allowed do not generate RESERVED warning. > - 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". >- - >- - pref: AllowItemsOnLoanCheckoutSIP >- choices: >- 1: Allow >- 0: "Don't allow" >- - checkouts of items already checked out to someone else via SIP checkout messages. >- - If allowed do not generate ISSUED_TO_ANOTHER warning. >- - This allows self checkouts for those items. > - > - pref: AllowItemsOnHoldCheckoutSCO > choices: >@@ -291,37 +272,33 @@ Circulation: > - pref: CircControl > type: choice > choices: >- PickupLibrary: the library you are logged in at >- PatronLibrary: the library the patron is from >- ItemHomeLibrary: the library the item is from >- - . >+ PickupLibrary: the library you are logged in at. >+ PatronLibrary: the library the patron is from. >+ ItemHomeLibrary: the library the item is from. > - > - To determine whether an item is transferred or remains in the library after checkin, use the circulation rules of > - pref: CircControlReturnsBranch > type: choice > choices: >- ItemHoldingLibrary: the library the item is currently held by >- CheckInLibrary: the library the item is checked in at >- ItemHomeLibrary: the library the item is owned by >- - . >+ ItemHoldingLibrary: the library the item is currently held by. >+ CheckInLibrary: the library the item is checked in at. >+ ItemHomeLibrary: the library the item is owned by. > - > - Use the circulation and fine rules of > - pref: HomeOrHoldingBranch > type: choice > choices: >- homebranch: the item's home library (homebranch) >- holdingbranch: the item's holding library (holdingbranch) >- - . >+ homebranch: the item's home library (homebranch). >+ holdingbranch: the item's holding library (holdingbranch). > - > - Allow items to be checked in > - pref: AllowReturnToBranch > type: choice > choices: >- anywhere: at any library >- homebranch: only at the library the item is from >- holdingbranch: only at the library the item was checked out from >- homeorholdingbranch: either at the library the item is from or the library it was checked out from >- - . >+ anywhere: at any library. >+ homebranch: only at the library the item is from. >+ holdingbranch: only at the library the item was checked out from. >+ homeorholdingbranch: either at the library the item is from or the library it was checked out from. > - > - For search results in the staff interface, display > - pref: StaffSearchResultsDisplayBranch >@@ -341,16 +318,15 @@ Circulation: > - Calculate "No renewal before" based on > - pref: NoRenewalBeforePrecision > choices: >- date: date >- exact_time: exact time >- - . Only relevant for loans calculated in days, hourly loans are not affected. >+ date: date. >+ exact_time: exact time. >+ - Only relevant for loans calculated in days, hourly loans are not affected. > - > - When renewing checkouts, base the new due date on > - pref: RenewalPeriodBase > choices: >- date_due: the old due date of the checkout >- now: the current date >- - . >+ date_due: the old due date of the checkout. >+ now: the current date. > - > - pref: RenewalSendNotice > choices: >@@ -448,6 +424,41 @@ Circulation: > 1: ask > 0: "don't ask" > - "for confirmation." >+ - >+ - By default, set the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> value of an item to >+ - pref: DefaultLongOverdueLostValue >+ choices: authval >+ source: LOST >+ - when the item has been overdue for more than >+ - pref: DefaultLongOverdueDays >+ class: integer >+ - days. >+ - <br>WARNING â These preferences will activate the automatic item loss process. Leave these fields empty if you don't want to activate this feature. >+ - "<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." >+ - <br>(Used when the longoverdue.pl script is called without the --lost parameter) >+ - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it." >+ - >+ - "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:" >+ - pref: DefaultLongOverdueChargeValue >+ choices: authval >+ source: LOST >+ - <br>Leave this field empty if you don't want to charge the patron for lost items. >+ - <br>(Used when the longoverdue.pl script is called without the --charge parameter) >+ - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it." >+ - >+ - 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 >+ - pref: DefaultLongOverdueSkipLostStatuses >+ - "." >+ - <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. >+ - <br>Set to a list of comma separated values, e.g. <em>5,6,7</em>. >+ - >+ - "When issuing an item that has been marked as lost, " >+ - pref: IssueLostItem >+ choices: >+ confirm: "require confirmation" >+ alert: "display a message" >+ nothing : "do nothing" >+ - . > - > - "When checking out an item, " > - pref: RecordStaffUserOnCheckout >@@ -455,6 +466,18 @@ Circulation: > 1: "record" > 0: "don't record" > - "the user who checked out the item." >+ - >+ - "Mark items as returned when flagged as lost " >+ - pref: MarkLostItemsAsReturned >+ multiple: >+ cronjob: "from the longoverdue cronjob" >+ batchmod: "from the batch item modification tool" >+ additem: "when cataloguing an item" >+ moredetail: "from the items tab of the catalog module" >+ pendingreserves: "from the 'Holds to pull' list" >+ onpayment: "when receiving payment for the item" >+ claim_returned: "when marking an item as a return claim" >+ - . > - > - pref: AllowMultipleIssuesOnABiblio > choices: >@@ -472,7 +495,7 @@ Circulation: > choices: > 1: Enable > 0: Disable >- - the on-site checkout for all cases (even if a patron is debarred or under similar restrictions). >+ - the on-site checkout for all cases (even if a patron is debarred, etc.). > - > - pref: ConsiderOnSiteCheckoutsAsNormalCheckouts > choices: >@@ -541,7 +564,7 @@ Circulation: > - "_BLANK_: FIC - causes an item that has no location to be updated into the Fiction location on check out.<br/>" > - "FIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check out.<br/>" > - "_ALL_: FIC - causes all items to be updated into the Fiction location on check out.<br/>" >- - "PROC: _PERM_ - causes an item that is in the Processing Center to be updated to its permanent location.<br/><br/>" >+ - "PROC: _PERM_ - causes an item that is in the Processing Center to be updated to it's permanent location.<br/><br/>" > - "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/>" > - "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/>" > - "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/>" >@@ -561,85 +584,6 @@ Circulation: > open: "extend the loan period and set the checkout to be due at the library's open time." > close: "shorten the loan period and set the checkout to be due at the library's close time." > ignore: "do not consider the library's opening hours." >- Lost item policy: >- - >- - By default, set the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> value of an item to >- - pref: DefaultLongOverdueLostValue >- choices: authval >- source: LOST >- - when the item has been overdue for more than >- - pref: DefaultLongOverdueDays >- class: integer >- - days. >- - <br>WARNING â These preferences will activate the automatic item loss process. Leave these fields empty if you don't want to activate this feature. >- - "<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." >- - <br>(Used when the longoverdue.pl script is called without the --lost parameter) >- - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it." >- - >- - "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:" >- - pref: DefaultLongOverdueChargeValue >- choices: authval >- source: LOST >- - <br>Leave this field empty if you don't want to charge the patron for lost items. >- - <br>(Used when the longoverdue.pl script is called without the --charge parameter) >- - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it." >- - >- - The long overdue process affects patrons in the >- - pref: DefaultLongOverduePatronCategories >- choices: patron-categories >- class: multiple >- - categories. >- - <br>Leave this field empty if you want to process long overdues for all patron categories. >- - <br>(Used when the longoverdue.pl script is called without the --category parameter) >- - <br><strong>WARNING:</strong> This preference will be active only if DefaultLongOverdueSkipPatronCategories is empty. >- - <br> >- - The long overdue process <i>does not</i> affect patrons in the >- - pref: DefaultLongOverdueSkipPatronCategories >- choices: patron-categories >- class: multiple >- - categories. >- - <br>Leave this field empty if you want to process long overdues for all patron categories. >- - <br>(Used when the longoverdue.pl script is called without the --skip-category parameter) >- - <br><strong>WARNING:</strong> This preference overrides the DefaultLongOverduePatronCategories preference, so the DefaultLongOverduePatronCategories filter will not take effect. >- - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/longoverdue.pl</code> cronjob. Ask your system administrator to schedule it." >- - >- - 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 >- - pref: DefaultLongOverdueSkipLostStatuses >- - . >- - <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. >- - <br>Set to a list of comma separated values, e.g. <em>5,6,7</em>. >- - >- - "When issuing an item that has been marked as lost, " >- - pref: IssueLostItem >- choices: >- confirm: "require confirmation" >- alert: "display a message" >- nothing : "do nothing" >- - . >- - >- - "Mark items as returned when flagged as lost " >- - pref: MarkLostItemsAsReturned >- multiple: >- cronjob: "from the longoverdue cronjob" >- batchmod: "from the batch item modification tool" >- additem: "when cataloguing an item" >- moredetail: "from the items tab of the catalog module" >- pendingreserves: "from the 'Holds to pull' list" >- onpayment: "when receiving payment for the item" >- claim_returned: "when marking an item as a return claim" >- - . >- - >- - "Update item status to" >- - pref: UpdateItemLostStatusWhenPaid >- choices: authval >- source: LOST >- - "when the outstanding balance is paid." >- - >- - "Update item status to" >- - pref: UpdateItemLostStatusWhenWriteoff >- choices: authval >- source: LOST >- - "when the outstanding balance is written off." > Checkin policy: > - > - pref: TrapHoldsOnOrder >@@ -710,7 +654,7 @@ Circulation: > - "_BLANK_: FIC - causes an item that has no location to be updated into the Fiction location on check in.<br/>" > - "FIC: _BLANK_ - causes an item in location FIC to be updated to a blank location on check in.<br/>" > - "_ALL_: FIC - causes all items to be updated into the Fiction location on check in.<br/>" >- - "PROC: _PERM_ - causes an item that is in the Processing center to be updated to its permanent location.<br/><br/>" >+ - "PROC: _PERM_ - causes an item that is in the Processing center to be updated to it's permanent location.<br/><br/>" > - "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/>" > - "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/>" > - "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/>" >@@ -762,7 +706,7 @@ Circulation: > - Default the holds ratio report to > - pref: HoldRatioDefault > class: integer >- - . >+ - "." > - > - In the staff interface, split the holds queue into separate tables by > - pref: HoldsSplitQueue >@@ -771,7 +715,7 @@ Circulation: > branch: "pickup library" > itemtype: "hold item type" > branch_itemtype: "pickup library and item type" >- - . >+ - "." > - > - pref: EnableItemGroupHolds > choices: >@@ -784,7 +728,7 @@ Circulation: > choices: > actual: "the actual priority, which may be out of order" > virtual: "'virtual' priorities, where each group is numbered separately" >- - . >+ - "." > - > - pref: RealTimeHoldsQueue > choices: >@@ -874,7 +818,7 @@ Circulation: > - 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 > - pref: ExpireReservesMaxPickUpDelayCharge > class: currency >- - . >+ - "." > - > - The holds queue should prioritize filling a hold by matching the patron's home library with an item having a matching > - pref: HoldsQueuePrioritizeBranch >@@ -935,24 +879,12 @@ Circulation: > 0: "Don't enable" > - "sending an email to the patron's library whenever a hold request is placed." > - "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>." >- - >- - pref: EmailPatronWhenHoldIsPlaced >- choices: >- 1: Email >- 0: "Don't email" >- - a patron when they have placed a hold. > - > - pref: DisplayMultiPlaceHold > choices: > 1: Enable > 0: "Don't enable" > - "the ability to place holds on multiple bibliographic records from the search results" >- - >- - pref: DisplayMultiItemHolds >- choices: >- 1: Enable >- 0: "Don't enable" >- - "the ability to place holds on different items at the same time in staff interface and OPAC." > - > - pref: TransferWhenCancelAllWaitingHolds > choices: >@@ -1086,7 +1018,7 @@ Circulation: > loggedinlibrary: "logged in library" > homebranch: "item's home library" > holdingbranch: "item's holding library" >- - . >+ - "." > - > - pref: AutomaticCheckinAutoFill > choices: >@@ -1135,7 +1067,13 @@ Circulation: > 1: block > 0: allow > - renewing of items from the staff interface and via the <code>misc/cronjobs/automatic_renewals.pl</code> cronjob. >- Fines policy: >+ - >+ - pref: EmailPatronWhenHoldIsPlaced >+ choices: >+ 1: Email >+ 0: "Don't email" >+ - a patron when they have placed a hold. >+ Fines Policy: > - > - pref: finesCalendar > type: choice >@@ -1188,11 +1126,6 @@ Circulation: > - pref: NoRefundOnLostReturnedItemsAge > class: integer > - days after it was marked lost. >- - >- - "Don't refund lost fees if the fee was paid in full or if the balance of the fee was paid more than" >- - pref: NoRefundOnLostFinesPaidAge >- class: integer >- - days ago. > - > - pref: WhenLostChargeReplacementFee > choices: >@@ -1313,11 +1246,6 @@ Circulation: > - pref: SelfCheckAllowByIPRanges > class: short > - (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>.) >- - >- - "Patron categories allowed to check out in a batch while logged into the self checkout system:" >- - pref: SCOBatchCheckoutsValidCategories >- choices: patron-categories >- class: multiple > Course reserves: > - > - pref: UseCourseReserves >@@ -1363,7 +1291,7 @@ Circulation: > choices: > 1: Enable > 0: Disable >- - " redirection from child to host based on MARC21 773$w when the child has no items when requesting articles on the OPAC." >+ - " redirection from child to host based on MARC21 773$w when the child has no items when requesting articles on the Opac." > - > - pref: ArticleRequestsLinkControl > choices: >@@ -1413,6 +1341,7 @@ Circulation: > PHOTOCOPY: Photocopy > SCAN: Scan > - "The first listed format is selected by default when you request via the OPAC." >+ - "(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.)" > > > Item bundles: >@@ -1439,25 +1368,12 @@ Circulation: > charge: charge a lost fee > no_charge: don't charge a lost fee > - . >- - >- - 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 >- - pref: AutoClaimReturnStatusOnCheckin >- choices: authval >- source: RETURN_CLAIM_RESOLUTION >- - upon check in. >- - >- - 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 >- - pref: AutoClaimReturnStatusOnCheckout >- choices: authval >- source: RETURN_CLAIM_RESOLUTION >- - upon check out. > - > - Use the <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=LOST">LOST</a> authorized value > - pref: ClaimReturnedLostValue > choices: authval > source: LOST > - to represent 'claims returned'. >- - <span class="hint">This will not update the lost status of the item if there is already an existing lost status set.</span> > - > - Warn librarians that a patron has excessive return claims if the patron has claimed the return of more than > - pref: ClaimReturnedWarningThreshold >@@ -1516,6 +1432,9 @@ Circulation: > 1: Send > 0: Don't send > - OPAC patron messages in the SIP2 screen message field. >+ - >+ - Begin each SIP screen message with the phrase >+ - pref: SIP2ScreenMessageGreeting > > Curbside pickup module: > - >diff --git a/t/db_dependent/SIP/Patron.t b/t/db_dependent/SIP/Patron.t >index fc6e03bd284..6f179bef440 100755 >--- a/t/db_dependent/SIP/Patron.t >+++ b/t/db_dependent/SIP/Patron.t >@@ -5,7 +5,7 @@ > > use Modern::Perl; > use Test::NoWarnings; >-use Test::More tests => 12; >+use Test::More tests => 13; > > use t::lib::Mocks; > use t::lib::TestBuilder; >@@ -32,6 +32,7 @@ is( defined $sip_patron, 1, "Patron is valid" ); > $schema->resultset('Borrower')->search( { cardnumber => $card } )->delete; > my $sip_patron2 = C4::SIP::ILS::Patron->new($card); > is( $sip_patron2, undef, "Patron is not valid (anymore)" ); >+t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Greetings from Koha. " ); > > subtest "new tests" => sub { > >@@ -337,24 +338,7 @@ subtest "NoIssuesChargeGuarantees tests" => sub { > > $schema->storage->txn_begin; > >- my $patron_category = $builder->build( >- { >- source => 'Category', >- value => { >- categorycode => 'NOT_X', category_type => 'P', enrolmentfee => 0, noissueschargeguarantees => 0, >- noissuescharge => 0, noissueschargeguarantorswithguarantees => 0 >- } >- } >- ); >- >- my $patron = $builder->build_object( >- { >- class => 'Koha::Patrons', >- value => { >- categorycode => $patron_category->{categorycode}, >- } >- } >- ); >+ my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); > my $child = $builder->build_object( { class => 'Koha::Patrons' } ); > my $sibling = $builder->build_object( { class => 'Koha::Patrons' } ); > $child->add_guarantor( { guarantor_id => $patron->borrowernumber, relationship => 'parent' } ); >@@ -426,32 +410,8 @@ subtest "NoIssuesChargeGuarantorsWithGuarantees tests" => sub { > > $schema->storage->txn_begin; > >- my $patron_category = $builder->build( >- { >- source => 'Category', >- value => { >- categorycode => 'NOT_X', category_type => 'P', enrolmentfee => 0, noissueschargeguarantees => 0, >- noissuescharge => 0, noissueschargeguarantorswithguarantees => 0 >- } >- } >- ); >- >- my $patron = $builder->build_object( >- { >- class => 'Koha::Patrons', >- value => { >- categorycode => $patron_category->{categorycode}, >- } >- } >- ); >- my $child = $builder->build_object( >- { >- class => 'Koha::Patrons', >- value => { >- categorycode => $patron_category->{categorycode}, >- } >- } >- ); >+ my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); >+ my $child = $builder->build_object( { class => 'Koha::Patrons' } ); > $child->add_guarantor( { guarantor_id => $patron->borrowernumber, relationship => 'parent' } ); > > t::lib::Mocks::mock_preference( 'noissuescharge', 50 ); >@@ -557,3 +517,19 @@ subtest "Patron messages tests" => sub { > > $schema->storage->txn_rollback; > }; >+ >+subtest "Test SIP2ScreenMessageGreeting" => sub { >+ plan tests => 2; >+ $schema->storage->txn_begin; >+ my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { opacnote => q{} } } ); >+ my $library = $builder->build_object( { class => 'Koha::Libraries' } ); >+ >+ my $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber ); >+ is( $sip_patron->screen_msg, 'Greetings from Koha. ' ); >+ >+ t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Welcome to your local library! " ); >+ $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber ); >+ is( $sip_patron->screen_msg, 'Welcome to your local library! ' ); >+ >+ $schema->storage->txn_rollback; >+}; >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35369
:
159154
|
160385
|
160386
|
165132
|
180031
|
180128