X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/a22121f52d8782d1397cedd6193ac7142b803f4d..8fed00544a31df0df4520248b3c5d7fde77ca16d:/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 f0928aa27..87815bdff 100644
--- a/templates/webpages/order/tabs/basic_data.html
+++ b/templates/webpages/order/tabs/basic_data.html
@@ -38,9 +38,18 @@
| [% '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 %] |
[% L.input_tag('order.shippingpoint', SELF.order.shippingpoint, style='width: 300px') %] |
@@ -56,6 +65,11 @@
[% L.input_tag('order.transaction_description', SELF.order.transaction_description, style='width: 300px') %] |
+
+ | [% 'Project Number' | $T8 %] |
+ [% L.project_picker('order.globalproject_id', SELF.order.globalproject_id, style='width: 300px') %] |
+
+
@@ -107,13 +121,13 @@
- | [% 'Insert Date' | $T8 %] |
- [% SELF.order.itime_as_date %] |
+ [% 'Reqdate' | $T8 %] |
+ [% L.date_tag('order.reqdate', SELF.order.reqdate) %] |
- | [% '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 %] |
@@ -124,6 +138,8 @@
[%- PROCESS order/tabs/_item_input.html %]
+ [% L.button_tag('show_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
+
|
@@ -140,6 +156,7 @@
| [%- 'Qty' | $T8 %] |
[%- 'Price Factor' | $T8 %] |
[%- 'Unit' | $T8 %] |
+ [%- 'Price Source' | $T8 %] |
[%- 'Price' | $T8 %] |
[%- 'Discount' | $T8 %] |
[%- 'Extended' | $T8 %] |
@@ -147,7 +164,7 @@
[%- FOREACH item = SELF.order.items_sorted %]
- [%- PROCESS order/tabs/_row.html ITEM=item %]
+ [%- PROCESS order/tabs/_row.html ITEM=item ID=item.id %]
[%- END %]
@@ -244,14 +261,41 @@