Hi,
I wanted to create item on button click using rest api from JS file.
Here is the code,
frappe.ui.form.on('Compound Item', {
create_items: function(frm) {
frappe.call({
url: "/api/resource/Item/",
type: "post",
data: JSON.stringify({data:{first_name:"Test Item"}}),
callback: function(r) {
//alert();
}
});
}
});
Its not working at all.
Please help me out.