*** empty log message ***
This commit is contained in:
parent
695c2d6e28
commit
b4cdc528b4
4 changed files with 14 additions and 14 deletions
|
|
@ -1141,9 +1141,7 @@ amount_t commodity_t::value(const std::time_t moment)
|
||||||
std::time_t age = 0;
|
std::time_t age = 0;
|
||||||
amount_t price;
|
amount_t price;
|
||||||
|
|
||||||
if (! history)
|
if (history)
|
||||||
return price;
|
|
||||||
|
|
||||||
for (history_map::reverse_iterator i = history->prices.rbegin();
|
for (history_map::reverse_iterator i = history->prices.rbegin();
|
||||||
i != history->prices.rend();
|
i != history->prices.rend();
|
||||||
i++)
|
i++)
|
||||||
|
|
@ -1155,7 +1153,7 @@ amount_t commodity_t::value(const std::time_t moment)
|
||||||
|
|
||||||
if (updater)
|
if (updater)
|
||||||
(*updater)(*this, moment, age,
|
(*updater)(*this, moment, age,
|
||||||
(history->prices.size() > 0 ?
|
(history && history->prices.size() > 0 ?
|
||||||
(*history->prices.rbegin()).first : 0), price);
|
(*history->prices.rbegin()).first : 0), price);
|
||||||
|
|
||||||
return price;
|
return price;
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,8 @@ void quotes_by_script::operator()(commodity_t& commodity,
|
||||||
success = false;
|
success = false;
|
||||||
if (pclose(fp) != 0)
|
if (pclose(fp) != 0)
|
||||||
success = false;
|
success = false;
|
||||||
|
} else {
|
||||||
|
success = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (success && buf[0]) {
|
if (success && buf[0]) {
|
||||||
|
|
|
||||||
|
|
@ -18,4 +18,4 @@ else
|
||||||
limit=""
|
limit=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ledger -VQ $switch $limit -s -S "-AT" balance $accts
|
ledger -VQ $switch $limit -s -S "-UT" balance $accts
|
||||||
|
|
|
||||||
|
|
@ -18,4 +18,4 @@ else
|
||||||
limit=""
|
limit=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ledger -VQ $switch $limit -s -S "-AT" balance $accts
|
ledger -VQ $switch $limit -s -S "-UT" balance $accts
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue