Skip to content

Commit

Permalink
fix: prevent lock wait on concurrent usage of reconciliation tool
Browse files Browse the repository at this point in the history
  • Loading branch information
ruthra-kumar committed Nov 17, 2023
1 parent ee29526 commit 56f0b00
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
class PaymentReconciliation(Document):
def __init__(self, *args, **kwargs):
super(PaymentReconciliation, self).__init__(*args, **kwargs)
self.flags.for_update = False
self.common_filter_conditions = []
self.accounting_dimension_filter_conditions = []
self.ple_posting_date_filter = []
Expand Down

0 comments on commit 56f0b00

Please sign in to comment.