X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/199bd497fa158b819070767fa737b2e23d164b96..fa04f8138cc6447:/templates/webpages/order/tabs/basic_data.html
diff --git a/templates/webpages/order/tabs/basic_data.html b/templates/webpages/order/tabs/basic_data.html
index c413fb92f..c4bcda06c 100644
--- a/templates/webpages/order/tabs/basic_data.html
+++ b/templates/webpages/order/tabs/basic_data.html
@@ -36,8 +36,11 @@
[% shiptos = [ { shipto_id => "", displayable_id => LxERP.t8("No/individual shipping address") } ] ;
+ FOREACH s = SELF.order.${SELF.cv}.shipto ;
+ shiptos.push(s) ;
+ END ;
L.select_tag('order.shipto_id',
- shiptos.import(SELF.order.${SELF.cv}.shipto),
+ shiptos,
default=SELF.order.shipto_id,
title_key='displayable_id',
value_key='shipto_id',
@@ -70,6 +73,15 @@
|
+[%- IF SELF.all_languages.size %]
+
+ | [% 'Language' | $T8 %] |
+
+ [% L.select_tag('order.language_id', SELF.all_languages, default=SELF.order.language_id, title_key='description', with_empty=1, style='width:300px') %]
+ |
+
+[%- END %]
+
[%- IF SELF.all_departments.size %]
| [% 'Department' | $T8 %] |
@@ -174,16 +186,21 @@
[% L.date_tag('order.transdate_as_date', SELF.order.transdate_as_date) %] |
+
+ | [% 'Tax point' | $T8 %] |
+ [% L.date_tag('order.tax_point_as_date', SELF.order.tax_point_as_date, class="recalc") %] |
+
+
[%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
- [%- SET reqdate_txt = 'Reqdate' -%]
+ [%- SET reqdate_txt = 'Reqdate'; SET reqdate_class = 'recalc' -%]
[%- ELSIF SELF.type == "sales_quotation" -%]
- [%- SET reqdate_txt = 'Valid until' -%]
+ [%- SET reqdate_txt = 'Valid until'; SET reqdate_class = '' -%]
[%- ELSE -%]
- [%- SET reqdate_txt = 'Required by' -%]
+ [%- SET reqdate_txt = 'Required by'; SET reqdate_class = 'recalc' -%]
[%- END -%]
| [% reqdate_txt | $T8 %] |
- [% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date) %] |
+ [% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date, class=reqdate_class) %] |
[%- IF SELF.type == "sales_quotation" -%]
@@ -193,7 +210,7 @@
| [% 'Expected billing date' | $T8 %] |
- [%- L.date_tag('order.expected_billing_date_as_date', SELF.order.expected_billing_date_sa_date) %] |
+ [%- L.date_tag('order.expected_billing_date_as_date', SELF.order.expected_billing_date_as_date) %] |
[%- END %]
@@ -210,7 +227,7 @@
[%- PROCESS order/tabs/_item_input.html SELF=SELF %]
- [% L.button_tag('kivi.Order.show_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
+ [% L.button_tag('kivi.Order.open_multi_items_dialog()', LxERP.t8('Add multiple items')) %]