View | Details | Raw Unified | Return to bug 13323
Collapse All | Expand All

(-)a/C4/Acquisition.pm (-1 / +1 lines)
Lines 2854-2860 sub populate_order_with_prices { Link Here
2854
        }
2854
        }
2855
2855
2856
        # tax value = quantity * ecost tax excluded * tax rate
2856
        # tax value = quantity * ecost tax excluded * tax rate
2857
        $order->{tax_value_on_ordering} = 
2857
        $order->{tax_value_on_ordering} =
2858
            $order->{quantity} * $order->{ecost_tax_excluded} * $order->{tax_rate_on_ordering};
2858
            $order->{quantity} * $order->{ecost_tax_excluded} * $order->{tax_rate_on_ordering};
2859
    }
2859
    }
2860
2860
(-)a/t/Prices.t (-2 lines)
Lines 96-102 for my $currency_format ( qw( US FR ) ) { Link Here
96
            }
96
            }
97
        );
97
        );
98
98
99
        # 
100
        $order_0_0 = C4::Acquisition::populate_order_with_prices(
99
        $order_0_0 = C4::Acquisition::populate_order_with_prices(
101
            {
100
            {
102
                order        => $order_0_0,
101
                order        => $order_0_0,
103
- 

Return to bug 13323