[% text('Report in') %]
[%
suffix = transdates.$dnum.replace('[./-]', '_') _ '_' _ lnum;
PROCESS select element_data = {
name = "business_unit_id_$suffix"
default_values = [${"business_unit_id_$suffix"}]
options = b_units
text_attr = 'text'
value_attr = 'id'
} %]
[% text('Currency') %]
[%
currencies2 = [];
FOREACH curr IN currencies;
currencies2.push({text = curr, value = curr });
END;
PROCESS select element_data = {
name = "curr_$suffix"
options = currencies2
default_values = [${"curr_$suffix"}]
}; %]
[% text('Partnumber') %]
[% text('Qty') %]
[% PROCESS input element_data = {
name = "qty_$suffix"
value = ${"qty_$suffix"}
class = 'qty'
size = 5 } %]
[% text('Extra Used') %]
[% PROCESS input element_data = {
name = "non_billable_$suffix"
value = ${"non_billable_$suffix"}
class = 'qty'
size = 5 } %]
[% text('Description') %]
[% ${"description_$suffix"} %]
|
[% END %]