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

(-)a/installer/data/mysql/atomicupdate/bug_17509-add_NotifyToReturnItemWhenHoldIsPlaced_syspref.sql (+2 lines)
Line 0 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');
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 (+2 lines)
Lines 312-317 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
312
('NoticeBcc','','','Email address to bcc outgoing notices sent by email','free'),
312
('NoticeBcc','','','Email address to bcc outgoing notices sent by email','free'),
313
('NoticeCSS','',NULL,'Notices CSS url.','free'),
313
('NoticeCSS','',NULL,'Notices CSS url.','free'),
314
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
314
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
315
('NotifyToReturnItemFromLibrary','ItemHomeLibrary','RequestorLibrary|ItemHomeLibrary|AnyLibrary','Restricts what library to take into consideration when notifying patrons to return items on hold','Choice'),
316
('NotifyToReturnItemWhenHoldIsPlaced','0',NULL,'If ON, notifies the borrowers to return an item whenever a hold is placed on it','YesNo'),
315
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
317
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
316
('NovelistSelectPassword','',NULL,'Novelist select user Password','free'),
318
('NovelistSelectPassword','',NULL,'Novelist select user Password','free'),
317
('NovelistSelectProfile','',NULL,'Novelist Select user Profile','free'),
319
('NovelistSelectProfile','',NULL,'Novelist Select user Profile','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +12 lines)
Lines 674-679 Circulation: Link Here
674
                  no:  "Don't enable"
674
                  no:  "Don't enable"
675
            - "sending an email to the Koha administrator email address whenever a hold request is placed."
675
            - "sending an email to the Koha administrator email address whenever a hold request is placed."
676
        -
676
        -
677
            - pref: NotifyToReturnItemWhenHoldIsPlaced
678
              choices:
679
                  yes: Enable
680
                  no:  "Don't enable"
681
            - sending an email to the patrons to return an item whenever a hold request is placed on it. If enabled, contact patrons
682
            - pref: NotifyToReturnItemFromLibrary
683
              choices:
684
                  RequestorLibrary: "belonging to requestor's home library"
685
                  ItemHomeLibrary:  "having the item borrowed from requestor's home library"
686
                  AnyLibrary:       "from any library"
687
            - .
688
        -
677
            - pref: DisplayMultiPlaceHold
689
            - pref: DisplayMultiPlaceHold
678
              choices:
690
              choices:
679
                  yes: Enable
691
                  yes: Enable
680
- 

Return to bug 17509