feat(delivery): link to delivery notes list view from delivery trip

This commit is contained in:
David Arnold 2023-10-20 12:22:55 +02:00
parent 40cdde8820
commit 85488cd0dc
No known key found for this signature in database
GPG Key ID: AB15A6AF1101390D

View File

@ -64,6 +64,11 @@ frappe.ui.form.on('Delivery Trip', {
})
}, __("Get customers from"));
}
frm.add_custom_button(__("Delivery Notes"), function () {
frappe.set_route("List", "Delivery Note",
{'name': ["in", frm.doc.delivery_stops.map((stop) => {return stop.delivery_note;})]}
);
}, __("View"));
},
calculate_arrival_time: function (frm) {