Merge pull request #14171 from rohitwaghchaure/fixed_patch_v11_salary_structure_assignment

[Fix] Patch
This commit is contained in:
rohitwaghchaure 2018-05-21 18:52:48 +05:30 committed by GitHub
commit b1036e5582
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 13 deletions

View File

@ -8,6 +8,8 @@ from frappe import _
from frappe.utils import getdate
from frappe.model.document import Document
class DuplicateAssignment(frappe.ValidationError): pass
class SalaryStructureAssignment(Document):
def validate(self):
self.validate_dates()
@ -56,7 +58,8 @@ class SalaryStructureAssignment(Document):
})
if assignment:
frappe.throw(_("Active Salary Structure Assignment {0} found for employee {1} for the given dates").format(assignment[0][0], self.employee))
frappe.throw(_("Active Salary Structure Assignment {0} found for employee {1} for the given dates").
format(assignment[0][0], self.employee), DuplicateAssignment)
def get_assigned_salary_structure(employee, on_date):
if not employee or not on_date:

View File

@ -4,12 +4,14 @@
from __future__ import unicode_literals
import frappe
from datetime import datetime
from erpnext.hr.doctype.salary_structure_assignment.salary_structure_assignment import DuplicateAssignment
def execute():
frappe.reload_doc("hr", "doctype", "salary_structure_assignment")
for d in frappe.db.sql("""
select sse.*, ss.company from `tabSalary Structure Employee` sse, `tabSalary Structure` ss
where ss.name = sse.parent AND sse.employee in (select name from `tabEmployee` where ifNull(status, '') != 'Left')""", as_dict=1):
try:
s = frappe.new_doc("Salary Structure Assignment")
s.employee = d.employee
s.employee_name = d.employee_name
@ -23,5 +25,7 @@ def execute():
# to migrate the data of the old employees
s.flags.old_employee = True
s.save()
except DuplicateAssignment:
pass
frappe.db.sql("update `tabSalary Structure` set docstatus=1")