X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/210676724bfbb6aa06d4eaa1768d2474baa16357..141b46dfdd43b461bbbe2fdd4c5fcadc3d5247b4:/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 d41e57b6a..8e4776ca6 100644 --- a/templates/webpages/order/tabs/basic_data.html +++ b/templates/webpages/order/tabs/basic_data.html @@ -14,7 +14,10 @@ [% SELF.cv | $T8 %] [% SET cv_id = SELF.cv _ '_id' %] - [% P.customer_vendor.picker("order.${SELF.cv}" _ '_id', SELF.order.$cv_id, type=SELF.cv, style='width: 300px') %] + + [% P.customer_vendor.picker("order.${SELF.cv}" _ '_id', SELF.order.$cv_id, type=SELF.cv, style='width: 300px') %] + [% P.button_tag("kivi.Order.show_vc_details_dialog()", LxERP.t8("Details (one letter abbreviation)")) %] + @@ -39,6 +42,8 @@ style='width: 300px') %] + [%- PROCESS order/tabs/_business_info_row.html SELF=SELF %] + [% 'Steuersatz' | $T8 %] [% L.select_tag('order.taxzone_id', SELF.all_taxzones, default=SELF.order.taxzone_id, title_key='description', style='width: 300px', class='recalc') %] @@ -108,31 +113,69 @@ [% END %] + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] [% 'Order Number' | $T8 %] - [% L.input_tag('order.ordnumber', SELF.order.ordnumber, size = 11) %] + [% L.input_tag('order.ordnumber', SELF.order.ordnumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %] + [%- END -%] + [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%] + [%- SET quo_nr_txt = 'Quotation Number' -%] + [%- ELSE -%] + [%- SET quo_nr_txt = 'RFQ Number' -%] + [%- END -%] - [% 'Quotation Number' | $T8 %] - [% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11) %] + [% 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") -%] [% 'Customer Order Number' | $T8 %] [% L.input_tag('order.cusordnumber', SELF.order.cusordnumber, size = 11) %] - + [%- END -%] + + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] + [%- SET transdate_txt = 'Order Date' -%] + [%- ELSIF SELF.type == "sales_quotation" -%] + [%- SET transdate_txt = 'Quotation Date' -%] + [%- ELSE -%] + [%- SET transdate_txt = 'RFQ Date' -%] + [%- END -%] - [% 'Order Date' | $T8 %] + [% transdate_txt | $T8 %] [% L.date_tag('order.transdate', SELF.order.transdate) %] + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] + [%- SET reqdate_txt = 'Reqdate' -%] + [%- ELSIF SELF.type == "sales_quotation" -%] + [%- SET reqdate_txt = 'Valid until' -%] + [%- ELSE -%] + [%- SET reqdate_txt = 'Required by' -%] + [%- END -%] - [% 'Reqdate' | $T8 %] + [% reqdate_txt | $T8 %] [% L.date_tag('order.reqdate', SELF.order.reqdate) %] + [%- IF SELF.type == "sales_quotation" -%] + + [% 'Order probability' | $T8 %] + [%- L.select_tag('order.order_probability', SELF.order_probabilities, title='title', default=SELF.order.order_probability) %]% + + + [% 'Expected billing date' | $T8 %] + [%- L.date_tag('order.expected_billing_date', SELF.order.expected_billing_date) %] + + [%- END %] + [% 'Insert Date' | $T8 %] [% SELF.order.itime_as_date %] @@ -169,6 +212,9 @@ [%- 'Partnumber' | $T8 %] [%- 'Type' | $T8 %] [%- 'Description' | $T8 %] + [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] + [%- 'Delivered' | $T8 %] + [%- END -%] [%- 'Qty' | $T8 %] [%- 'Price Factor' | $T8 %] [%- 'Unit' | $T8 %] @@ -180,7 +226,7 @@ [%- FOREACH item = SELF.order.items_sorted %] - [%- PROCESS order/tabs/_row.html ITEM=item ID=item.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 %] [%- END %]