Part Controller - ic.pl und IC.pm Funktionen entfernt
[kivitendo-erp.git] / templates / webpages / ic / price_row.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- IF PRICES.size %]
5   <tr>
6     <td>
7       <table width=100%>
8         <tr>
9           <th class="listheading">[% 'Price group' | $T8 %]</th>
10           <th class="listheading">[% 'Price' | $T8 %]</th>
11         </tr>
12 [%- FOREACH row = PRICES %]
13         <tr class="listrow[% loop.count % 2 %]">
14           <td width=50%><input type=hidden name="pricegroup_[% loop.count %]" size=30  value="[% HTML.escape(row.pricegroup) %]">[% HTML.escape(row.pricegroup) %]</td>
15           <td width=50%><input name="price_[% loop.count %]" size=11 value="[% LxERP.format_amount(row.price, 2) %]"></td>
16           <input type="hidden" name="pricegroup_id_[% loop.count %]" value="[% HTML.escape(row.pricegroup_id) %]">
17         </tr>
18 [%- END %]
19       </table>
20     </td>
21   </tr>
22 [%- END %]