I am trying to add button and by clicking on button i want to it should move in Sales order
frappe.ui.form.on("Sales Order",{
refresh: function(frm , cdt, cdn) {
cur_frm.add_custom_button(__('Documents Review'), cur_frm.cscript.make_documents_review, __("Make"));
cur_frm.page.set_inner_btn_group_as_primary(__("Make"));
},make_documents_review: function() {
console.log("hello");
}
});
when i am clicking on button i am getting some error
TypeError: t is not a function