X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Forder%2Ftabs%2Fbasic_data.html;h=05a663c1c0b7b6158c1ceb56314c8396024959df;hb=8f7bb9d5dc2b961a2efc5f241dec43583f7ca21c;hp=f3806ff63dbcf9288de1c2797664fc23f2a92dae;hpb=598383b3b6b63428fcabc5fb6e5595ec59de28e3;p=kivitendo-erp.git diff --git a/templates/webpages/order/tabs/basic_data.html b/templates/webpages/order/tabs/basic_data.html index f3806ff63..05a663c1c 100644 --- a/templates/webpages/order/tabs/basic_data.html +++ b/templates/webpages/order/tabs/basic_data.html @@ -31,15 +31,24 @@ style='width: 300px') %] - + [% 'Shipping Address' | $T8 %] - [% L.select_tag('order.shipto_id', - SELF.order.${SELF.cv}.shipto, - default=SELF.order.shipto_id, - title_key='displayable_id', - value_key='shipto_id', - with_empty=1, - style='width: 300px') %] + + + [% 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, + default=SELF.order.shipto_id, + title_key='displayable_id', + value_key='shipto_id', + with_empty=0, + style='width: 300px') %] + + [% L.button_tag("kivi.Order.edit_custom_shipto()", LxERP.t8("Custom shipto")) %] + [%- PROCESS order/tabs/_business_info_row.html SELF=SELF %] @@ -64,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 %] @@ -85,7 +103,7 @@ [% 'Transaction description' | $T8 %] - [% L.input_tag('order.transaction_description', SELF.order.transaction_description, style='width: 300px') %] + [% L.input_tag('order.transaction_description', SELF.order.transaction_description, 'data-validate'=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '', style='width: 300px') %] @@ -168,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" -%] @@ -187,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 %]