X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Forder%2Ftabs%2Fbasic_data.html;h=96ef3e79b990cbcd0243340e5fdc3de44da93766;hb=677f0dd53d5f964fb4e69eaf7236ffb6a830568b;hp=a3fa939d28f2f359d2d043def1551a5a4e4df25e;hpb=e66b687806c25e17e2526fd422e5e79ec8a00e5a;p=kivitendo-erp.git diff --git a/templates/webpages/order/tabs/basic_data.html b/templates/webpages/order/tabs/basic_data.html index a3fa939d2..96ef3e79b 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,30 @@ [% 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_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 %] @@ -70,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') %] @@ -116,7 +149,16 @@ [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] [% 'Order Number' | $T8 %] - [% L.input_tag('order.ordnumber', SELF.order.ordnumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %] + + [%- IF INSTANCE_CONF.get_sales_purchase_record_numbers_changeable %] + [% L.input_tag('order.ordnumber', SELF.order.ordnumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %] + [%- ELSIF SELF.order.id %] + [% HTML.escape(SELF.order.ordnumber) %] + [% L.hidden_tag("order.ordnumber", SELF.order.ordnumber) %] + [% ELSE %] + [% LxERP.t8("will be set upon saving") %] + [%- END %] + [%- END -%] @@ -127,11 +169,18 @@ [%- END -%] [% quo_nr_txt | $T8 %] - [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] - [% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11) %] - [%- ELSE -%] - [% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %] - [%- END -%] + + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] + [% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11) %] + [%- ELSIF INSTANCE_CONF.get_sales_purchase_record_numbers_changeable %] + [% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %] + [%- ELSIF SELF.order.id %] + [% HTML.escape(SELF.order.quonumber) %] + [% L.hidden_tag("order.quonumber", SELF.order.quonumber) %] + [% ELSE %] + [% LxERP.t8("will be set upon saving") %] + [%- END %] + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] @@ -153,16 +202,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" -%] @@ -172,7 +226,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 %] @@ -187,15 +241,19 @@ - [%- PROCESS order/tabs/_item_input.html %] + [%- 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')) %]
- -
+ [%- IF SELF.positions_scrollbar_height -%] + [%- SET scroll_style = 'style="overflow-y: auto; height:' _ SELF.positions_scrollbar_height _ 'vh;"' -%] + [%- ELSE -%] + [%- SET scroll_style = '' -%] + [%- END -%] +
@@ -209,13 +267,25 @@ - - - + [%- IF SELF.show_update_button -%] + + [%- END %] + + [%- IF SELF.search_cvpartnumber -%] + + [%- END -%] + + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] - + [%- END -%] - + @@ -226,7 +296,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 %] + [%- PROCESS order/tabs/_row.html ITEM=item ID=(item.id||item.new_fake_id) -%] [%- END %]
[%- 'position' | $T8 %] [%- LxERP.t8('reorder item') %] [%- LxERP.t8('delete item') %] [%- 'Partnumber' | $T8 %][%- 'Type' | $T8 %][%- 'Description' | $T8 %] + [%- 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') %] + [%- 'Partnumber' | $T8 %] [%- SELF.cv == "customer" ? LxERP.t8('Customer Part Number') : LxERP.t8('Model') %][%- 'Type' | $T8 %][%- 'Description' | $T8 %][%- 'Delivered' | $T8 %][%- 'Delivered' | $T8 %] [%- 'Qty' | $T8 %] [%- 'Qty' | $T8 %] [%- 'Price Factor' | $T8 %] [%- 'Unit' | $T8 %] [%- 'Price Source' | $T8 %]