1 [%- USE T8 %][%- USE HTML %][%- USE LxERP -%][%- USE L -%]
3 <div class="message message_error">
4 <h4>[% LxERP.t8("Error!") %]</h4>
7 [% IF missing_qty_exceptions.size %]
8 <div class="wrapper">[% LxERP.t8("The following parts could not be allocated:") %]</div>
11 <table class="tbl-list">
14 <th>[% LxERP.t8("Part") %]</th>
15 <th class="right">[% LxERP.t8("Required qty") %]</th>
16 <th class="right">[% LxERP.t8("Missing qty") %]</th>
21 [% FOREACH ex = missing_qty_exceptions %]
23 <td>[% HTML.escape(ex.part_description) %]</td>
24 <td class="numeric">[% HTML.escape(LxERP.format_amount(ex.to_allocate_qty)) %]</td>
25 <td class="numeric">[% HTML.escape(LxERP.format_amount(ex.missing_qty)) %]</td>
33 [% IF other_exceptions.size %]
34 <div class="wrapper">[% LxERP.t8("Additional errors:") %]</div>
38 [% FOREACH ex = other_exceptions %]
39 <li>[% HTML.escape(ex.message) %]</li>