X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/2ff1c023218df79f45ab9343dc467e123f5eaa82..d2d780320b8430a099ebfe013dc81ba9c2b70253:/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 8d1a25701..c67981292 100644
--- a/templates/webpages/order/tabs/basic_data.html
+++ b/templates/webpages/order/tabs/basic_data.html
@@ -2,6 +2,9 @@
[%- USE HTML %]
[%- USE LxERP %]
[%- USE L %]
+[%- USE P %]
+
+[%- INCLUDE 'generic/set_longdescription.html' %]
@@ -11,7 +14,10 @@
[% SELF.cv | $T8 %]
[% SET cv_id = SELF.cv _ '_id' %]
- [% L.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)")) %]
+
@@ -36,10 +42,21 @@
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') %]
+ [% L.select_tag('order.taxzone_id', SELF.all_taxzones, default=SELF.order.taxzone_id, title_key='description', style='width: 300px', class='recalc') %]
+
+
+[%- IF SELF.all_departments.size %]
+
+ [% 'Department' | $T8 %]
+
+ [% L.select_tag('order.department_id', SELF.all_departments, default=SELF.order.department_id, title_key='description', with_empty=1, style='width:300px') %]
+
+[%- END %]
[% 'Shipping Point' | $T8 %]
@@ -56,6 +73,11 @@
[% L.input_tag('order.transaction_description', SELF.order.transaction_description, style='width: 300px') %]
+
+ [% 'Project Number' | $T8 %]
+ [% P.project.picker('order.globalproject_id', SELF.order.globalproject_id, style='width: 300px') %]
+
+
@@ -91,34 +113,72 @@
[% 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 -%]
- [% 'Insert Date' | $T8 %]
- [% SELF.order.itime_as_date %]
+ [% 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 %]
- [% 'Project Number' | $T8 %]
- [%- L.select_tag('order.globalproject_id', SELF.all_projects, default=SELF.order.globalproject_id, title_key='projectnumber', with_empty = 1) %]
+ [% 'Insert Date' | $T8 %]
+ [% SELF.order.itime_as_date %]
@@ -129,6 +189,8 @@
[%- PROCESS order/tabs/_item_input.html %]
+ [% L.button_tag('kivi.Order.show_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
+
@@ -137,22 +199,34 @@
-
+
+ [%- IF MYCONFIG.show_form_details %]
+ [%- L.img_tag(src="image/collapse.svg", alt=LxERP.t8('Hide all details'), title=LxERP.t8('Hide all details'), id='expand_all', "data-expanded"="1") %]
+ [%- ELSE %]
+ [%- L.img_tag(src="image/expand.svg", alt=LxERP.t8('Show all details'), title=LxERP.t8('Show all details'), id='expand_all') %]
+ [%- END %]
+
+ [%- 'position' | $T8 %]
- [%- 'Partnumber' | $T8 %]
- [%- 'Description' | $T8 %]
- [%- 'Qty' | $T8 %]
+
+
+
+ [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
+
+ [%- END -%]
+
[%- 'Price Factor' | $T8 %]
[%- 'Unit' | $T8 %]
- [%- 'Price' | $T8 %]
- [%- 'Discount' | $T8 %]
+ [%- 'Price Source' | $T8 %]
+
+
[%- 'Extended' | $T8 %]
[%- FOREACH item = SELF.order.items_sorted %]
- [%- PROCESS order/tabs/_row.html ITEM=item %]
+ [%- 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 %]
@@ -205,21 +279,56 @@
title_key = 'description',
style = 'width: 250px') %]
+ [%- IF SELF.type == "sales_order" %]
+
+ [%- 'Periodic Invoices' | $T8 %]
+ [% L.button_tag('kivi.Order.show_periodic_invoices_config_dialog()', LxERP.t8('Configure')) %]
+ ([%- SELF.periodic_invoices_status -%] )
+ ?
+
+
+ [%- END %]
-
+ [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%]
+ [%- SET marge_class = (SELF.order.marge_total < 0) ? 'plus0' : '' -%]
+
- [%- IF NOT taxincluded %]
+ [% '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 %]
+
+
+
+
+
+ [% 'Tax Included' | $T8 %]
+ [% L.yes_no_tag('order.taxincluded', SELF.order.taxincluded, class='recalc') %]
+
+
+
+
[%- 'Subtotal' | $T8 %]
[%- L.div_tag(SELF.order.netamount_as_number, id='netamount_id') %]
- [%- END %]
[%- FOREACH tax = SELF.taxes %]
- [%- PROCESS order/tabs/_tax_row.html TAX=tax %]
+ [%- PROCESS order/tabs/_tax_row.html TAX=tax TAXINCLUDED=SELF.order.taxincluded %]
[%- END %]
[%- 'Total' | $T8 %]
@@ -239,96 +348,4 @@
-
[% L.sortable_element('#row_table_id') %]
-
-