dns based multitenant erp-next integration support wilcard subdomain how to do that most i have already used dns_multitenant_on all but cannought create
frappe.ui.form.on(‘Sales Invoice’, {
global_discount_percentage(frm) {
const discount = frm.doc.global_discount_percentage || 0;
frm.doc.items.forEach(item => {
item.discount_percentage_on_rate_with_margin = discount;
});
frm.refresh_field('items');
},
validate(frm) {
const discount = frm.doc.global_discount_percentage || 0;
frm.doc.items.forEach(item => {
item.discount_percentage_on_rate_with_margin = discount;
});
}
});