1 [%- USE T8 %][%- USE HTML %][%- USE LxERP -%][%- USE L -%]
3 <div class="message_error">
4 <p>[% LxERP.t8("Error!") %]</p>
6 <p class="message_error_label">[% LxERP.t8("The assembly could not be produced.") %]</p>
9 [% IF missing_qty_exceptions.size %]
10 <p>[% LxERP.t8("The following parts could not be allocated:") %]</p>
15 <tr class="listheading">
16 <th>[% LxERP.t8("Part") %]</th>
17 <th align="right">[% LxERP.t8("Required qty") %]</th>
18 <th align="right">[% LxERP.t8("Missing qty") %]</th>
23 [% FOREACH ex = missing_qty_exceptions %]
25 <td>[% HTML.escape(ex.part_description) %]</td>
26 <td align="right">[% HTML.escape(LxERP.format_amount(ex.to_allocate_qty)) %]</td>
27 <td align="right">[% HTML.escape(LxERP.format_amount(ex.missing_qty)) %]</td>
35 [% IF other_exceptions.size %]
36 <p>[% LxERP.t8("Additional errors:") %]</p>
40 [% FOREACH ex = other_exceptions %]
41 <li>[% HTML.escape(ex.message) %]</li>