Transaction matching
This commit is contained in:
parent
728af63cab
commit
4aa13a7651
|
|
@ -658,6 +658,8 @@ class _MatchWithdrawalsState extends State<_MatchWithdrawals> {
|
||||||
_selectedVendor = vendor;
|
_selectedVendor = vendor;
|
||||||
}
|
}
|
||||||
updateVendorList();
|
updateVendorList();
|
||||||
|
store.dispatch(SaveTransactionSuccess(transaction.rebuild(
|
||||||
|
(b) => b..pendingVendorId = _selectedVendor?.id)));
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
@ -739,6 +741,9 @@ class _MatchWithdrawalsState extends State<_MatchWithdrawals> {
|
||||||
_selectedCategory = category;
|
_selectedCategory = category;
|
||||||
}
|
}
|
||||||
updateCategoryList();
|
updateCategoryList();
|
||||||
|
store.dispatch(SaveTransactionSuccess(
|
||||||
|
transaction.rebuild((b) =>
|
||||||
|
b..pendingCategoryId = _selectedCategory?.id)));
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue