Bug 21282: Sync ordered and spent values with acqui home
The order list for each fund calculates using the ecost tax excl., but it should be tax incl. At the moment this means that the sum on the start page table and the order list don't match up. Test plan: - Create and receive orders - Values on acqui home and ordered/spent should be the same Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
ea800323b7
commit
9d595e36a7
4 changed files with 10 additions and 8 deletions
|
@ -54,7 +54,7 @@ my $query = <<EOQ;
|
|||
SELECT
|
||||
aqorders.biblionumber, aqorders.basketno, aqorders.ordernumber,
|
||||
quantity-quantityreceived AS tleft,
|
||||
ecost, budgetdate, entrydate,
|
||||
ecost_tax_included, budgetdate, entrydate,
|
||||
aqbasket.booksellerid,
|
||||
aqbooksellers.name as vendorname,
|
||||
itype,
|
||||
|
@ -92,7 +92,7 @@ while ( my $data = $sth->fetchrow_hashref ) {
|
|||
$left = $data->{'quantity'};
|
||||
}
|
||||
if ( $left && $left > 0 ) {
|
||||
my $subtotal = $left * $data->{'ecost'};
|
||||
my $subtotal = $left * $data->{'ecost_tax_included'};
|
||||
$data->{subtotal} = sprintf( "%.2f", $subtotal );
|
||||
$data->{'left'} = $left;
|
||||
push @ordered, $data;
|
||||
|
|
|
@ -56,14 +56,14 @@ my $query = <<EOQ;
|
|||
SELECT
|
||||
aqorders.biblionumber, aqorders.basketno, aqorders.ordernumber,
|
||||
quantity-quantityreceived AS tleft,
|
||||
ecost, budgetdate, entrydate,
|
||||
budgetdate, entrydate,
|
||||
aqbasket.booksellerid,
|
||||
itype,
|
||||
title,
|
||||
aqorders.invoiceid,
|
||||
aqinvoices.invoicenumber,
|
||||
quantityreceived,
|
||||
unitprice,
|
||||
unitprice_tax_included,
|
||||
datereceived,
|
||||
aqbooksellers.name as vendorname
|
||||
FROM (aqorders, aqbasket)
|
||||
|
@ -95,9 +95,9 @@ my @spent;
|
|||
while ( my $data = $sth->fetchrow_hashref ) {
|
||||
my $recv = $data->{'quantityreceived'};
|
||||
if ( $recv > 0 ) {
|
||||
my $rowtotal = $recv * $data->{'unitprice'};
|
||||
my $rowtotal = $recv * $data->{'unitprice_tax_included'};
|
||||
$data->{'rowtotal'} = sprintf( "%.2f", $rowtotal );
|
||||
$data->{'unitprice'} = sprintf( "%.2f", $data->{'unitprice'} );
|
||||
$data->{'unitprice_tax_included'} = sprintf( "%.2f", $data->{'unitprice_tax_included'} );
|
||||
$subtotal += $rowtotal;
|
||||
push @spent, $data;
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
[% USE Asset %]
|
||||
[% USE KohaDates %]
|
||||
[% USE ItemTypes %]
|
||||
[% USE Price %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Koha › Acquisitions › Ordered</title>
|
||||
|
@ -61,7 +62,7 @@
|
|||
[% order.left | html %]
|
||||
</td>
|
||||
<td class="data cell">
|
||||
[% order.ecost | html %]
|
||||
[% order.ecost_tax_included | $Price %]
|
||||
</td>
|
||||
<td class="cell">
|
||||
<span title="[% order.entrydate | html %]">[% order.entrydate | $KohaDates %]</span>
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
[% USE Asset %]
|
||||
[% USE KohaDates %]
|
||||
[% USE ItemTypes %]
|
||||
[% USE Price %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Koha › Acquisitions › Spent</title>
|
||||
|
@ -62,7 +63,7 @@
|
|||
[% order.quantityreceived | html %]
|
||||
</td>
|
||||
<td class="cell">
|
||||
[% order.unitprice | html %]
|
||||
[% order.unitprice_tax_included | $Price %]
|
||||
</td>
|
||||
<td class="cell">
|
||||
<span title="[% order.entrydate | html %]">[% order.entrydate | $KohaDates %]</span>
|
||||
|
|
Loading…
Reference in a new issue