Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision ab924a30

Von Moritz Bunkus vor mehr als 4 Jahren hinzugefügt

  • ID ab924a3008d313efb2081ab9bc191da2bf15808b
  • Vorgänger 6755770b
  • Nachfolger 53af5bf8

Dialogbuchen: falsche Steuerschlüssel nach Entfernen von Zeilen

Steuersätze in den Werten von Selects werden inzwischen mit fünf
Nachkommastellen formatiert.

Unterschiede anzeigen:

bin/mozilla/gl.pl
$form->{debitlock} = 1;
}
if ($debitcredit && $credittax) {
$form->{"taxchart_$i"} = "$notax_id--0.00";
$form->{"taxchart_$i"} = "$notax_id--0.00000";
}
if (!$debitcredit && $debittax) {
$form->{"taxchart_$i"} = "$notax_id--0.00";
$form->{"taxchart_$i"} = "$notax_id--0.00000";
}
$amount =
($form->{"debit_$i"} == 0)
......
: $form->{"debit_$i"};
my $j = $#a;
if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
$form->{"taxchart_$i"} = "$notax_id--0.00";
$form->{"taxchart_$i"} = "$notax_id--0.00000";
$form->{"tax_$i"} = 0;
}
my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
......
$form->{debitlock} = 1;
}
if ($debitcredit && $credittax) {
$form->{"taxchart_$i"} = "$notax_id--0.00";
$form->{"taxchart_$i"} = "$notax_id--0.00000";
}
if (!$debitcredit && $debittax) {
$form->{"taxchart_$i"} = "$notax_id--0.00";
$form->{"taxchart_$i"} = "$notax_id--0.00000";
}
my $amount = ($form->{"debit_$i"} == 0)
? $form->{"credit_$i"}
: $form->{"debit_$i"};
my $j = $#a;
if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
$form->{"taxchart_$i"} = "$notax_id--0.00";
$form->{"taxchart_$i"} = "$notax_id--0.00000";
$form->{"tax_$i"} = 0;
}
my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});

Auch abrufbar als: Unified diff