X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=templates%2Fwebpages%2Foe%2Fform_header.html;h=644879c1b7f151a15b24756056a0d033189ff8c7;hb=049e49fea3e4a3c7c78d7aebf055936b3cab40c5;hp=6a88c012f9295e42ed5021662f42ec0bfe2fa974;hpb=0194799c9cd192f01db7df4cf056e18871c979e0;p=kivitendo-erp.git diff --git a/templates/webpages/oe/form_header.html b/templates/webpages/oe/form_header.html index 6a88c012f..644879c1b 100644 --- a/templates/webpages/oe/form_header.html +++ b/templates/webpages/oe/form_header.html @@ -79,7 +79,8 @@ [% 'Shipping Address' | $T8 %] - [% L.select_tag('shipto_id', ALL_SHIPTO, default=shipto_id, value_key='shipto_id', title_key='displayable_id', with_empty=1, style='width: 250px', onChange="document.getElementById('update_button').click();") %] + [% shiptos = [ [ "", LxERP.t8("No/individual shipping address") ] ] ; + L.select_tag('shipto_id', shiptos.import(ALL_SHIPTO), default=shipto_id, value_key='shipto_id', title_key='displayable_id', style='width: 250px') %] [%- END %] @@ -107,7 +108,7 @@ [% 'Steuersatz' | $T8 %] - [% L.select_tag('taxzone_id', ALL_TAXZONES, default=taxzone_id, title_key='description', style='width: 250px') %] + [% L.select_tag('taxzone_id', ( id ? ALL_TAXZONES : ALL_ACTIVE_TAXZONES), default=taxzone_id, title_key='description', style='width: 250px') %] [%- IF ALL_DEPARTMENTS %] @@ -237,6 +238,20 @@ [%- L.select_tag('globalproject_id', ALL_PROJECTS, title_key='projectnumber', default=globalproject_id, with_empty='1', onChange="document.getElementById('update_button').click();") %] +[%- IF type == 'sales_quotation' %] + + [% 'Order probability' | $T8 %] + + [%- L.select_tag('order_probability', ORDER_PROBABILITIES, title='title', default=order_probability) %]% + + + + [% 'Expected billing date' | $T8 %] + + [%- L.date_tag('expected_billing_date', expected_billing_date 'BL') %] + + +[%- END %]