2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00

simplify the condition to check if value is larger then max amount

This commit is contained in:
Ankit Singhaniya 2021-11-01 23:08:08 +05:30 committed by GitHub
parent 4fcb54ff7c
commit 093a297856
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,7 +107,7 @@ module.exports = {
validate(value, doc) {
const amount = doc.getSum('for', 'amount');
if (!(amount >= value)) {
if (value > amount)) {
throw new frappe.errors.ValidationError(
frappe._(
`Payment amount cannot exceed ${frappe.format(