Error while selecting checkbox

Hi,
I am getting below error, while selecting a checkbox.

desk.min.js:3526 Uncaught RangeError: Maximum call stack size exceeded
at Class.evaluate_depends_on_value (desk.min.js:3526)
at Class.refresh_dependency (desk.min.js:3493)
at form.min.js:275
at Function. (desk.min.js:6464)
at Function.each (jquery.min.js:2)
at run (desk.min.js:6463)
at Object.trigger (desk.min.js:6471)
at Number. (desk.min.js:6443)
at Function.each (jquery.min.js:2)
at Object.set_value (desk.min.js:6436)

Any idea what is this error about?

Regards
Ruchin Sharma

Seems somewhere endless recursive call.

eg:

method A():
          call B()

method B():
         call A():

But, honestly speaking I didn’t call any of the method in any other method.

Strange…

Can you give us steps to reproduce this?

Found the issue, but how to overcome this issue?

and also, on the selection of Multilane.

Actually, I want that when I select Multilane option than Individual Accessory Orders should automatically get de-selected, and if Multilane is selected and Individual Accessory Orders and Replacement Orders are not selected then few tables will be displayed. I have mentioned that too in their depends on section:

frappe.ui.form.on("Sales Order", "multilane", function(frm) 
{
     if (frm.doc.multilane)
     {
         cur_frm.set_value("single_order",0);
        cur_frm.set_value("replacement_order",0);
        cur_frm.set_value("accessories_order",0);
     }
});

Any idea how can I achieve this?

Regards
Ruchin Sharma