Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / templates / webpages / ic / price_row.html
diff --git a/templates/webpages/ic/price_row.html b/templates/webpages/ic/price_row.html
deleted file mode 100644 (file)
index b89b102..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-[%- USE T8 %]
-[%- USE HTML %]
-[%- USE LxERP %]
-[%- IF PRICES.size %]
-  <tr>
-    <td>
-      <table width=100%>
-        <tr>
-          <th class="listheading">[% 'Preisklasse' | $T8 %]</th>
-          <th class="listheading">[% 'Preis' | $T8 %]</th>
-        </tr>
-[%- FOREACH row = PRICES %]
-        <tr class="listrow[% loop.count % 2 %]">
-          <td width=50%><input type=hidden name="pricegroup_[% loop.count %]" size=30  value="[% HTML.escape(row.pricegroup) %]">[% HTML.escape(row.pricegroup) %]</td>
-          <td width=50%><input name="price_[% loop.count %]" size=11 value="[% LxERP.format_amount(row.price, 2) %]"></td>
-          <input type="hidden" name="pricegroup_id_[% loop.count %]" value="[% HTML.escape(row.pricegroup_id) %]">
-        </tr>
-[%- END %]
-      </table>
-    </td>
-  </tr>
-[%- END %]