Answers for "erpnext add new row in child table from python"

0

erpnext add new row in child table from python

def validate(self):
	deduction_amount = 500;
	row = self.append('deductions', {})
	row.salary_component = “Attendance Violation”
	row.amount = Math.round(deduction_amount)
Posted by: Guest on December-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language