X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/54a84c2e49dbfdbf1e636ec3613fc5f96fc193bf..7647d46:/templates/webpages/ap/form_header.html
diff --git a/templates/webpages/ap/form_header.html b/templates/webpages/ap/form_header.html
index 124eb64fd..0d003c600 100644
--- a/templates/webpages/ap/form_header.html
+++ b/templates/webpages/ap/form_header.html
@@ -162,7 +162,9 @@
| [% 'Project Number' | $T8 %] |
- [% globalprojectnumber %] |
+
+ [% L.select_tag('globalproject_id', ALL_PROJECTS, with_empty = 1, default = globalproject_id, value_key = 'id', title_key = 'projectnumber') %]
+ |
@@ -185,7 +187,10 @@
[% FOREACH i IN [1..rowcount] %]
|
- [% temp = "selectAP_amount_"_ i %][% $temp %]
+ [% selected_accno_full = "selected_accno_full_"_ i %]
+ [% L.select_tag('AP_amount_'_ i, ALL_CHARTS_AP_amount, value_title_sub = \AP_amount_value_title_sub, onchange = 'setTaxkey(this, '_ i _')', default = $selected_accno_full) %]
+
+
|
@@ -195,10 +200,12 @@
[% temp = "tax_"_ i %][% $temp | html %]
|
- [% temp = "select_tax_"_ i %][% $temp %]
+ [% temp = 'selected_taxchart_'_ i %]
+ [% L.select_tag('taxchart_'_ i, ALL_TAXCHARTS, value_title_sub = \taxchart_value_title_sub, default = $temp) %]
|
- [% temp = "select_projectnumber_"_ i %][% $temp %]
+ [% temp = "project_id_"_ i %]
+ [% L.select_tag(temp, ALL_PROJECTS, with_empty = 1, default = loop.last ? globalproject_id : $temp, value_key = 'id', title_key = 'projectnumber') %]
|
[% END %]
@@ -209,7 +216,9 @@
- | [% APselected %] |
+
+ [% L.select_tag('APselected', ALL_CHARTS_AP, value_title_sub = \APselected_value_title_sub, default = APselected) %]
+ |
[% invtotal | html %] |
|
@@ -316,19 +325,17 @@
[% temp = "AP_paid_"_ i %]
[% IF( changeable ) %]
- [% temp = "select"_ temp %]
- [% $temp %]
+ [% L.select_tag(temp, ALL_CHARTS_AP_paid, value_title_sub = \AP_paid_value_title_sub, default = $temp) %]
[% ELSE %]
[% $temp | html %]
[% END %]
|
- [% temp = "paid_project_id_"_ i %]
+ [% temp = "paid_project_id_"_ i %]
[% IF( changeable ) %]
- [% temp = "select"_ temp %]
- [% $temp %]
+ [% L.select_tag(temp, ALL_PROJECTS, with_empty = 1, default = $temp, value_key = 'id', title_key = 'projectnumber') %]
[% ELSE %]
[% temp = "label"_ temp %]
|