X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/d1d96e5d434094ad93acf4c938a9db49a75cd1e7..7635f647ec7dcdef51684b21601ee0930ea2bc5b:/templates/webpages/client_config/form.html
diff --git a/templates/webpages/client_config/form.html b/templates/webpages/client_config/form.html
index d195e2a1e..0d2d64eeb 100644
--- a/templates/webpages/client_config/form.html
+++ b/templates/webpages/client_config/form.html
@@ -1,5 +1,6 @@
-[%- USE T8 %][%- USE L %][% USE LxERP %]
+[%- USE T8 %][%- USE L %][% USE LxERP %][%- USE HTML -%]
+[% PROCESS 'common/select_warehouse_bin.html' WAREHOUSES=SELF.WAREHOUSES warehouse_id=SELF.warehouse_id bin_id=SELF.bin_id %]
[% title | html %]
[% PROCESS 'common/flash.html' %]
@@ -11,11 +12,69 @@
[% 'Posting Configuration' | $T8 %]
+
+
+ [% 'Sales invoices changeable' | $T8 %]
+ [% L.select_tag('is_changeable', SELF.posting_options, value_key => 'value', title_key => 'title', default => SELF.is_changeable) %]
+ [% 'Should sales invoices be and when should they be changeable or deleteable after posting?' | $T8 %]
+
+
+ [% 'Purchase invoices changeable' | $T8 %]
+ [% L.select_tag('ir_changeable', SELF.posting_options, value_key => 'value', title_key => 'title', default => SELF.ir_changeable) %]
+ [% 'Should purchase invoices be and when should they be deleteable after posting?' | $T8 %]
+
+
+ [% 'AR transactions changeable' | $T8 %]
+ [% L.select_tag('ar_changeable', SELF.posting_options, value_key => 'value', title_key => 'title', default => SELF.ar_changeable) %]
+ [% 'Should ar transactions be and when should they be changeable or deleteable after posting?' | $T8 %]
+
+
+ [% 'AP transactions changeable' | $T8 %]
+ [% L.select_tag('ap_changeable', SELF.posting_options, value_key => 'value', title_key => 'title', default => SELF.ap_changeable) %]
+ [% 'Should ap transactions be and when should they be changeable or deleteable after posting?' | $T8 %]
+
+
+ [% 'GL transactions changeable' | $T8 %]
+ [% L.select_tag('gl_changeable', SELF.posting_options, value_key => 'value', title_key => 'title', default => SELF.gl_changeable) %]
+ [% 'Should gl transactions be and when should they be changeable or deleteable after posting?' | $T8 %]
+
+
+
+
+
[% 'Payments Changeable' | $T8 %]
[% L.select_tag('payments_changeable', SELF.payment_options, value_key => 'value', title_key => 'title', default => SELF.payments_changeable) %]
[% 'Should payments be and when should they be changeable after posting?' | $T8 %]
+
+
+
+
+
+ [% 'Show "mark as paid" in sales invoices' | $T8 %]
+ [% L.yes_no_tag('is_show_mark_as_paid', SELF.is_show_mark_as_paid) %]
+ [% 'Should the "mark as paid" button showed on sales invoices?' | $T8 %]
+
+
+ [% 'Show "mark as paid" in purchase invoices' | $T8 %]
+ [% L.yes_no_tag('ir_show_mark_as_paid', SELF.ir_show_mark_as_paid) %]
+ [% 'Should the "mark as paid" button showed in purchase invoices?' | $T8 %]
+
+
+ [% 'Show "mark as paid" in ar transactions' | $T8 %]
+ [% L.yes_no_tag('ar_show_mark_as_paid', SELF.ar_show_mark_as_paid) %]
+ [% 'Should the "mark as paid" button showed in ar transactions?' | $T8 %]
+
+
+ [% 'Show "mark as paid" in ap transactions' | $T8 %]
+ [% L.yes_no_tag('ap_show_mark_as_paid', SELF.ap_show_mark_as_paid) %]
+ [% 'Should the "mark as paid" button showed in ap transactions?' | $T8 %]
+
+
+
+
+
[% 'Accounting method' | $T8 %]
[% L.select_tag('accounting_method', SELF.accounting_options, value_key => 'value', title_key => 'title', default => SELF.accounting_method) %]
@@ -73,6 +132,33 @@
+
+ [% 'Orders / Delivery Orders deleteable' | $T8 %]
+
+
+ [% 'Sales Orders deleteable' | $T8 %]
+ [% L.yes_no_tag('sales_order_show_delete', SELF.sales_order_show_delete) %]
+ [% 'Show delete button in sales orders?' | $T8 %]
+
+
+ [% 'Purchase Orders deleteable' | $T8 %]
+ [% L.yes_no_tag('purchase_order_show_delete', SELF.purchase_order_show_delete) %]
+ [% 'Show delete button in purchase orders?' | $T8 %]
+
+
+ [% 'Sales Delivery Orders deleteable' | $T8 %]
+ [% L.yes_no_tag('sales_delivery_order_show_delete', SELF.sales_delivery_order_show_delete) %]
+ [% 'Show delete button in sales delivery orders?' | $T8 %]
+
+
+ [% 'Purchase Delivery Orders deleteable' | $T8 %]
+ [% L.yes_no_tag('purchase_delivery_order_show_delete', SELF.purchase_delivery_order_show_delete) %]
+ [% 'Show delete button in purchase delivery orders?' | $T8 %]
+
+
+
+
+
[% 'Warehouse' | $T8 %]
@@ -91,7 +177,39 @@
[% 'Any stock contents containing a best before date will be impossible to stock out otherwise.' | $T8 %]
+
+
+
+ [% 'Default Warehouse' | $T8 %]
+
+
+ [%- FOREACH warehouse = SELF.WAREHOUSES %]
+ [% warehouse.description %]
+ [%- END %]
+
+
+
+ [% 'This is the default bin for parts' | $T8 %]
+
+
+
+ [% 'Default Bin' | $T8 %]
+
+
+
+
+ [% 'Weight' | $T8 %]
+
+
+ [% 'Show weights' | $T8 %]
+
+ [% L.yes_no_tag('show_weight', SELF.show_weight) %]
+
+
+ [% 'Show the weights of articles and the total weight in orders, invoices and delivery notes?' | $T8 %]
+
+
@@ -99,4 +217,6 @@
[%- L.hidden_tag('action', 'ClientConfig/dispatch') %]
[%- L.submit_tag('action_save', LxERP.t8('Save')) %]
+
+