]> wagnertech.de Git - mfinanz.git/blobdiff - bin/mozilla/ap.pl
neuen button und Funktion für "als bezahlt markieren" eingeführt.
[mfinanz.git] / bin / mozilla / ap.pl
index ddd1c22a974a2b386e87093a0be7038220fb1d95..c84b6146e5d3d641bee163014b9e1bbaa5e503bc 100644 (file)
@@ -778,6 +778,12 @@ sub form_footer {
     print qq| <input type="button" class="submit" onclick="set_history_window($form->{id});" name="history" id="history" value="| . $locale->text('history') . qq|">|;
   }
   # /button for saving history
+  # mark_as_paid button 
+  if($form->{id} ne "") {  
+    print qq|<input type="submit" class="submit" name="action" value="| 
+          . $locale->text('mark as paid') . qq|">|;
+  }
+  # /mark_as_paid button
   print "
 </form>
 
@@ -788,6 +794,12 @@ sub form_footer {
   $lxdebug->leave_sub();
 }
 
+sub mark_as_paid {
+  $lxdebug->enter_sub();
+  $form->mark_as_paid(\%myconfig,"ap");  
+  $lxdebug->leave_sub();
+}
+
 sub update {
   $lxdebug->enter_sub();