X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/46135cc6988f5ce2d8d1be1627651e5da28d64ae..0b34e29fb04ad9ac9912f67b767f9f401700ca97:/SL/DefaultManager/German.pm diff --git a/SL/DefaultManager/German.pm b/SL/DefaultManager/German.pm new file mode 100644 index 000000000..372b8f3a5 --- /dev/null +++ b/SL/DefaultManager/German.pm @@ -0,0 +1,23 @@ +package SL::DefaultManager::German; + +use strict; +use parent qw(Rose::Object); + +# client defaults +sub chart_of_accounts { 'Germany-DATEV-SKR03EU' } +sub accounting_method { 'cash' } +sub inventory_system { 'periodic' } +sub profit_determination { 'income' } +sub currency { 'EUR' } +sub precision { 0.01 } + +# user defaults +sub numberformat { '1.000,00' } +sub dateformat { 'dd.mm.yy' } +sub timeformat { 'hh:mm' } + +# default for login/admin areas +sub country { 'DE' } +sub language { 'de' } + +1;