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

(-)a/C4/Acquisition.pm (-2 lines)
Lines 1639-1646 sub GetHistory { Link Here
1639
        $line->{count} = $cnt++;
1639
        $line->{count} = $cnt++;
1640
        $line->{toggle} = 1 if $cnt % 2;
1640
        $line->{toggle} = 1 if $cnt % 2;
1641
        push @order_loop, $line;
1641
        push @order_loop, $line;
1642
        $line->{creationdate} = format_date( $line->{creationdate} );
1643
        $line->{datereceived} = format_date( $line->{datereceived} );
1644
        $total_qty         += $line->{'quantity'};
1642
        $total_qty         += $line->{'quantity'};
1645
        $total_qtyreceived += $line->{'quantityreceived'};
1643
        $total_qtyreceived += $line->{'quantityreceived'};
1646
        $total_price       += $line->{'quantity'} * $line->{'ecost'};
1644
        $total_price       += $line->{'quantity'} * $line->{'ecost'};
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt (-3 / +3 lines)
Lines 1-3 Link Here
1
[% USE KohaDates %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Acquisitions &rsaquo; [% IF ( suggestions_loop ) %]Orders search &rsaquo; Search Results[% ELSE %]Order search[% END %]</title>
3
<title>Koha &rsaquo; Acquisitions &rsaquo; [% IF ( suggestions_loop ) %]Orders search &rsaquo; Search Results[% ELSE %]Order search[% END %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
Lines 86-93 Link Here
86
					<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% suggestions_loo.biblionumber %]">[% suggestions_loo.title |html %]</a>
87
					<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% suggestions_loo.biblionumber %]">[% suggestions_loo.title |html %]</a>
87
                        <br />[% suggestions_loo.author %] <br /> [% suggestions_loo.isbn %]</td>
88
                        <br />[% suggestions_loo.author %] <br /> [% suggestions_loo.isbn %]</td>
88
					<td><a href="/cgi-bin/koha/acqui/supplier.pl?supplierid=[% suggestions_loo.id %]">[% suggestions_loo.name %]</a></td>
89
					<td><a href="/cgi-bin/koha/acqui/supplier.pl?supplierid=[% suggestions_loo.id %]">[% suggestions_loo.name %]</a></td>
89
					<td>[% suggestions_loo.creationdate %]</td>
90
					<td>[% suggestions_loo.creationdate | $KohaDates %]</td>
90
					<td>[% suggestions_loo.datereceived %]</td>
91
					<td>[% suggestions_loo.datereceived | $KohaDates %]</td>
91
					<td>[% suggestions_loo.quantity %]</td>
92
					<td>[% suggestions_loo.quantity %]</td>
92
					<td>[% suggestions_loo.ecost %]</td>
93
					<td>[% suggestions_loo.ecost %]</td>
93
				</tr>
94
				</tr>
94
- 

Return to bug 7402