X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/fa5d2a24fc338e4c50951bbf3946b2b9a9f99ec2..0e83d54de99fbb7e0ab6471eb2c70db9a0b53466:/SL/DB/Helper/PriceTaxCalculator.pm diff --git a/SL/DB/Helper/PriceTaxCalculator.pm b/SL/DB/Helper/PriceTaxCalculator.pm index 2a81586fc..80c804728 100644 --- a/SL/DB/Helper/PriceTaxCalculator.pm +++ b/SL/DB/Helper/PriceTaxCalculator.pm @@ -83,7 +83,7 @@ sub _calculate_item { my ($self, $item, $idx, $data, %params) = @_; my $part = SL::DB::Part->load_cached($item->parts_id); - return unless $item->part; + return unless $part; my $part_unit = $data->{units_by_name}->{ $part->unit }; my $item_unit = $data->{units_by_name}->{ $item->unit }; @@ -96,7 +96,9 @@ sub _calculate_item { my $num_dec = max 2, _num_decimal_places($item->sellprice); - # don't include rounded discount into sellprice + $item->discount(0) if !$item->discount; + + # don't include rounded discount into sellprice for calculation # any time the sellprice is multiplied with qty discount has to be considered as part of the multiplication my $sellprice = $item->sellprice; @@ -143,8 +145,6 @@ sub _calculate_item { die "tax_amount != 0 but no chart_id for taxkey " . $taxkey->id . " tax " . $taxkey->tax->id; } - $self->netamount($self->netamount + $sellprice * (1 - $item->discount) * $item->qty / $item->price_factor); - my $chart = $part->get_chart(type => $data->{is_sales} ? 'income' : 'expense', taxzone => $self->taxzone_id); $data->{amounts}->{ $chart->id } ||= { taxkey => $taxkey->taxkey_id, tax_id => $taxkey->tax_id, amount => 0 }; $data->{amounts}->{ $chart->id }->{amount} += $linetotal; @@ -161,10 +161,12 @@ sub _calculate_item { $data->{last_incex_chart_id} = $chart->id if $data->{is_sales}; + my $item_sellprice = _round($sellprice * (1 - $item->discount), $num_dec); + push @{ $data->{items} }, { linetotal => $linetotal, linetotal_cost => $linetotal_cost, - sellprice => $sellprice, + sellprice => $item_sellprice, tax_amount => $tax_amount, taxkey_id => $taxkey->id, }; @@ -183,6 +185,8 @@ sub _calculate_amounts { $data->{taxes}->{$chart_id} = $rounded; } + $self->netamount(sum map { $_->{amount} } values %{ $data->{amounts} }); + my $amount = _round(($self->netamount + $tax_diff) * $data->{exchangerate}, 2); my $diff = $amount - ($self->netamount + $tax_diff) * $data->{exchangerate}; my $netamount = $amount;