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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
221 B
Python
Raw Normal View History

2019-04-16 11:22:55 +00:00
import frappe
2019-04-16 11:22:55 +00:00
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'
"""
)