Update item_dashboard.js

This commit is contained in:
Shivam Mishra 2019-07-16 13:19:13 +05:30 committed by GitHub
parent 5738c93b8f
commit 7339c72208
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ erpnext.stock.ItemDashboard = Class.extend({
});
this.content.on('click', '.btn-add', function() {
handle_move_add($(this), "Move")
handle_move_add($(this), "Add")
});
function handle_move_add(element, action) {
@ -225,4 +225,4 @@ erpnext.stock.move_item = function(item, source, target, actual_qty, rate, callb
frappe.set_route('Form', doc.doctype, doc.name);
})
});
}
}