bessere visuelle Kontrolle über Bankauszug verbuchen
[kivitendo-erp.git] / templates / webpages / bank_transactions / add_list.html
index 08eaf5b..71ffc3e 100644 (file)
@@ -8,6 +8,7 @@
     <th>[%- LxERP.t8("Invoice number") %]</th>
     <th>[%- LxERP.t8("Amount") %]</th>
     <th>[%- LxERP.t8("Open amount") %]</th>
+    <th>[%- LxERP.t8("Amount less skonto") %]</th>
     <th>[%- LxERP.t8("Transdate") %]</th>
     <th>[%- LxERP.t8("Customer/Vendor number") %]</th>
     <th>[%- LxERP.t8("Customer/Vendor name") %]</th>
@@ -18,7 +19,8 @@
     <td>[% L.checkbox_tag('invoice_id[]', value=invoice.id) %]</td>
     <td>[%- invoice.invnumber %]</td>
     <td align="right">[%- LxERP.format_amount(invoice.amount, 2) %]</td>
-    <td align="right">[%- LxERP.format_amount(invoice.amount - invoice.paid, 2) %]</td>
+    <td align="right">[%- LxERP.format_amount(invoice.amount_open, 2) %]</td>
+    <td align="right">[%- LxERP.format_amount(invoice.amount_less_skonto, 2) %]</td>
     <td align="right">[%- invoice.transdate_as_date %]</td>
     <td>[%- invoice.vendor.vendornumber %][%- invoice.customer.customernumber %]</td>
     <td>[%- invoice.vendor.name %][%- invoice.customer.name %]</td>