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

(-)a/acqui/basket.pl (-5 / +6 lines)
Lines 369-378 my $total_est_gste; Link Here
369
        entrydate            => C4::Dates->new($results[0]->{'entrydate'},'iso')->output,
369
        entrydate            => C4::Dates->new($results[0]->{'entrydate'},'iso')->output,
370
        books_loop           => \@books_loop,
370
        books_loop           => \@books_loop,
371
        gist_rate            => sprintf( "%.2f", $gist * 100 ) . '%',
371
        gist_rate            => sprintf( "%.2f", $gist * 100 ) . '%',
372
        total_rrp_gste       => sprintf( "%.2f", $total_rrp_gste ),
373
        total_est_gste       => sprintf( "%.2f", $total_est_gste ),
374
        gist_est             => sprintf( "%.2f", $gist_est ),
375
        gist_rrp             => sprintf( "%.2f", $gist_rrp ),        
376
        total_rrp_gsti       => sprintf( "%.2f", $total_rrp_gsti ),
372
        total_rrp_gsti       => sprintf( "%.2f", $total_rrp_gsti ),
377
        total_est_gsti       => sprintf( "%.2f", $total_est_gsti ),
373
        total_est_gsti       => sprintf( "%.2f", $total_est_gsti ),
378
#        currency             => $bookseller->{'listprice'},
374
#        currency             => $bookseller->{'listprice'},
Lines 384-389 my $total_est_gste; Link Here
384
        unclosable           => @orders ? 0 : 1, 
380
        unclosable           => @orders ? 0 : 1, 
385
        has_budgets          => $has_budgets,
381
        has_budgets          => $has_budgets,
386
    );
382
    );
383
    $template->param(
384
        total_rrp_gste       => sprintf( "%.2f", $total_rrp_gste ),
385
        total_est_gste       => sprintf( "%.2f", $total_est_gste ),
386
        gist_est             => sprintf( "%.2f", $gist_est ),
387
        gist_rrp             => sprintf( "%.2f", $gist_rrp ),
388
    ) if $gist;
387
}
389
}
388
390
389
output_html_with_http_headers $query, $cookie, $template->output;
391
output_html_with_http_headers $query, $cookie, $template->output;
390
- 

Return to bug 8788