for tax account, rate is no more mandatory
This commit is contained in:
parent
b12d5363bc
commit
681d21dd1f
@ -49,11 +49,6 @@ class DocType:
|
|||||||
msgprint("Message: Please enter Master Name once the account is created.")
|
msgprint("Message: Please enter Master Name once the account is created.")
|
||||||
|
|
||||||
|
|
||||||
# Rate is mandatory for tax account
|
|
||||||
def validate_rate_for_tax(self):
|
|
||||||
if self.doc.account_type == 'Tax' and not self.doc.tax_rate:
|
|
||||||
msgprint("Please Enter Rate", raise_exception=1)
|
|
||||||
|
|
||||||
# Fetch Parent Details and validation for account not to be created under ledger
|
# Fetch Parent Details and validation for account not to be created under ledger
|
||||||
def validate_parent(self):
|
def validate_parent(self):
|
||||||
if self.doc.parent_account:
|
if self.doc.parent_account:
|
||||||
@ -135,7 +130,6 @@ class DocType:
|
|||||||
|
|
||||||
def validate(self):
|
def validate(self):
|
||||||
self.validate_master_name()
|
self.validate_master_name()
|
||||||
self.validate_rate_for_tax()
|
|
||||||
self.validate_parent()
|
self.validate_parent()
|
||||||
self.validate_duplicate_account()
|
self.validate_duplicate_account()
|
||||||
self.validate_root_details()
|
self.validate_root_details()
|
||||||
|
|||||||
@ -214,6 +214,7 @@ erpnext.AccountsChart = Class.extend({
|
|||||||
// show
|
// show
|
||||||
d.onshow = function() {
|
d.onshow = function() {
|
||||||
$(fd.group_or_ledger.input).change();
|
$(fd.group_or_ledger.input).change();
|
||||||
|
$(fd.account_type.input).change();
|
||||||
}
|
}
|
||||||
d.show();
|
d.show();
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user