Use the WRITTEN date format for idstrings
This commit is contained in:
parent
0fdb900c99
commit
23a7c22c70
1 changed files with 1 additions and 1 deletions
|
|
@ -368,7 +368,7 @@ value_t xact_t::magnitude() const
|
||||||
string xact_t::idstring() const
|
string xact_t::idstring() const
|
||||||
{
|
{
|
||||||
std::ostringstream buf;
|
std::ostringstream buf;
|
||||||
buf << *_date;
|
buf << format_date(*_date, FMT_WRITTEN);
|
||||||
buf << payee;
|
buf << payee;
|
||||||
magnitude().print(buf);
|
magnitude().print(buf);
|
||||||
return buf.str();
|
return buf.str();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue