[%- USE T8 %] [%- USE HTML %] [%- USE LxERP %] [%- USE L %] [%- USE P %] [%- INCLUDE 'generic/set_longdescription.html' %]
[% IF FORM.email_attachment_id || FORM.workflow_email_attachment_id%]
[% BLOCK panel_1; P.email_journal.attachment_preview( FORM.email_attachment_id || FORM.workflow_email_attachment_id, style="height:600px" ); END; INCLUDE 'common/toggle_panel.html' block_name='panel_1' button_closed = LxERP.t8('Show Attachment') button_open = LxERP.t8('Hide Attachment') ; %]
[% END %]
[% INCLUDE 'generic/toggle_wrapper.html' %]
[% SET cv_id = SELF.cv _ '_id' %] [%- PROCESS delivery_order/tabs/_business_info_row.html SELF=SELF %] [%- IF SELF.all_languages.size %] [%- END %] [%- IF SELF.all_departments.size %] [%- END %]
[% 'Customer & Order Information' | $T8 %]
[%- SELF.cv == "customer" ? LxERP.t8('Customer') : LxERP.t8('Vendor') -%] [% P.customer_vendor.picker("order.${SELF.cv}" _ '_id', SELF.order.$cv_id, type=SELF.cv, show_details="1") %]
[% 'Contact Person' | $T8 %] [% L.select_tag('order.cp_id', SELF.order.${SELF.cv}.contacts, default=SELF.order.cp_id, title_key='full_name_dep', value_key='cp_id', with_empty=1, class='wi-lightwide') %]
[% 'Shipping Address' | $T8 %] [% shiptos = [ { shipto_id => "", displayable_id => LxERP.t8("No/individual shipping address") } ] ; FOREACH s = SELF.order.${SELF.cv}.shipto ; shiptos.push(s) ; END ; L.select_tag('order.shipto_id', shiptos, default=SELF.order.shipto_id, title_key='displayable_id', value_key='shipto_id', with_empty=0, style='wi-lightwide') %] [% L.button_tag("kivi.DeliveryOrder.edit_custom_shipto()", LxERP.t8("Custom shipto"), class='button neutral below wi-lightwide') %]
[% 'Language' | $T8 %] [% L.select_tag('order.language_id', SELF.all_languages, default=SELF.order.language_id, title_key='description', with_empty=1, class='wi-lightwide') %]
[% 'Department' | $T8 %] [% L.select_tag('order.department_id', SELF.all_departments, default=SELF.order.department_id, title_key='description', with_empty=1, class='wi-lightwide') %]
[% 'Shipping Point' | $T8 %] [% L.input_tag('order.shippingpoint', SELF.order.shippingpoint, class='wi-lightwide') %]
[% 'Ship via' | $T8 %] [% L.input_tag('order.shipvia', SELF.order.shipvia, class='wi-lightwide') %]
[% 'Transaction description' | $T8 %] [% L.input_tag('order.transaction_description', SELF.order.transaction_description, 'data-validate'=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '', class='wi-lightwide') %]
[% 'Project Number' | $T8 %] [% P.project.picker('order.globalproject_id', SELF.order.globalproject_id, class='wi-lightwide') %]
[% 'Terms' | $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', class = 'wi-mediumsmall-lightwide') %]
[% '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', class = 'wi-mediumsmall-lightwide') %]
[% 'Notes' | $T8 %]
[% L.textarea_tag('order.notes', SELF.order.notes, rows=7, class="texteditor wi-wide") %]
[% 'Internal Notes' | $T8 %] [% L.textarea_tag('order.intnotes', SELF.order.intnotes, class="wi-wide") %]
[% IF SELF.cv == 'customer' %] [% END %] [%- IF SELF.type == 'purchase_delivery_order' %] [%- numbers = []; FOREACH p = SELF.order.preceding_purchase_order_confirmations(); numbers.push(HTML.escape(p.ordnumber)); END; %] [%- END %]
[% 'Handling, Numbers & Dates' | $T8 %]
[% 'Status' | $T8 %] [% SELF.order.presenter.status_line %]
[% 'Employee' | $T8 %] [% L.select_tag('order.employee_id', SELF.all_employees, default=(SELF.order.employee_id ? SELF.order.employee_id : SELF.current_employee_id), title_key='safe_name', class="wi-normal", ) %]
[% 'Salesman' | $T8 %] [% L.select_tag('order.salesman_id', SELF.all_salesmen, default=(SELF.order.salesman_id ? SELF.order.salesman_id : SELF.current_employee_id), title_key='safe_name', class="wi-normal", ) %]
[% 'Delivery Order Number' | $T8 %] [% L.input_tag('order.donumber', SELF.order.donumber, onchange='kivi.DeliveryOrder.set_number_in_title(this)', class='wi-normal numeric') %]
[% 'Order Number' | $T8 %] [% L.input_tag('order.ordnumber', SELF.order.ordnumber, class='wi-normal') %]
[% 'Order Confirmation Number' | $T8 %][% numbers.join(', ') %]
[% 'Vendor Confirmation Number' | $T8 %] [% L.input_tag('order.vendor_confirmation_number', SELF.order.vendor_confirmation_number, class='wi-normal numeric') %]
[% IF SELF.type_data.properties('is_customer') %][% 'Customer Order Number' | $T8 %][% ELSE %][% 'Vendor Order Number' | $T8 %][% END %] [% L.input_tag('order.cusordnumber', SELF.order.cusordnumber, class='wi-normal numeric') %]
[% 'Delivery Order Date' | $T8 %] [% L.date_tag('order.transdate_as_date', SELF.order.transdate_as_date, class='wi-date') %]
[% 'Reqdate' | $T8 %] [% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date, class="wi-date " _ reqdate_class) %]
[% 'Insert Date' | $T8 %] [% SELF.order.itime_as_date %]
[%- PROCESS delivery_order/tabs/_item_input.html SELF=SELF %] [%- IF SELF.positions_scrollbar_height -%] [%- SET scroll_style = 'style="overflow-y: auto; height:' _ SELF.positions_scrollbar_height _ 'vh;"' -%] [%- ELSE -%] [%- SET scroll_style = '' -%] [%- END -%]
[%- IF SELF.show_update_button -%] [%- END %] [%- IF SELF.search_cvpartnumber -%] [%- END -%] [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%] [%- END -%] [% IF in_out == 'in' %] [% END %] [% IF in_out == 'out' %] [% END %] [%- FOREACH item = SELF.order.items_sorted %] [%- PROCESS delivery_order/tabs/_row.html ITEM=item ID=(item.id||item.new_fake_id) -%] [%- END %]
[% 'Articles' | $T8 %]
[%- 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', class='row-icon', "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', class='row-icon') %] [%- END %] [%- 'position' | $T8 %] [%- LxERP.t8('reorder item') %] [%- LxERP.t8('delete item') %] [%- L.img_tag(src="image/rotate_cw.svg", alt=LxERP.t8('Update from master data'), title= LxERP.t8('Update from master data'), onclick="if (!confirm('" _ LxERP.t8("Are you sure to update all positions from master data?") _ "')) return false; kivi.DeliveryOrder.update_all_rows_from_master_data();", id='update_from_master', class='row-icon') %] [%- 'Partnumber' | $T8 %] [%- SELF.cv == "customer" ? LxERP.t8('Customer Part Number') : LxERP.t8('Model') %][%- 'Type' | $T8 %] [%- 'Description' | $T8 %][%- 'Delivered' | $T8 %] [%- 'Qty' | $T8 %] [%- 'Unit' | $T8 %] [%- 'Transfer To Stock' | $T8 %] [%- 'Release From Stock' | $T8 %]
[% L.hidden_tag('order.currency_id', SELF.order.currency_id) %] [% L.hidden_tag('order.taxzone_id', SELF.order.taxzone_id) %] [% L.hidden_tag('order.taxincluded', SELF.order.taxincluded) %]
[% L.sortable_element('#row_table_id') %]