Browse Source

MT 2426 : Default currency is chosen for price calculation when bookseller's listprice is NULL

3.2.x
Matthias Meusburger 15 years ago
committed by Henri-Damien LAURENT
parent
commit
d8a71ebd61
  1. 2
      acqui/neworderempty.pl

2
acqui/neworderempty.pl

@ -339,7 +339,7 @@ $template->param(
name => $bookseller->{'name'},
cur_active_sym => $cur->{'symbol'},
cur_active => $cur->{'currency'},
currency => $bookseller->{'listprice'}, # eg: 'EUR'
currency => $bookseller->{'listprice'} || $cur->{'currency'}, # eg: 'EUR'
loop_currencies => \@loop_currency,
orderexists => ( $new eq 'yes' ) ? 0 : 1,
title => $data->{'title'},

Loading…
Cancel
Save