fix: cannot make payment entry against shareholder (#21597)

This commit is contained in:
Saqib
2020-05-05 16:10:47 +05:30
committed by GitHub
parent ddcc4fa9b9
commit d46696fa03

View File

@@ -228,6 +228,8 @@ class PaymentEntry(AccountsController):
valid_reference_doctypes = ("Purchase Order", "Purchase Invoice", "Journal Entry")
elif self.party_type == "Employee":
valid_reference_doctypes = ("Expense Claim", "Journal Entry", "Employee Advance")
elif self.party_type == "Shareholder":
valid_reference_doctypes = ("Journal Entry")
for d in self.get("references"):
if not d.allocated_amount: