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

(-)a/C4/Letters.pm (+2 lines)
Lines 547-552 sub SendAlerts { Link Here
547
          if C4::Context->preference('ReplytoDefault');
547
          if C4::Context->preference('ReplytoDefault');
548
        $mail{'Sender'} = C4::Context->preference('ReturnpathDefault')
548
        $mail{'Sender'} = C4::Context->preference('ReturnpathDefault')
549
          if C4::Context->preference('ReturnpathDefault');
549
          if C4::Context->preference('ReturnpathDefault');
550
        $mail{'Bcc'} = $userenv->{emailaddress}
551
          if C4::Context->preference("ClaimsBccCopy");
550
552
551
        unless ( sendmail(%mail) ) {
553
        unless ( sendmail(%mail) ) {
552
            carp $Mail::Sendmail::error;
554
            carp $Mail::Sendmail::error;
(-)a/installer/data/mysql/atomicupdate/Bug10076_ClaimsBccCopy.sql (+2 lines)
Line 0 Link Here
1
INSERT INTO systempreferences (variable,value,options,explanation,type)
2
VALUES ('ClaimsBccCopy','0','','Bcc the ClaimAcquisition and ClaimIssues alerts','YesNo');
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 91-96 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
91
('CircAutocompl','1',NULL,'If ON, autocompletion is enabled for the Circulation input','YesNo'),
91
('CircAutocompl','1',NULL,'If ON, autocompletion is enabled for the Circulation input','YesNo'),
92
('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'),
92
('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'),
93
('CircControl','ItemHomeLibrary','PickupLibrary|PatronLibrary|ItemHomeLibrary','Specify the agency that controls the circulation and fines policy','Choice'),
93
('CircControl','ItemHomeLibrary','PickupLibrary|PatronLibrary|ItemHomeLibrary','Specify the agency that controls the circulation and fines policy','Choice'),
94
('ClaimsBccCopy','0','','Bcc the ClaimAcquisition and ClaimIssues alerts','YesNo'),
94
('Coce','0', NULL, 'If on, enables cover retrieval from the configured Coce server', 'YesNo'),
95
('Coce','0', NULL, 'If on, enables cover retrieval from the configured Coce server', 'YesNo'),
95
('CoceHost', NULL, NULL, 'Coce server URL', 'Free'),
96
('CoceHost', NULL, NULL, 'Coce server URL', 'Free'),
96
('CoceProviders', NULL, 'aws,gb,ol', 'Coce providers', 'multiple'),
97
('CoceProviders', NULL, 'aws,gb,ol', 'Coce providers', 'multiple'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref (-1 / +8 lines)
Lines 60-65 Acquisitions: Link Here
60
              type: textarea
60
              type: textarea
61
            - "You can use the following fields: price, quantity, budget_code, discount, sort1, sort2"
61
            - "You can use the following fields: price, quantity, budget_code, discount, sort1, sort2"
62
            - "<br/>For example:<br/>price: 947$a|947$c<br/>quantity: 969$h<br/>budget_code: 922$a"
62
            - "<br/>For example:<br/>price: 947$a|947$c<br/>quantity: 969$h<br/>budget_code: 922$a"
63
        -
64
            - Send a copy in bcc of the ClaimAcquisition and ClaimIssues letters to the active user
65
            - pref: ClaimsBccCopy
66
              default: no
67
              choices:
68
                yes: Send
69
                no: Don't send
70
63
    Printing:
71
    Printing:
64
        -
72
        -
65
            - Use the
73
            - Use the
66
- 

Return to bug 10076