mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* the Euroland currency rates were inverted in the transfer
dialog. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8068 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
ee167fef7b
commit
1ac9e472d1
@ -1,3 +1,8 @@
|
|||||||
|
2003-03-12 Derek Atkins <derek@ihtfp.com>
|
||||||
|
|
||||||
|
* the Euroland currency rates were inverted in the transfer
|
||||||
|
dialog.
|
||||||
|
|
||||||
2003-03-11 Derek Atkins <derek@ihtfp.com>
|
2003-03-11 Derek Atkins <derek@ihtfp.com>
|
||||||
|
|
||||||
* src/scm/main-window.scm: turn off the report-total by default
|
* src/scm/main-window.scm: turn off the report-total by default
|
||||||
|
@ -227,7 +227,7 @@ gnc_xfer_dialog_set_price_auto (XferDialog *xferData,
|
|||||||
if (gnc_numeric_zero_p (from_rate) || gnc_numeric_zero_p (to_rate))
|
if (gnc_numeric_zero_p (from_rate) || gnc_numeric_zero_p (to_rate))
|
||||||
gnc_xfer_dialog_update_price (xferData);
|
gnc_xfer_dialog_update_price (xferData);
|
||||||
|
|
||||||
price = gnc_numeric_div (from_rate, to_rate, GNC_DENOM_AUTO,
|
price = gnc_numeric_div (to_rate, from_rate, GNC_DENOM_AUTO,
|
||||||
GNC_DENOM_SIGFIGS(6) | GNC_RND_ROUND);
|
GNC_DENOM_SIGFIGS(6) | GNC_RND_ROUND);
|
||||||
|
|
||||||
gnc_amount_edit_set_amount (GNC_AMOUNT_EDIT(xferData->price_edit), price);
|
gnc_amount_edit_set_amount (GNC_AMOUNT_EDIT(xferData->price_edit), price);
|
||||||
|
Loading…
Reference in New Issue
Block a user