Initial commit: fixtures, hooks, doctype events, API, and JS

This commit is contained in:
Westech Admin
2026-05-16 23:35:51 +00:00
commit 3a3c01194e
35 changed files with 16910 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
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'));
}
});