在 sales order 中,我有一个用于创建自定义文档类型的分配的按钮。使用 frappe.set_route 我可以获取父表值,但不确定如何获取子表值。请帮忙,谢谢!
frappe.ui.form.on('Sales Order', 'refresh', function(frm) {
frm.add_custom_button(
__('Make Allotment'),
function() {
frappe.route_options = {
customer: cur_frm.doc.customer,
sales_order: cur_frm.doc.name,
delivery_date: cur_frm.doc.delivery_date,
set_warehouse: cur_frm.doc.set_warehouse
};
frappe.set_route('Form', 'Allotment', 'New Allotment');
},
__('Make Allotment')
);
});