Revision 5d140e07
Von Martin Helmling mh@waldpark.octosoft.eu vor mehr als 9 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
3474 | 3474 |
if ( $selected_tax ) { |
3475 | 3475 |
|
3476 | 3476 |
if ( $buysell eq 'sell' ) { |
3477 |
$self->{AR_amounts}{"tax_$i"} = $selected_tax->chart->accno unless $selected_tax->taxkey == 0;
|
|
3477 |
$self->{AR_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
|
|
3478 | 3478 |
} else { |
3479 |
$self->{AP_amounts}{"tax_$i"} = $selected_tax->chart->accno unless $selected_tax->taxkey == 0;
|
|
3479 |
$self->{AP_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
|
|
3480 | 3480 |
}; |
3481 | 3481 |
|
3482 | 3482 |
$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.