From 35e4d8b152f93ed782456d5cfd30964a6a6eb2cc Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 19 Jan 2017 12:47:27 +0530 Subject: [PATCH] [fix] update_salary_slip.py --- erpnext/patches/v7_2/update_salary_slips.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/patches/v7_2/update_salary_slips.py b/erpnext/patches/v7_2/update_salary_slips.py index e626166915..c23ea71492 100644 --- a/erpnext/patches/v7_2/update_salary_slips.py +++ b/erpnext/patches/v7_2/update_salary_slips.py @@ -1,5 +1,6 @@ import frappe from erpnext.hr.doctype.process_payroll.process_payroll import get_month_details +from frappe import cint def execute(): frappe.reload_doctype('Salary Slip') @@ -12,7 +13,7 @@ def execute(): (end_date is null or end_date = '') and docstatus != 2""", as_dict=True) for salary_slip in salary_slips: - get_start_end_date = get_month_details(salary_slip.fiscal_year, salary_slip.month + 1) + get_start_end_date = get_month_details(salary_slip.fiscal_year, cint(salary_slip.month) + 1) start_date = get_start_end_date['month_start_date'] end_date = get_start_end_date['month_end_date'] frappe.db.sql("""update `tabSalary Slip` set start_date = %s, end_date = %s where name = %s""",