Fix bug: Check index in ctrl+t, ctrl+r and suppr callback to avoid doing something on non existant operation
This commit is contained in:
parent
2865102a55
commit
196a0cc5ab
|
@ -1,3 +1,9 @@
|
|||
v0.9 (27/07/2019)
|
||||
** User **
|
||||
** Dev **
|
||||
** Bugs **
|
||||
Check index in ctrl+t, ctrl+r and suppr callback to avoid doing something on non existant operation
|
||||
|
||||
v0.8 (29/01/2019)
|
||||
** User **
|
||||
Add multi month operation support : Normal operation with description "... (XX/YY)" will be forwarded to next month
|
||||
|
|
|
@ -1670,7 +1670,7 @@ void GridAccount::OnCtrlT(void)
|
|||
{
|
||||
Operation op, op2;
|
||||
QModelIndexList selected = selectedIndexes();
|
||||
int account, idx;
|
||||
int account, idx, row;
|
||||
bool groupOperations;
|
||||
User* user = _kiss->GetUser();
|
||||
std::vector<Operation>::iterator it;
|
||||
|
@ -1678,7 +1678,12 @@ void GridAccount::OnCtrlT(void)
|
|||
if (selected.size() > 1 || !selected.size())
|
||||
return;
|
||||
|
||||
op = _displayedOperations[selected[0].row()] ;
|
||||
row = selected[0].row();
|
||||
|
||||
if (row == _fixCosts || row == (int)_displayedOperations.size()-1)
|
||||
return;
|
||||
|
||||
op = _displayedOperations[row] ;
|
||||
|
||||
if (op.parent || op.meta || op.transfert)
|
||||
return;
|
||||
|
@ -1724,6 +1729,9 @@ void GridAccount::OnCtrlR(void)
|
|||
{
|
||||
row = selected[i].row();
|
||||
|
||||
if (row == _fixCosts || row == (int)_displayedOperations.size()-1)
|
||||
continue;
|
||||
|
||||
it = std::find(rows.begin(), rows.end(), row);
|
||||
|
||||
if (it != rows.end())
|
||||
|
@ -1746,6 +1754,9 @@ void GridAccount::OnSuppr(void)
|
|||
{
|
||||
row = selected[i].row();
|
||||
|
||||
if (row == _fixCosts || row == (int)_displayedOperations.size()-1)
|
||||
continue;
|
||||
|
||||
it = std::find(rows.begin(), rows.end(), row);
|
||||
|
||||
if (it != rows.end())
|
||||
|
|
Loading…
Reference in New Issue
Block a user