X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/48e237ad16b404b419dbf990ba3ef02939639bc4..4b04c42212bb045a98535fcc16eef4ad81b2dbb6:/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..64d73eae2 100644
--- a/templates/webpages/order/tabs/basic_data.html
+++ b/templates/webpages/order/tabs/basic_data.html
@@ -160,23 +160,70 @@
-
-
- [%- IF NOT taxincluded %]
+
+
- | [%- 'Subtotal' | $T8 %] |
-
- [%- L.div_tag(SELF.order.netamount_as_number, id='netamount_id') %]
+ |
+
+
+ | [% 'Notes' | $T8 %] |
+ [% 'Internal Notes' | $T8 %] |
+
+
+ |
+ [% L.textarea_tag('order.notes', SELF.order.notes, wrap="soft", style="width: 350px; height: 150px;", class="texteditor") %]
+ |
+
+ [% L.textarea_tag('order.intnotes', SELF.order.intnotes, wrap="soft", style="width: 350px; height: 150px;") %]
+ |
+
+
|
-
- [%- END %]
- [%- FOREACH tax = SELF.taxes %]
- [%- PROCESS order/tabs/_tax_row.html TAX=tax %]
- [%- END %]
-
- | [%- 'Total' | $T8 %] |
+
+
+
+
+ | [% '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;') %] |
+
+
+ |
+
- [%- 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') %]
+ |
+
+ |
+
|
|