Bei Zahlungen per Knopfdruck auf Fehlbetrag setzen
authorSven Schöling <s.schoeling@linet-services.de>
Mon, 14 Sep 2015 11:58:25 +0000 (13:58 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Mon, 14 Sep 2015 11:58:25 +0000 (13:58 +0200)
locale/de/all
templates/webpages/is/_payments.html

index 276ca1a..512329a 100755 (executable)
@@ -2356,6 +2356,7 @@ $self->{texts} = {
   'Services'                    => 'Dienstleistungen',
   'Set (set to)'                => 'Setze',
   'Set eMail text'              => 'E-Mail Text eingeben',
+  'Set to paid missing'         => 'Fehlbetrag setzen',
   'Settings'                    => 'Einstellungen',
   'Setup Menu'                  => 'Menü-Variante',
   'Ship to'                     => 'Lieferadresse',
index e0da4e1..ffab321 100644 (file)
@@ -18,6 +18,7 @@
       <th>[%- 'Source' | $T8 %]</th>
       <th>[%- 'Memo' | $T8 %]</th>
       <th>[%- 'Amount' | $T8 %]</th>
+      <th></th>
 [% IF show_exchangerate %]
       <th>[%- 'Exch' | $T8 %]</th>
 [% END %]
        [% LxERP.format_amount($paid, 2, 1) %]
      [% END %]
      </td>
+     <td>
+       [% IF $changeable && loop.last && paid_missing > 0 %]
+         <input type='button' id='is_set_to_paid_missing' value='[% 'Set to paid missing' | $T8 %]'>
+       [% END %]
+     </td>
 
 [% IF show_exchangerate %]
      <td align="center">
 
     </td>
   </tr>
+    <script type='text/javascript'>
+     $('#is_set_to_paid_missing').click(function(){ $('input[name^="paid_"]:last').val('[% LxERP.format_amount(paid_missing, 2) %]') });
+    </script>