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

(-)a/C4/Acquisition.pm (-1 / +1 lines)
Lines 2855-2861 sub populate_order_with_prices { Link Here
2855
        }
2855
        }
2856
2856
2857
        # tax value = quantity * ecost tax excluded * tax rate
2857
        # tax value = quantity * ecost tax excluded * tax rate
2858
        $order->{tax_value_on_ordering} = 
2858
        $order->{tax_value_on_ordering} =
2859
            $order->{quantity} * $order->{ecost_tax_excluded} * $order->{tax_rate_on_ordering};
2859
            $order->{quantity} * $order->{ecost_tax_excluded} * $order->{tax_rate_on_ordering};
2860
    }
2860
    }
2861
2861
(-)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