[% USE HTML %]
[% USE LxERP %]
[% USE P %]
[% item.fb_number _ ": " _ item.description_as_restricted_html %]
|
[% HTML.escape(item.complexity.description) %] |
[% HTML.escape(item.risk.description) %] |
[% IF !item.children.size %]
[% P.format_man_days(item.time_estimation, skip_zero=1) %] |
[% UNLESS SELF.requirement_spec.is_template %]
[% LxERP.format_amount(item.time_estimation * SELF.requirement_spec.hourly_rate * section.sellprice_factor, 2) %] EUR |
[% END %]
[% ELSE %]
|
|
[% END %]
[% IF item.children.size %]
[% FOREACH child = item.children_sorted %]
[% INCLUDE 'requirement_spec/_show_time_and_cost_estimate_item.html'
section = section
item = child
level = level + 1 %]
[% END %]
[% LxERP.t8("Sum for #1", item.fb_number) %]: |
[% P.format_man_days(item.time_estimation, skip_zero=1) %] |
[% UNLESS SELF.requirement_spec.is_template %]
[% LxERP.format_amount(item.time_estimation * SELF.requirement_spec.hourly_rate * section.sellprice_factor, 2) %] EUR |
[% END %]
[% END %]