Revision 5d140e07
Von Martin Helmling mh@waldpark.octosoft.eu vor mehr als 9 Jahren hinzugefügt
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
Undefined chart bei taxkey 0 und 1
Nicht nur bei Taxkey 0 gibt es keine chart_id, auch bei taxkey 1.
Abfrage nun umgestellt.