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

(-)a/acqui/basket.pl (-5 / +6 lines)
Lines 393-402 my $total_est_gste; Link Here
393
        books_loop           => \@books_loop,
393
        books_loop           => \@books_loop,
394
        cancelledorders_loop => \@cancelledorders,
394
        cancelledorders_loop => \@cancelledorders,
395
        gist_rate            => sprintf( "%.2f", $gist * 100 ) . '%',
395
        gist_rate            => sprintf( "%.2f", $gist * 100 ) . '%',
396
        total_rrp_gste       => sprintf( "%.2f", $total_rrp_gste ),
397
        total_est_gste       => sprintf( "%.2f", $total_est_gste ),
398
        gist_est             => sprintf( "%.2f", $gist_est ),
399
        gist_rrp             => sprintf( "%.2f", $gist_rrp ),        
400
        total_rrp_gsti       => sprintf( "%.2f", $total_rrp_gsti ),
396
        total_rrp_gsti       => sprintf( "%.2f", $total_rrp_gsti ),
401
        total_est_gsti       => sprintf( "%.2f", $total_est_gsti ),
397
        total_est_gsti       => sprintf( "%.2f", $total_est_gsti ),
402
#        currency             => $bookseller->{'listprice'},
398
#        currency             => $bookseller->{'listprice'},
Lines 408-413 my $total_est_gste; Link Here
408
        unclosable           => @orders ? 0 : 1, 
404
        unclosable           => @orders ? 0 : 1, 
409
        has_budgets          => $has_budgets,
405
        has_budgets          => $has_budgets,
410
    );
406
    );
407
    $template->param(
408
        total_rrp_gste       => sprintf( "%.2f", $total_rrp_gste ),
409
        total_est_gste       => sprintf( "%.2f", $total_est_gste ),
410
        gist_est             => sprintf( "%.2f", $gist_est ),
411
        gist_rrp             => sprintf( "%.2f", $gist_rrp ),
412
    ) if $gist;
411
}
413
}
412
414
413
output_html_with_http_headers $query, $cookie, $template->output;
415
output_html_with_http_headers $query, $cookie, $template->output;
414
- 

Return to bug 8788