Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 95c1cef5

Von Kivitendo Admin vor mehr als 8 Jahren hinzugefügt

  • ID 95c1cef5c74c6f51445ac3974d1a6b2b88554192
  • Vorgänger 9bb952ca
  • Nachfolger 2134f89a

Bericht Debitorenbuchungen - Gutschriften < 1€ erkennen

Die Prüfung auf amount < 0 wurde nach dem format_amount aufgerufen,
dadurch wurden Beträge von z.B. -0,77 nicht als Gutschriften erkannt.
Die amount-Prüfung wird jetzt nach dem format-amount aufgerufen.

Unterschiede anzeigen:

bin/mozilla/ar.pl
1119 1119
    $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
1120 1120
    $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
1121 1121

  
1122
    map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
1123

  
1124 1122
    my $is_storno  = $ar->{storno} &&  $ar->{storno_id};
1125 1123
    my $has_storno = $ar->{storno} && !$ar->{storno_id};
1126 1124

  
......
1131 1129
      $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
1132 1130
                          $locale->text("AR Transaction (abbreviation)");
1133 1131

  
1132
    map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
1133

  
1134 1134
    $ar->{direct_debit} = $ar->{direct_debit} ? $::locale->text('yes') : $::locale->text('no');
1135 1135

  
1136 1136
    my $row = { };

Auch abrufbar als: Unified diff