X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/a66591ccf74ff3d32ac31b6a91849a0476e54eb7..0ea3d7bd2ed6feec7c25312a44f59cd4f01a1b98:/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 11735808d..b7086a8ae 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 %] @@ -49,6 +58,21 @@ [% L.select_tag('order.taxzone_id', SELF.all_taxzones, default=SELF.order.taxzone_id, title_key='description', style='width: 300px', class='recalc') %] + [% SET currency_id = SELF.order.currency_id || INSTANCE_CONF.get_currency_id # use default currency for new order %] + + [% 'Currency' | $T8 %] + [% L.select_tag('order.currency_id', SELF.all_currencies, default=currency_id, value_key='id', title_key='name') %] + + + [% 'Exchangerate' | $T8 %] + 1 [% SELF.order.currency.name %] = + [% L.input_tag('order.exchangerate_as_null_number', SELF.order.exchangerate_as_null_number, size="15", class="reformat_number_as_null_number numeric") %] + [% INSTANCE_CONF.default_currency %] + [% L.hidden_tag('old_currency_id', currency_id) %] + [% L.hidden_tag('old_exchangerate', SELF.order.exchangerate_as_null_number) %] + + + [%- IF SELF.all_departments.size %] [% 'Department' | $T8 %] @@ -70,7 +94,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') %] @@ -213,6 +237,15 @@ [%- 'position' | $T8 %] [%- LxERP.t8('reorder item') %] [%- LxERP.t8('delete item') %] + [%- IF SELF.show_update_button -%] + + [%- L.img_tag(src="image/rotate_cw.svg", + alt=LxERP.t8('Update from master data'), + title= LxERP.t8('Update from master data'), + onclick="if (!confirm('" _ LxERP.t8("Are you sure to update all positions from master data?") _ "')) return false; kivi.Order.update_all_rows_from_master_data();", + id='update_from_master') %] + + [%- END %] [%- 'Partnumber' | $T8 %] [%- IF SELF.search_cvpartnumber -%] [%- SELF.cv == "customer" ? LxERP.t8('Customer Part Number') : LxERP.t8('Model') %] @@ -233,7 +266,7 @@ [%- FOREACH item = SELF.order.items_sorted %] - [%- PROCESS order/tabs/_row.html ITEM=item ID=(item.id||item.new_fake_id) TYPE=SELF.type ALL_PRICE_FACTORS=SELF.all_price_factors SEARCH_CVPARTNUMBER=SELF.search_cvpartnumber %] + [%- PROCESS order/tabs/_row.html ITEM=item ID=(item.id||item.new_fake_id) -%] [%- END %]