feature_datev => { type => 'boolean', default => 'true', not_null => 1 },
feature_erfolgsrechnung => { type => 'boolean', default => 'false', not_null => 1 },
feature_eurechnung => { type => 'boolean', default => 'true', not_null => 1 },
+ feature_experimental => { type => 'boolean', default => 'true', not_null => 1 },
feature_ustva => { type => 'boolean', default => 'true', not_null => 1 },
fxgain_accno_id => { type => 'integer' },
fxloss_accno_id => { type => 'integer' },
'Employees' => 'Benutzer',
'Empty selection for warehouse will not be added, even if the old bin is still visible (use back and forth to edit again).' => 'Leere Lager-Auswahl wird ignoriert, selbst wenn noch ein Lagerplatz ausgewählt ist. Alle Daten können durch zurück und vorwärts korrigiert werden.',
'Empty transaction!' => 'Buchung ist leer!',
+ 'Enable experimental features' => 'Experimentelle Features einschalten',
'Enabled Quick Searched' => 'Aktivierte Schnellsuchen',
'Enabled modules' => 'Aktivierte Module',
'End date' => 'Enddatum',
'Expense' => 'Aufwandskonto',
'Expense Account' => 'Aufwandskonto',
'Expense/Asset' => 'Aufwand/Anlagen',
+ 'Experimental Features' => 'Experimentelle Features',
+ 'Experimental features are:' => 'Experimentelle Features sind:',
'Export' => 'Export',
'Export Buchungsdaten' => 'Export Buchungsdaten',
'Export Number' => 'Exportnummer',
'Employees' => '',
'Empty selection for warehouse will not be added, even if the old bin is still visible (use back and forth to edit again).' => '',
'Empty transaction!' => '',
+ 'Enable experimental features' => '',
'Enabled Quick Searched' => '',
'Enabled modules' => '',
'End date' => '',
'Expense' => '',
'Expense Account' => '',
'Expense/Asset' => '',
+ 'Experimental Features' => '',
+ 'Experimental features are:' => '',
'Export' => '',
'Export Buchungsdaten' => '',
'Export Number' => '',
--- /dev/null
+-- @tag: defaults_add_feature_experimental
+-- @description: Konfigurations-Option, ob experimentelle Features verwendet werden sollen.
+-- @depends: release_3_4_1
+
+ALTER TABLE defaults ADD COLUMN feature_experimental BOOLEAN NOT NULL DEFAULT TRUE;
<td align="right">[% LxERP.t8('Add Customer/Vendor Number as a reference add-on for SEPA export.') %]</td>
<td>[% L.yes_no_tag('defaults.sepa_reference_add_vc_vc_id', SELF.defaults.sepa_reference_add_vc_vc_id) %]</td>
</tr>
+
+ <tr><td class="listheading" colspan="4">[% LxERP.t8("Experimental Features") %]</td></tr>
+ <tr>
+ <td align="right">[% LxERP.t8('Enable experimental features') %]</td>
+ <td>[% L.yes_no_tag('defaults.feature_experimental', SELF.defaults.feature_experimental) %]</td>
+ <td>[% LxERP.t8('Experimental features are:') %] [% LxERP.t8('new order controller') %]</td>
+ </tr>
+
</table>
</div>