diff --git a/erpnext/hr/doctype/loan_application/loan_application.js b/erpnext/hr/doctype/loan_application/loan_application.js index 2c0f2d19d11..febcbd88e76 100644 --- a/erpnext/hr/doctype/loan_application/loan_application.js +++ b/erpnext/hr/doctype/loan_application/loan_application.js @@ -11,11 +11,16 @@ frappe.ui.form.on('Loan Application', { repayment_method: function(frm) { frm.doc.repayment_amount = frm.doc.repayment_periods = "" frm.trigger("toggle_fields") + frm.trigger("toggle_required") }, toggle_fields: function(frm) { frm.toggle_enable("repayment_amount", frm.doc.repayment_method=="Repay Fixed Amount per Period") frm.toggle_enable("repayment_periods", frm.doc.repayment_method=="Repay Over Number of Periods") }, + toggle_required: function(frm){ + frm.toggle_reqd("repayment_amount", cint(frm.doc.repayment_method=='Repay Fixed Amount per Period')) + frm.toggle_reqd("repayment_periods", cint(frm.doc.repayment_method=='Repay Over Number of Periods')) + }, add_toolbar_buttons: function(frm) { if (frm.doc.status == "Approved") { frm.add_custom_button(__('Loan'), function() {