X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/b16556ccc8e2c1838d5c782b79fd5dcb246b184d..7735019:/templates/webpages/oe/form_header.html diff --git a/templates/webpages/oe/form_header.html b/templates/webpages/oe/form_header.html index eed285c72..81ed919af 100644 --- a/templates/webpages/oe/form_header.html +++ b/templates/webpages/oe/form_header.html @@ -19,6 +19,7 @@ [%- END %] + @@ -28,6 +29,20 @@
| [% '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') %] | |||||
|---|---|---|---|---|---|---|
| [% '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') %] | |||||
| [% 'Transaction description' | $T8 %] | -+ | |||||
| - [% L.date_tag('transdate', transdate) %] + [% L.date_tag('transdate', transdate, id='transdate') %] | ||||||
| - [% L.date_tag('reqdate', reqdate) %] + [% L.date_tag('reqdate', reqdate, id='reqdate') %] | ||||||
| [% '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') %] + | +|||||