X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3bd723981fb1a3c5d68b47122258fda574298c3a..07a735e0cb464b4cf96617578868957635410ad9:/templates/webpages/admin/create_dataset.html
diff --git a/templates/webpages/admin/create_dataset.html b/templates/webpages/admin/create_dataset.html
index 7c4559179..36b628d07 100644
--- a/templates/webpages/admin/create_dataset.html
+++ b/templates/webpages/admin/create_dataset.html
@@ -31,6 +31,11 @@
[% L.input_tag('defaultcurrency', FORM.defaultcurrency || 'EUR') %] |
+
+ | [% LxERP.t8('Precision') %] |
+ [% L.input_tag('precision', FORM.precision || '0.01') %] |
+
+
| [% LxERP.t8('Accounting method') %] |
[% L.select_tag('accounting_method', SELF.all_accounting_methods, title_key='name', default=(FORM.accounting_method || 'cash')) %] |
@@ -76,11 +81,13 @@ function comment_selected_chart(s) {
"Hinweis vom 20.09.2011");
} else if (/^Switzerland/.test(s)) {
document.getElementById('defaultcurrency').value='CHF';
+ document.getElementById('precision').value='0.05';
document.getElementById('accounting_method').value='accrual';
document.getElementById('inventory_system').value='periodic';
document.getElementById('profit_determination').value='balance';
} else {
document.getElementById("defaultcurrency").value="EUR";
+ document.getElementById('precision').value='0.01';
document.getElementById('accounting_method').value='cash';
document.getElementById('inventory_system').value='periodic';
document.getElementById('profit_determination').value='income';