From d08b7797db3fbfbf6813cafb14182e9d71facdc1 Mon Sep 17 00:00:00 2001 From: Charles Farmer Date: Thu, 26 Nov 2015 09:54:47 -0500 Subject: [PATCH] Bug 10076 - Add Bcc syspref for ClaimAcquisition and ClaimIssues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is already a syspref called "OverdueNoticeBcc" for sending Bcc copies of mails sent for overdues and other notices. This patch add a new syspref ClaimsBccCopy to bcc the claimacquisition and clamissues alerts. Signed-off-by: Frédéric Demians Works as described. --- C4/Letters.pm | 2 ++ installer/data/mysql/atomicupdate/Bug10076_ClaimsBccCopy.sql | 2 ++ installer/data/mysql/sysprefs.sql | 1 + .../prog/en/modules/admin/preferences/acquisitions.pref | 8 ++++++++ 4 files changed, 13 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/Bug10076_ClaimsBccCopy.sql diff --git a/C4/Letters.pm b/C4/Letters.pm index bc60bc3..45268fa 100644 --- a/C4/Letters.pm +++ b/C4/Letters.pm @@ -547,6 +547,8 @@ sub SendAlerts { if C4::Context->preference('ReplytoDefault'); $mail{'Sender'} = C4::Context->preference('ReturnpathDefault') if C4::Context->preference('ReturnpathDefault'); + $mail{'Bcc'} = $userenv->{emailaddress} + if C4::Context->preference("ClaimsBccCopy"); unless ( sendmail(%mail) ) { carp $Mail::Sendmail::error; diff --git a/installer/data/mysql/atomicupdate/Bug10076_ClaimsBccCopy.sql b/installer/data/mysql/atomicupdate/Bug10076_ClaimsBccCopy.sql new file mode 100644 index 0000000..6e4eeab --- /dev/null +++ b/installer/data/mysql/atomicupdate/Bug10076_ClaimsBccCopy.sql @@ -0,0 +1,2 @@ +INSERT INTO systempreferences (variable,value,options,explanation,type) +VALUES ('ClaimsBccCopy','0','','Bcc the ClaimAcquisition and ClaimIssues alerts','YesNo'); diff --git a/installer/data/mysql/sysprefs.sql b/installer/data/mysql/sysprefs.sql index 484b3cd..81117cf 100644 --- a/installer/data/mysql/sysprefs.sql +++ b/installer/data/mysql/sysprefs.sql @@ -91,6 +91,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('CircAutocompl','1',NULL,'If ON, autocompletion is enabled for the Circulation input','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 or Clear the screen.','Choice'), ('CircControl','ItemHomeLibrary','PickupLibrary|PatronLibrary|ItemHomeLibrary','Specify the agency that controls the circulation and fines policy','Choice'), +('ClaimsBccCopy','0','','Bcc the ClaimAcquisition and ClaimIssues alerts','YesNo'), ('Coce','0', NULL, 'If on, enables cover retrieval from the configured Coce server', 'YesNo'), ('CoceHost', NULL, NULL, 'Coce server URL', 'Free'), ('CoceProviders', NULL, 'aws,gb,ol', 'Coce providers', 'multiple'), diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref index b52b5a9..d2414a2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref @@ -60,6 +60,14 @@ Acquisitions: type: textarea - "You can use the following fields: price, quantity, budget_code, discount, sort1, sort2" - "
For example:
price: 947$a|947$c
quantity: 969$h
budget_code: 922$a" + - + - Send a copy in bcc of the ClaimAcquisition and ClaimIssues letters to the active user + - pref: ClaimsBccCopy + default: no + choices: + yes: Send + no: Don't send + Printing: - - Use the -- 2.6.2