Removed employee table from Salary Structure and added employee name in all forms

This commit is contained in:
Nabin Hait
2018-04-14 17:04:56 +05:30
parent fcdca7f2a0
commit 551844881b
29 changed files with 1355 additions and 556 deletions

View File

@@ -0,0 +1,24 @@
# Copyright (c) 2017, Frappe and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
def execute():
frappe.reload_doc("hr", "doctype", "salary_structure_assignment")
for d in frappe.db.sql("""
select * from `tabSalary Structure Employee` sse, `tabSalary Structure` ss
where ss.name = sse.parent""", as_dict=1):
s = frappe.new_doc("Salary Structure Assignment")
s.employee = d.employee
s.employee_name = d.employee_name
s.salary_structure = d.parent
s.from_date = d.from_date
s.to_date = d.to_date
s.base = d.base
s.variable = d.variable
s.company = d.company
s.save()
frappe.db.sql("update `tabSalary Structure` set docstatus=1")