Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 0e04ddd7

Von Rolf Fluehmann vor fast 8 Jahren hinzugefügt

  • ID 0e04ddd7e3ff23d051838617844698a39f680969
  • Vorgänger 2c5a1cef
  • Nachfolger 0070a250

Anpassung der CH-Erfolgsrechnung für nicht CH-Ausgabeformate

Unterschiede anzeigen:

SL/RP.pm
foreach my $account (@{$category{accounts}}) {
$account->{total} += get_total_ch($account->{id}, $fromdate, $todate);
$category{total} += $account->{total};
$account->{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $account->{total}), 2);
$account->{total} = $form->format_amount($myconfig, $form->round_amount($account->{total}, 2), 2);
}
$form->{total} += $category{total};
$category{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $category{total}), 2);
$category{total} = $form->format_amount($myconfig, $form->round_amount($category{total}, 2), 2);
push(@{$form->{categories}}, \%category);
}
$form->{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $form->{total}), 2);
$form->{total} = $form->format_amount($myconfig, $form->round_amount($form->{total}, 2), 2);
$main::lxdebug->leave_sub();
return {};

Auch abrufbar als: Unified diff