Files
westech-r2/westech_r2/public/js/load.js
T

8 lines
229 B
JavaScript

frappe.ui.form.on('Load', {
refresh: function(frm) {
frm.add_custom_button(__('View Pallets'), function() {
frappe.set_route('List', 'Pallet', {'load': frm.doc.name});
}, __('Actions'));
}
});