@@ -11,7 +14,7 @@
| [% 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') %] |
@@ -41,6 +44,15 @@
| [% 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') %] |
@@ -58,7 +70,7 @@
| [% 'Project Number' | $T8 %] |
- [% L.project_picker('order.globalproject_id', SELF.order.globalproject_id, style='width: 300px') %] |
+ [% P.project.picker('order.globalproject_id', SELF.order.globalproject_id, style='width: 300px') %] |
@@ -134,6 +146,8 @@
[%- PROCESS order/tabs/_item_input.html %]
+ [% L.button_tag('kivi.Order.show_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
+
@@ -142,23 +156,31 @@
- |
+
+ [%- 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 %] |
![[%- LxERP.t8('reorder item') %]](image/updown.png) |
![[%- LxERP.t8('delete item') %]](image/close.png) |
- [%- 'Partnumber' | $T8 %] |
- [%- 'Description' | $T8 %] |
- [%- 'Qty' | $T8 %] |
+
+
+
+
[%- 'Price Factor' | $T8 %] |
[%- 'Unit' | $T8 %] |
[%- 'Price Source' | $T8 %] |
- [%- 'Price' | $T8 %] |
- [%- 'Discount' | $T8 %] |
+
+
[%- 'Extended' | $T8 %] |
[%- FOREACH item = SELF.order.items_sorted %]
- [%- PROCESS order/tabs/_row.html ITEM=item ID=item.id %]
+ [%- PROCESS order/tabs/_row.html ITEM=item ID=item.id TYPE=SELF.type ALL_PRICE_FACTORS=SELF.all_price_factors %]
[%- END %]
@@ -211,6 +233,15 @@
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 %]