X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Forder%2Ftabs%2Fbasic_data.html;h=b7086a8ae0c90172070ec31c6790a69f40f7c16e;hb=47b5e5c83df21577bbfd56d313acbbcf99b8588e;hp=c356589cd26b7c219f06b94a3feedeee88f520e4;hpb=c45a00e0f354b3ecf9a970c8503e779ba005dce9;p=kivitendo-erp.git diff --git a/templates/webpages/order/tabs/basic_data.html b/templates/webpages/order/tabs/basic_data.html index c356589cd..b7086a8ae 100644 --- a/templates/webpages/order/tabs/basic_data.html +++ b/templates/webpages/order/tabs/basic_data.html @@ -31,15 +31,24 @@ style='width: 300px') %] - + [% 'Shipping Address' | $T8 %] - [% L.select_tag('order.shipto_id', - SELF.order.${SELF.cv}.shipto, - default=SELF.order.shipto_id, - title_key='displayable_id', - value_key='shipto_id', - with_empty=1, - style='width: 300px') %] + + + [% 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='width: 300px') %] + + [% L.button_tag("kivi.Order.edit_custom_shipto()", LxERP.t8("Custom shipto")) %] + [%- PROCESS order/tabs/_business_info_row.html SELF=SELF %]