Bug 798946 - start/end of current/last quarter have off-by-one error

This commit is contained in:
John Ralls 2025-01-20 11:38:22 -08:00
parent 7a17d329ec
commit a475172d8c

View File

@ -527,7 +527,7 @@ gnc_relative_date_to_time64(RelativeDatePeriod period)
{
auto delta = (now.tm_mon >= acct_per.tm_mon ?
( now.tm_mon - acct_per.tm_mon) % 3 :
3 - ((acct_per.tm_mon - now.tm_mon) % 3));
(3 - acct_per.tm_mon - now.tm_mon) % 3);
now.tm_mon = now.tm_mon - delta;
}
[[fallthrough]];