commit | 81d08615068564101b99a52b47ffb70633b6e552 | [log] [tgz] |
---|---|---|
author | thefalconx33 <thefalconx33@gmail.com> | Thu Dec 26 13:15:52 2019 +0530 |
committer | thefalconx33 <thefalconx33@gmail.com> | Thu Dec 26 14:42:11 2019 +0530 |
tree | 8cf08777ce45b3f049b04ca2f2d5b5c47459be3a | |
parent | a02bb5170b1f606df1806402c88396e507df7cf8 [diff] |
fix: undefined dr_or_cr_notes in case of party type Employee
diff --git a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py index d85344e..2c04a27 100644 --- a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +++ b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py
@@ -23,6 +23,8 @@ if self.party_type in ["Customer", "Supplier"]: dr_or_cr_notes = self.get_dr_or_cr_notes() + else: + dr_or_cr_notes = [] self.add_payment_entries(payment_entries + journal_entries + dr_or_cr_notes)