Skip to content
Snippets Groups Projects
Commit 6217f35f authored by ynerant's avatar ynerant
Browse files

Notes are force-updated when a transaction is saved

parent e974eaa1
No related branches found
No related tags found
2 merge requests!104Beta,!98Morefront
Pipeline #8487 canceled with stages
......@@ -238,8 +238,10 @@ class Transaction(PolymorphicModel):
# Save notes
self.source.balance += diff_source
self.source._force_save = True
self.source.save()
self.destination.balance += diff_dest
self.destination._force_save = True
self.destination.save()
def delete(self, **kwargs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment