]> wagnertech.de Git - mfinanz.git/commitdiff
Merge branch 'bank-transaction-improvements'
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 16 Aug 2016 09:39:41 +0000 (11:39 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 16 Aug 2016 09:39:41 +0000 (11:39 +0200)
templates/webpages/drafts/load.html [deleted file]
templates/webpages/ic/choice.html [deleted file]

diff --git a/templates/webpages/drafts/load.html b/templates/webpages/drafts/load.html
deleted file mode 100644 (file)
index 60337a5..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-[%- USE T8 %]
-[%- USE HTML %]
-<h1>[% 'Load draft' | $T8 %]</h1>
-
- <form action="[% HTML.escape(script) %]" method="post">
-
-  <input type="hidden" name="SAVED_FORM" value="[% HTML.escape(SAVED_FORM) %]">
-
-  <table width="100%">
-   <tr>
-    <td>
-     [% 'The following drafts have been saved and can be loaded.' | $T8 %]
-    </td>
-   </tr>
-
-   <tr>
-    <td>
-     <table>
-      <tr>
-       <th class="listheading">&nbsp;</th>
-       <th class="listheading">[% 'Date' | $T8 %]</th>
-       <th class="listheading">[% 'Description' | $T8 %]</th>
-       <th class="listheading">[% 'Employee' | $T8 %]</th>
-      </tr>
-
-      [% FOREACH row = DRAFTS %]
-       <tr class="listrow[% loop.count % 2 %]">
-        <td><input type="checkbox" name="checked_[% row.id %]" value="1"></td>
-        <td>[% HTML.escape(row.itime) %]</td>
-        <td><a href="[% HTML.url(script) %]?action=load_draft&id=[% HTML.url(row.id) %]">[% HTML.escape(row.description) %]</a></td>
-        <td>[% HTML.escape(row.employee_name) %]</td>
-       </tr>
-      [% END %]
-     </table>
-    </td>
-   </tr>
-
-   <tr>
-    <td>
-     <input type="hidden" name="action" value="draft_action_dispatcher">
-     <input type="submit" class="submit" name="draft_action" value="[% 'Skip' | $T8 %]">
-     <input type="submit" class="submit" name="draft_action" value="[% 'Delete drafts' | $T8 %]">
-    </td>
-   </tr>
-  </table>
-
- </form>
diff --git a/templates/webpages/ic/choice.html b/templates/webpages/ic/choice.html
deleted file mode 100644 (file)
index 938c001..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-[%- USE T8 %]
-[%- USE HTML %]
-[%- USE LxERP %]
-
- <form method="post" action="ic.pl">
-
-  [%- FOREACH row = HIDDENS %]
-  <input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" >
-  [%- END %]
-
-  <p>
-   <table>
-    <tr class="listheading">
-     <th class="listheading" nowrap>[% 'Part Number' | $T8 %]</th>
-     <th class="listheading" nowrap>[% 'Part Description' | $T8 %]</th>
-    </tr>
-    <tr valign="top">
-     <td><input type="text" name="partnumber" size="20"></td>
-     <td><input type="text" name="description" size="30"></td>
-    </tr>
-   </table>
-  </p>
-
-  [%- FOREACH row = PARTS %]
-  <input type="hidden" name="totop100_partnumber_[% loop.count %]" value="[% row.totop100_partnumber %]">
-  <input type="hidden" name="totop100_description_[% loop.count %]" value="[% row.totop100_description %]">
-  <input type="hidden" name="totop100_unit_[% loop.count %]" value="[% row.totop100_unit %]">
-  <input type="hidden" name="totop100_sellprice_[% loop.count %]" value="[% row.totop100_sellprice %]">
-  <input type="hidden" name="totop100_soldtotal_[% loop.count %]" value="[% row.totop100_soldtotal %]">
-  [%- END %]
-
-  <p>
-   <input class="submit" type="submit" name="action" value="[% 'list' | $T8 %]">
-  </p>
- </form>
-