2019-01-22 18:22:20 +05:30
|
|
|
from __future__ import unicode_literals
|
2017-01-22 11:01:02 +05:30
|
|
|
import frappe
|
|
|
|
|
|
|
|
def execute():
|
2020-06-19 19:17:57 +05:30
|
|
|
frappe.reload_doc('Payroll', 'doctype', 'Salary Slip')
|
2017-01-22 11:01:02 +05:30
|
|
|
if not frappe.db.has_column('Salary Detail', 'abbr'):
|
|
|
|
return
|
|
|
|
|
|
|
|
salary_details = frappe.db.sql("""select abbr, salary_component, name from `tabSalary Detail`
|
|
|
|
where abbr is null or abbr = ''""", as_dict=True)
|
|
|
|
|
|
|
|
for salary_detail in salary_details:
|
|
|
|
salary_component_abbr = frappe.get_value("Salary Component", salary_detail.salary_component, "salary_component_abbr")
|
|
|
|
frappe.db.sql("""update `tabSalary Detail` set abbr = %s where name = %s""",(salary_component_abbr, salary_detail.name))
|