Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 5d140e07

Von Martin Helmling mh@waldpark.octosoft.eu vor mehr als 9 Jahren hinzugefügt

  • ID 5d140e0792ba53700a266f21fcb14a51852bde95
  • Vorgänger 7f2d9c2e
  • Nachfolger 435dc5f7

Undefined chart bei taxkey 0 und 1

Nicht nur bei Taxkey 0 gibt es keine chart_id, auch bei taxkey 1.
Abfrage nun umgestellt.

Unterschiede anzeigen:

SL/Form.pm
if ( $selected_tax ) {
if ( $buysell eq 'sell' ) {
$self->{AR_amounts}{"tax_$i"} = $selected_tax->chart->accno unless $selected_tax->taxkey == 0;
$self->{AR_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
} else {
$self->{AP_amounts}{"tax_$i"} = $selected_tax->chart->accno unless $selected_tax->taxkey == 0;
$self->{AP_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
};
$self->{"taxkey_$i"} = $selected_tax->taxkey;

Auch abrufbar als: Unified diff