Merge pull request #17255 from Anurag810/patch_for_salary_structure
fix: (Patch)make salary details submitable if salary structure is submitted
This commit is contained in:
@@ -590,4 +590,5 @@ erpnext.patches.v10_0.item_barcode_childtable_migrate # 16-02-2019
|
|||||||
erpnext.patches.v11_0.make_italian_localization_fields # 26-03-2019
|
erpnext.patches.v11_0.make_italian_localization_fields # 26-03-2019
|
||||||
erpnext.patches.v11_1.make_job_card_time_logs
|
erpnext.patches.v11_1.make_job_card_time_logs
|
||||||
erpnext.patches.v11_1.set_variant_based_on
|
erpnext.patches.v11_1.set_variant_based_on
|
||||||
erpnext.patches.v11_1.woocommerce_set_creation_user
|
erpnext.patches.v11_1.woocommerce_set_creation_user
|
||||||
|
erpnext.patches.v11_1.set_salary_details_submitable
|
||||||
11
erpnext/patches/v11_1/set_salary_details_submitable.py
Normal file
11
erpnext/patches/v11_1/set_salary_details_submitable.py
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
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'
|
||||||
|
""")
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user