Vorbelegte E-Mail-Texte um Vorbelegung periodic invoices ergänzt
[kivitendo-erp.git] / templates / webpages / is / _payments.html
index e0da4e1..ce4cb8a 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>
     <script type='text/javascript'>
      $('input[name="paid_[% i %]"]').blur(function(){ check_right_number_format(this) });
-     $('#datepaid_[% i %]').blur(function(){ check_right_date_format(this) });
+     $('#datepaid_[% i %]').change(function(){ check_right_date_format(this) });
     </script>
      </td>
     </tr>
 
     </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>