Revision 517788ee
Von Sven Schöling vor etwa 10 Jahren hinzugefügt
SL/DB/MetaSetup/Default.pm | ||
---|---|---|
42 | 42 |
datev_check_on_sales_invoice => { type => 'boolean', default => 'true' }, |
43 | 43 |
delivery_plan_calculate_transferred_do => { type => 'boolean', default => 'false', not_null => 1 }, |
44 | 44 |
delivery_plan_show_value_of_goods => { type => 'boolean', default => 'false', not_null => 1 }, |
45 |
disabled_price_sources => { type => 'array' }, |
|
45 | 46 |
dunning_ar => { type => 'integer' }, |
46 | 47 |
dunning_ar_amount_fee => { type => 'integer' }, |
47 | 48 |
dunning_ar_amount_interest => { type => 'integer' }, |
... | ... | |
50 | 51 |
fxgain_accno_id => { type => 'integer' }, |
51 | 52 |
fxloss_accno_id => { type => 'integer' }, |
52 | 53 |
gl_changeable => { type => 'integer', default => 2, not_null => 1 }, |
54 |
global_bcc => { type => 'text', default => '' }, |
|
53 | 55 |
id => { type => 'serial', not_null => 1 }, |
54 | 56 |
income_accno_id => { type => 'integer' }, |
55 | 57 |
inventory_accno_id => { type => 'integer' }, |
bin/mozilla/io.pl | ||
---|---|---|
1000 | 1000 |
$form->{oldmedia} = $form->{media}; |
1001 | 1001 |
$form->{media} = "email"; |
1002 | 1002 |
|
1003 |
my $defaults = |
|
1004 |
my $global_bcc = AM->get_defaults()->{global_bcc}; |
|
1005 |
|
|
1006 |
$form->{bcc} = join ', ', grep $_, $form->{bcc}, $global_bcc; |
|
1007 |
|
|
1003 | 1008 |
my $attachment_filename = $form->generate_attachment_filename(); |
1004 | 1009 |
my $subject = $form->{subject} || $form->generate_email_subject(); |
1005 | 1010 |
|
locale/de/all | ||
---|---|---|
1166 | 1166 |
'Generic Tax Report' => 'USTVA Bericht', |
1167 | 1167 |
'Git revision: #1, #2 #3' => 'Git-Revision: #1, #2 #3', |
1168 | 1168 |
'Given Name' => 'Vorname', |
1169 |
'Global Record BCC' => 'Globale BCC-Adresse', |
|
1169 | 1170 |
'Go one step back' => 'Einen Schritt zurück', |
1170 | 1171 |
'Go one step forward' => 'Einen Schritt vorwärts', |
1171 | 1172 |
'Greeting' => 'Anrede', |
... | ... | |
1443 | 1444 |
'Mandate Date of Signature' => 'Mandat-Unterschriftsdatum', |
1444 | 1445 |
'Mandator ID' => 'Mandanten-ID', |
1445 | 1446 |
'Mandatory Departments' => 'Benutzer muss Abteilungen vergeben', |
1447 |
'Manually sent E-Mails will have their BCC field appended with this address. Will not trigger for employees without the right to send bcc, and will not apply to mails sent by automated jobs.' => 'Diese Mailadresse wird automatisch in das BCC Feld bei Mailversand kopiert. Hat keine Auswirkungen für Mitarbeiter ohne das Recht BCC zu versenden, und ignoriert wenn Mails automatisch versendet werden.', |
|
1446 | 1448 |
'Map' => 'Karte', |
1447 | 1449 |
'Mar' => 'März', |
1448 | 1450 |
'March' => 'März', |
sql/Pg-upgrade2/defaults_global_bcc.sql | ||
---|---|---|
1 |
-- @tag: defaults_global_bcc |
|
2 |
-- @description: Konfigurierbare globale BCC-Adresse |
|
3 |
-- @depends: release_3_1_0 |
|
4 |
|
|
5 |
ALTER TABLE defaults ADD COLUMN global_bcc TEXT DEFAULT ''; |
templates/webpages/client_config/_features.html | ||
---|---|---|
1 |
[%- USE LxERP -%][%- USE L -%][%- USE P -%] |
|
1 |
[%- USE LxERP -%][%- USE L -%][%- USE P -%][%- USE T8 %]
|
|
2 | 2 |
<div id="features"> |
3 | 3 |
<table> |
4 | 4 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("WebDAV") %]</td></tr> |
... | ... | |
95 | 95 |
<td>[% LxERP.t8('If disabled purchase invoices can only be created by conversion from existing requests for quotations, purchase orders and purchase delivery orders.') %]</td> |
96 | 96 |
</tr> |
97 | 97 |
|
98 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("E-mail") %]</td></tr> |
|
99 |
|
|
100 |
<tr> |
|
101 |
<td align="right">[% LxERP.t8('Global Record BCC') %]</td> |
|
102 |
<td> |
|
103 |
[% L.input_tag('defaults.global_bcc', SELF.defaults.global_bcc, style=style) %] |
|
104 |
</td> |
|
105 |
<td>[% 'Manually sent E-Mails will have their BCC field appended with this address. Will not trigger for employees without the right to send bcc, and will not apply to mails sent by automated jobs.' | $T8 %]</td> |
|
106 |
</tr> |
|
107 |
|
|
98 | 108 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("Requirement Specs") %]</td></tr> |
99 | 109 |
|
100 | 110 |
<tr> |
Auch abrufbar als: Unified diff
Gloable BCC Adresse