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

(-)a/installer/data/mysql/atomicupdate/bug_17509_add_NotifyToReturnItemWhenHoldIsPlaced_syspref.sql (-1 / +1 lines)
Lines 1-2 Link Here
1
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('NotifyToReturnItemWhenHoldIsPlaced', '0', 'If ON, notifies the patrons to return an item whenever a hold is placed on it', NULL, 'YesNo');
1
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('NotifyToReturnItemWhenHoldIsPlaced', '0', 'If ON, notifies the patrons to return an item whenever a hold is placed on it', NULL, 'YesNo');
2
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('NotifyToReturnItemFromLibrary', 'PatronLibrary', 'Restricts which libraries to take into consideration when notifying patrons to return items on hold', 'PatronLibrary|AnyLibrary', 'Choice');
2
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('NotifyToReturnItemFromLibrary', 'ItemHomeLibrary', 'Restricts what library to take into consideration when notifying patrons to return items on hold', 'RequestorLibrary|ItemHomeLibrary|AnyLibrary', 'Choice');
(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 269-275 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
269
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
269
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
270
('NoticeCSS','',NULL,'Notices CSS url.','free'),
270
('NoticeCSS','',NULL,'Notices CSS url.','free'),
271
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
271
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
272
('NotifyToReturnItemFromLibrary','PatronLibrary','PatronLibrary|AnyLibrary','Restricts which libraries to take into consideration when notifying patrons to return items on hold','Choice'),
272
('NotifyToReturnItemFromLibrary','ItemHomeLibrary','RequestorLibrary|ItemHomeLibrary|AnyLibrary','Restricts what library to take into consideration when notifying patrons to return items on hold','Choice'),
273
('NotifyToReturnItemWhenHoldIsPlaced','0',NULL,'If ON, notifies the borrowers to return an item whenever a hold is placed on it','YesNo'),
273
('NotifyToReturnItemWhenHoldIsPlaced','0',NULL,'If ON, notifies the borrowers to return an item whenever a hold is placed on it','YesNo'),
274
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
274
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
275
('NovelistSelectPassword','',NULL,'Enable Novelist user Profile','free'),
275
('NovelistSelectPassword','',NULL,'Enable Novelist user Profile','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-4 / +4 lines)
Lines 572-582 Circulation: Link Here
572
              choices:
572
              choices:
573
                  yes: Enable
573
                  yes: Enable
574
                  no:  "Don't enable"
574
                  no:  "Don't enable"
575
            - sending an email to the patrons to return an item whenever a hold request is placed on it. If enabled, contact patrons from
575
            - sending an email to the patrons to return an item whenever a hold request is placed on it. If enabled, contact patrons
576
            - pref: NotifyToReturnItemFromLibrary
576
            - pref: NotifyToReturnItemFromLibrary
577
              choices:
577
              choices:
578
                  PatronLibrary: "patron's home library"
578
                  RequestorLibrary: "belonging to requestor's home library"
579
                  AnyLibrary:    "any library"
579
                  ItemHomeLibrary:  "having the item borrowed from requestor's home library"
580
                  AnyLibrary:       "from any library"
580
            - .
581
            - .
581
        -
582
        -
582
            - pref: DisplayMultiPlaceHold
583
            - pref: DisplayMultiPlaceHold
583
- 

Return to bug 17509