mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-28 19:53:58 -06:00
Bug 787813 - Price change from editing a transaction not reflected...
in pricedb. Allow PRICE_SOURCE_SPLIT_REG to overwrite PRICE_SOURCE_XFER_DLG_VAL.
This commit is contained in:
parent
9546c0587f
commit
80d6749989
@ -2223,7 +2223,6 @@ gnc_split_register_auto_calc (SplitRegister* reg, Split* split)
|
||||
Account* account;
|
||||
int denom;
|
||||
int choice;
|
||||
PriceSource source = PRICE_SOURCE_USER_PRICE;
|
||||
|
||||
if (STOCK_REGISTER != reg->type &&
|
||||
CURRENCY_REGISTER != reg->type &&
|
||||
@ -2372,7 +2371,6 @@ gnc_split_register_auto_calc (SplitRegister* reg, Split* split)
|
||||
{
|
||||
recalculate_price (split, reg, value, amount);
|
||||
price_changed = TRUE;
|
||||
source = PRICE_SOURCE_SPLIT_REG;
|
||||
}
|
||||
if (recalc_value)
|
||||
recalculate_value (split, reg, price, amount, shares_changed);
|
||||
|
@ -3009,6 +3009,7 @@ record_price (Split *split,
|
||||
|
||||
if (price)
|
||||
{
|
||||
PriceSource oldsource = gnc_price_get_source (price);
|
||||
price_value = gnc_price_get_value (price);
|
||||
if (gnc_numeric_equal (swap ? gnc_numeric_invert (value) : value,
|
||||
price_value))
|
||||
@ -3016,7 +3017,9 @@ record_price (Split *split,
|
||||
gnc_price_unref (price);
|
||||
return;
|
||||
}
|
||||
if (gnc_price_get_source (price) < source)
|
||||
if (oldsource < source &&
|
||||
!(oldsource == PRICE_SOURCE_XFER_DLG_VAL &&
|
||||
source == PRICE_SOURCE_SPLIT_REG))
|
||||
{
|
||||
/* Existing price is preferred over this one. */
|
||||
gnc_price_unref (price);
|
||||
|
Loading…
Reference in New Issue
Block a user