X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/48e237ad16b404b419dbf990ba3ef02939639bc4..c9d5cc7f38af8db81fcfd11fac6cda62935d41c3:/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 da1cbafc4..374b9d822 100644
--- a/templates/webpages/order/tabs/basic_data.html
+++ b/templates/webpages/order/tabs/basic_data.html
@@ -160,23 +160,53 @@
-
-
- [%- IF NOT taxincluded %]
+
+
- | [%- 'Subtotal' | $T8 %] |
-
- [%- L.div_tag(SELF.order.netamount_as_number, id='netamount_id') %]
+ |
+
+
+ | [% 'Payment Terms' | $T8 %] |
+ [% L.select_tag('order.payment_id',
+ SELF.all_payment_terms,
+ default = SELF.order.payment_id,
+ with_empty = 1,
+ title_key = 'description',
+ style = 'width: 250px;') %] |
+
+
+ | [% 'Delivery Terms' | $T8 %] |
+ [% L.select_tag('order.delivery_term_id',
+ SELF.all_delivery_terms,
+ default = SELF.order.delivery_term_id,
+ with_empty = 1,
+ title_key = 'description',
+ style = 'width: 250px;') %] |
+
+
|
-
- [%- END %]
- [%- FOREACH tax = SELF.taxes %]
- [%- PROCESS order/tabs/_tax_row.html TAX=tax %]
- [%- END %]
-
- | [%- 'Total' | $T8 %] |
+
- [%- L.div_tag(SELF.order.amount_as_number, id='amount_id') %]
+
+ [%- IF NOT taxincluded %]
+
+ | [%- '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 %]
+ [%- END %]
+
+ | [%- 'Total' | $T8 %] |
+
+ [%- L.div_tag(SELF.order.amount_as_number, id='amount_id') %]
+ |
+
+ |
+
|
|