Transaction View: LastMonth calculation fixed
This commit is contained in:
parent
073d1326ba
commit
1e59cf0ceb
@ -280,9 +280,16 @@ void TransactionView::chooseDate(int idx)
|
||||
TransactionFilterProxy::MAX_DATE);
|
||||
break;
|
||||
case LastMonth:
|
||||
transactionProxyModel->setDateRange(
|
||||
if (current.month() == 1){
|
||||
transactionProxyModel->setDateRange(
|
||||
QDateTime(QDate(current.year()-1, 12, 1)),
|
||||
QDateTime(QDate(current.year(), current.month(), 1)));
|
||||
}
|
||||
else {
|
||||
transactionProxyModel->setDateRange(
|
||||
QDateTime(QDate(current.year(), current.month()-1, 1)),
|
||||
QDateTime(QDate(current.year(), current.month(), 1)));
|
||||
}
|
||||
break;
|
||||
case ThisYear:
|
||||
transactionProxyModel->setDateRange(
|
||||
|
Loading…
Reference in New Issue
Block a user