material request saving issue fixed
This commit is contained in:
parent
2b3e065efc
commit
0e1540b3b7
@ -36,19 +36,17 @@ frappe.ui.form.on(cur_frm.doctype, {
|
|||||||
},
|
},
|
||||||
validate: function(frm) {
|
validate: function(frm) {
|
||||||
// neither is absolutely mandatory
|
// neither is absolutely mandatory
|
||||||
frm.get_docfield("taxes", "rate").reqd = 0;
|
if(frm.get_docfield("taxes")) {
|
||||||
frm.get_docfield("taxes", "tax_amount").reqd = 0;
|
frm.get_docfield("taxes", "rate").reqd = 0;
|
||||||
|
frm.get_docfield("taxes", "tax_amount").reqd = 0;
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
taxes_on_form_rendered: function(frm) {
|
taxes_on_form_rendered: function(frm) {
|
||||||
erpnext.taxes.set_conditional_mandatory_rate_or_amount(frm);
|
erpnext.taxes.set_conditional_mandatory_rate_or_amount(frm);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cur_frm.cscript.account_head = function(doc, cdt, cdn) {
|
cur_frm.cscript.account_head = function(doc, cdt, cdn) {
|
||||||
var d = locals[cdt][cdn];
|
var d = locals[cdt][cdn];
|
||||||
if(!d.charge_type && d.account_head){
|
if(!d.charge_type && d.account_head){
|
||||||
|
Loading…
Reference in New Issue
Block a user