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

(-)a/acqui/basketgroup.pl (-1 / +3 lines)
Lines 56-61 use Koha::EDI qw/create_edi_order get_edifact_ean/; Link Here
56
56
57
use Koha::Biblioitems;
57
use Koha::Biblioitems;
58
use Koha::Acquisition::Booksellers;
58
use Koha::Acquisition::Booksellers;
59
use Koha::Number::Price;
59
use Koha::ItemTypes;
60
use Koha::ItemTypes;
60
use Koha::Patrons;
61
use Koha::Patrons;
61
62
Lines 83-88 sub BasketTotal { Link Here
83
            $total = $total + ( $order->{ecost_tax_excluded} * $order->{quantity} );
84
            $total = $total + ( $order->{ecost_tax_excluded} * $order->{quantity} );
84
        }
85
        }
85
    }
86
    }
87
    my $formattotal = new Koha::Number::Price($total);
88
    $total = $formattotal->format();
86
    $total .= " " . ($bookseller->invoiceprice // 0);
89
    $total .= " " . ($bookseller->invoiceprice // 0);
87
    return $total;
90
    return $total;
88
}
91
}
89
- 

Return to bug 19479