]> wagnertech.de Git - mfinanz.git/blobdiff - templates/webpages/am/list_price_factors.html
Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[mfinanz.git] / templates / webpages / am / list_price_factors.html
diff --git a/templates/webpages/am/list_price_factors.html b/templates/webpages/am/list_price_factors.html
deleted file mode 100644 (file)
index c220a8d..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-[%- USE T8 %][% USE L %][% USE LxERP %]
-[% USE HTML %]
-
-<script type="text/javascript" src="js/jquery-ui.js"></script>
-
-<body>
-
- [% IF MESSAGE %]<p>[% MESSAGE %]</p>[% END %]
-
- <div class="listtop">[% title %]</div>
-
- <p>
-  <table width="100%" id="price_factor_list">
-   <tr class="listheading">
-    <th align="center"><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></th>
-    <th width="80%">[% 'Description' | $T8 %]</th>
-    <th width="20%">[% 'Factor' | $T8 %]</th>
-   </tr>
-
-   [% FOREACH factor = PRICE_FACTORS %]
-   <tr class="listrow[% loop.count % 2 %]" id="price_factor_id_[% factor.id %]">
-    <td align="center" class="dragdrop"><img src="image/updown.png" alt="[ LxERP.t8('reorder item') %]"></td>
-    <td><a href="[% url_base %]&action=edit_price_factor&id=[% HTML.url(factor.id) %]">[% HTML.escape(factor.description) %]</a></td>
-    <td>[% HTML.escape(factor.factor) %]</td>
-   </tr>
-   [% END %]
-  </table>
- </p>
-
- <hr height="3">
-
- <p>
-  <form method="post" action="am.pl">
-   <input type="hidden" name="type" value="price_factor">
-   <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
-
-   <input type="submit" class="submit" name="action" value="[% 'Add' | $T8 %]">
-  </form>
- </p>
-
- [% L.sortable_element('#price_factor_list tbody', 'url' => 'controller.pl?action=PriceFactor/reorder', 'with' => 'price_factor_id', handle => '.dragdrop') %]
-
-</body>
-</html>