Validate on changing from Total to Valuation/Valuation&Total when add_deduct_tax is 'Deduct'
This commit is contained in:
parent
722b22a834
commit
08fb39f1ba
@ -18,3 +18,13 @@ frappe.ui.form.on("Purchase Taxes and Charges", "add_deduct_tax", function(doc,
|
|||||||
}
|
}
|
||||||
refresh_field('add_deduct_tax', d.name, 'taxes');
|
refresh_field('add_deduct_tax', d.name, 'taxes');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
frappe.ui.form.on("Purchase Taxes and Charges", "category", function(doc, cdt, cdn) {
|
||||||
|
var d = locals[cdt][cdn];
|
||||||
|
|
||||||
|
if (d.category != 'Total' && d.add_deduct_tax == 'Deduct') {
|
||||||
|
msgprint(__("Cannot deduct when category is for 'Valuation' or 'Vaulation and Total'"));
|
||||||
|
d.add_deduct_tax = '';
|
||||||
|
}
|
||||||
|
refresh_field('add_deduct_tax', d.name, 'taxes');
|
||||||
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user