X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/a823f2b0dcf59d7344f7b112272849018e1bbf91..b30eacc6bbc6f:/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 870e4aaa1..11735808d 100644 --- a/templates/webpages/order/tabs/basic_data.html +++ b/templates/webpages/order/tabs/basic_data.html @@ -12,7 +12,7 @@ - + [% SET cv_id = SELF.cv _ '_id' %] - + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] @@ -162,7 +162,7 @@ [%- END -%] - + [%- IF SELF.type == "sales_quotation" -%] @@ -172,7 +172,7 @@ - + [%- END %] @@ -187,15 +187,19 @@
[% SELF.cv | $T8 %][%- SELF.cv == "customer" ? LxERP.t8('Customer') : LxERP.t8('Vendor') -%] [% P.customer_vendor.picker("order.${SELF.cv}" _ '_id', SELF.order.$cv_id, type=SELF.cv, style='width: 300px') %] @@ -150,7 +150,7 @@ [%- END -%]
[% transdate_txt | $T8 %][% L.date_tag('order.transdate', SELF.order.transdate) %][% L.date_tag('order.transdate_as_date', SELF.order.transdate_as_date) %]
[% reqdate_txt | $T8 %][% L.date_tag('order.reqdate', SELF.order.reqdate) %][% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date) %]
[% 'Expected billing date' | $T8 %][%- L.date_tag('order.expected_billing_date', SELF.order.expected_billing_date) %][%- L.date_tag('order.expected_billing_date_as_date', SELF.order.expected_billing_date_sa_date) %]
- [%- 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')) %]
- -
+ [%- IF SELF.positions_scrollbar_height -%] + [%- SET scroll_style = 'style="overflow-y: auto; height:' _ SELF.positions_scrollbar_height _ 'vh;"' -%] + [%- ELSE -%] + [%- SET scroll_style = '' -%] + [%- END -%] +
@@ -209,10 +213,16 @@ - - - - + + [%- IF SELF.search_cvpartnumber -%] + + [%- END -%] + + + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] + + [%- END -%] + @@ -223,7 +233,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) TYPE=SELF.type ALL_PRICE_FACTORS=SELF.all_price_factors SEARCH_CVPARTNUMBER=SELF.search_cvpartnumber %] [%- END %]
[%- 'position' | $T8 %] [%- LxERP.t8('reorder item') %] [%- LxERP.t8('delete item') %] [%- 'Partnumber' | $T8 %][%- 'Type' | $T8 %][%- 'Description' | $T8 %] [%- 'Qty' | $T8 %] [%- 'Partnumber' | $T8 %] [%- SELF.cv == "customer" ? LxERP.t8('Customer Part Number') : LxERP.t8('Model') %][%- 'Type' | $T8 %][%- 'Description' | $T8 %][%- 'Delivered' | $T8 %] [%- 'Qty' | $T8 %] [%- 'Price Factor' | $T8 %] [%- 'Unit' | $T8 %] [%- 'Price Source' | $T8 %]
@@ -288,6 +298,27 @@
+ [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%] + [%- SET marge_class = (SELF.order.marge_total < 0) ? 'plus0' : '' -%] + + + + + + + + + + + +
[% 'Ertrag' | $T8 %] + [%- L.div_tag(SELF.order.marge_total_as_number, id='marge_total_id', class=marge_class) %] +
[% 'Ertrag prozentual' | $T8 %] + [%- L.div_tag(LxERP.format_amount(SELF.order.marge_percent, 2), id='marge_percent_id', class=marge_class) %] + [%- L.div_tag('%', id='marge_percent_sign_id', class=marge_class) %]
+ + [%- END %] +