brotherton-erpnext/erpnext/patches/v11_1/set_salary_details_submittable.py

10 lines
255 B
Python
Raw Normal View History

2019-04-16 11:22:55 +00:00
from __future__ import unicode_literals
import frappe
def execute():
frappe.db.sql("""
update `tabSalary Structure` ss, `tabSalary Detail` sd
set sd.docstatus=1
where ss.name=sd.parent and ss.docstatus=1 and sd.parenttype='Salary Structure'
""")