By Aylmer Ametewee on December 12, 2024
Beginner

Find below a sample custom script when a field depends on another field on doc form .

In below script field Machine on Doc form Machine depends on field Floor on doc form Floor

frappe.ui.form.on('Material Request', {

   floor: function(frm){

       var floor = frm.doc.floor;

       frm.set_query("machine", function(){

           return {

               filters: [

                   ["Machine","floor","=",floor]

                   ]

           }

       })

   }

})



More articles on Miscellaneous



More articles on Miscellaneous
Comments

No comments yet.

Add a comment
Ctrl+Enter to add comment