feat(delivery): link to delivery notes list view from delivery trip (backport #37604) (#37696)

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

(cherry picked from commit 85488cd0dcac2efe02478ced44349a0cadb3b064)

Co-authored-by: David Arnold <dgx.arnold@gmail.com>
This commit is contained in:
mergify[bot] 2023-10-26 13:12:55 +05:30 committed by GitHub
parent 40443258cf
commit 08ea62f4e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,6 +64,11 @@ frappe.ui.form.on('Delivery Trip', {
})
}, __("Get stops 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) {