You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Override validation error message in Payment Entry to show what document (PE), reference name and bill_no if it exists in validate_allocated_amount and validate_allocated_amount_with_latest_data
frappe.throw(
f"{self.party_name} Row {d.idx} / {d.reference_name}: Allocated Amount of {d.allocated_amount} cannot be greater than outstanding amount of {d.outstanding_amount}."
)
The text was updated successfully, but these errors were encountered:
@agritheory
can we wright this msg as below, I think this looks better
f"Row {d.idx} {self.party_name} / {d.reference_name}: Allocated Amount of {d.allocated_amount} cannot be greater than outstanding amount of {d.outstanding_amount}."
Override validation error message in Payment Entry to show what document (PE), reference name and
bill_no
if it exists invalidate_allocated_amount
andvalidate_allocated_amount_with_latest_data
The text was updated successfully, but these errors were encountered: