Revision bb8edc8e
Von Rolf Fluehmann vor mehr als 8 Jahren hinzugefügt
SL/DB/MetaSetup/Default.pm | ||
---|---|---|
49 | 49 |
duns => { type => 'text' }, |
50 | 50 |
email_journal => { type => 'integer', default => 2 }, |
51 | 51 |
expense_accno_id => { type => 'integer' }, |
52 |
feature_balance => { type => 'boolean', default => 'true', not_null => 1 }, |
|
53 |
feature_datev => { type => 'boolean', default => 'true', not_null => 1 }, |
|
54 |
feature_erfolgsrechnung => { type => 'boolean', default => 'false', not_null => 1 }, |
|
55 |
feature_eurechnung => { type => 'boolean', default => 'true', not_null => 1 }, |
|
56 |
feature_ustva => { type => 'boolean', default => 'true', not_null => 1 }, |
|
52 | 57 |
fxgain_accno_id => { type => 'integer' }, |
53 | 58 |
fxloss_accno_id => { type => 'integer' }, |
54 | 59 |
gl_changeable => { type => 'integer', default => 2, not_null => 1 }, |
locale/de/all | ||
---|---|---|
3238 | 3238 |
'Uploaded at' => 'Hochgeladen um', |
3239 | 3239 |
'Uploaded on #1, size #2 kB' => 'Am #1 hochgeladen, Größe #2 kB', |
3240 | 3240 |
'Use As New' => 'Als neu verwenden', |
3241 |
'Use Balance Sheet' => 'Bilanz verwenden', |
|
3242 |
'Use Datevautomatik' => 'Datev-Automatik verwenden', |
|
3243 |
'Use Income' => 'Einnahmen-Überschuß-Rechnung verwenden', |
|
3244 |
'Use Erfolgsrechnung' => 'Erfolgsrechnung verwenden', |
|
3245 |
'Use UStVA' => 'UStVA verwenden', |
|
3241 | 3246 |
'Use WebDAV Repository' => 'WebDAV-Ablage verwenden', |
3242 | 3247 |
'Use existing templates' => 'Vorhandene Druckvorlagen verwenden', |
3243 | 3248 |
'Use linked items' => 'Verknüpfte Positionen verwenden', |
sql/Pg-upgrade2/defaults_add_features.sql | ||
---|---|---|
1 |
-- @tag: defaults_add_features |
|
2 |
-- @description: flags to switch on/off the features for the clients |
|
3 |
-- @depends: release_3_3_0 |
|
4 |
ALTER TABLE defaults ADD COLUMN feature_balance BOOLEAN NOT NULL DEFAULT TRUE; |
|
5 |
ALTER TABLE defaults ADD COLUMN feature_datev BOOLEAN NOT NULL DEFAULT TRUE; |
|
6 |
ALTER TABLE defaults ADD COLUMN feature_erfolgsrechnung BOOLEAN NOT NULL DEFAULT FALSE; |
|
7 |
ALTER TABLE defaults ADD COLUMN feature_eurechnung BOOLEAN NOT NULL DEFAULT TRUE; |
|
8 |
ALTER TABLE defaults ADD COLUMN feature_ustva BOOLEAN NOT NULL DEFAULT TRUE; |
templates/webpages/client_config/_features.html | ||
---|---|---|
1 | 1 |
[%- USE LxERP -%][%- USE L -%][%- USE P -%][%- USE T8 %] |
2 | 2 |
<div id="features"> |
3 | 3 |
<table> |
4 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("DATEV") %]</td></tr> |
|
5 |
|
|
6 |
<tr> |
|
7 |
<td align="right">[% LxERP.t8('Datevautomatik') %]</td> |
|
8 |
<td>[% L.yes_no_tag('defaults.feature_datev', SELF.defaults.feature_datev) %]</td> |
|
9 |
<td>[% LxERP.t8('Use Datevautomatik') %]</td> |
|
10 |
</tr> |
|
11 |
|
|
12 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("UStVA") %]</td></tr> |
|
13 |
|
|
14 |
<tr> |
|
15 |
<td align="right">[% LxERP.t8('UStVA') %]</td> |
|
16 |
<td>[% L.yes_no_tag('defaults.feature_ustva', SELF.defaults.feature_ustva) %]</td> |
|
17 |
<td>[% LxERP.t8('Use UStVA') %]</td> |
|
18 |
</tr> |
|
19 |
|
|
4 | 20 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("WebDAV") %]</td></tr> |
5 | 21 |
|
6 | 22 |
<tr> |
... | ... | |
14 | 30 |
<td>[% LxERP.t8('Save document in WebDAV repository') %]</td> |
15 | 31 |
</tr> |
16 | 32 |
|
33 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("Reports") %]</td></tr> |
|
34 |
|
|
35 |
<tr> |
|
36 |
<td align="right">[% LxERP.t8('Balance') %]</td> |
|
37 |
<td>[% L.yes_no_tag('defaults.feature_balance', SELF.defaults.feature_balance) %]</td> |
|
38 |
<td>[% LxERP.t8('Use Balance Sheet') %]</td> |
|
39 |
</tr> |
|
40 |
<tr> |
|
41 |
<td align="right">[% LxERP.t8('income') %]</td> |
|
42 |
<td>[% L.yes_no_tag('defaults.feature_eurechnung', SELF.defaults.feature_eurechnung) %]</td> |
|
43 |
<td>[% LxERP.t8('Use Income') %]</td> |
|
44 |
</tr> |
|
45 |
<tr> |
|
46 |
<td align="right">[% LxERP.t8('Erfolgsrechnung') %]</td> |
|
47 |
<td>[% L.yes_no_tag('defaults.feature_erfolgsrechnung', SELF.defaults.feature_erfolgsrechnung) %]</td> |
|
48 |
<td>[% LxERP.t8('Use Erfolgsrechnung') %]</td> |
|
49 |
</tr> |
|
50 |
|
|
17 | 51 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("Customer Master Data") %]</td></tr> |
18 | 52 |
|
19 | 53 |
<tr> |
Auch abrufbar als: Unified diff
new settings balance, datev, erfolgsrechnung, eurechnung, ustva to client-features