Merge pull request #24264 from AfshanKhan/fix-sal-struc-assign-payroll-acc
fix: setting correct account for sal struct assignment if not specified.
This commit is contained in:
commit
b901d4002a
@ -43,7 +43,7 @@ class SalaryStructureAssignment(Document):
|
|||||||
|
|
||||||
def set_payroll_payable_account(self):
|
def set_payroll_payable_account(self):
|
||||||
if not self.payroll_payable_account:
|
if not self.payroll_payable_account:
|
||||||
payroll_payable_account = frappe.db.get_value('Company', self.company, 'default_payable_account')
|
payroll_payable_account = frappe.db.get_value('Company', self.company, 'default_payroll_payable_account')
|
||||||
if not payroll_payable_account:
|
if not payroll_payable_account:
|
||||||
payroll_payable_account = frappe.db.get_value(
|
payroll_payable_account = frappe.db.get_value(
|
||||||
"Account", {
|
"Account", {
|
||||||
|
Loading…
Reference in New Issue
Block a user