fix(payment entry): trigger currency on account set

(cherry picked from commit 096e74b1ee)
This commit is contained in:
ravibharathi656
2025-09-25 23:21:34 +05:30
committed by Mergify
parent 5abb2d510d
commit 84a2596ce5

View File

@@ -601,6 +601,7 @@ frappe.ui.form.on("Payment Entry", {
if (frm.doc.payment_type == "Pay") {
frm.events.paid_amount(frm);
}
frm.events.paid_from_account_currency(frm);
}
);
},
@@ -624,6 +625,7 @@ frappe.ui.form.on("Payment Entry", {
frm.events.received_amount(frm);
}
}
frm.events.paid_to_account_currency(frm);
}
);
},