mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-24 15:39:20 +00:00
fix: unknown attribute "string_type" (#26947)
This commit is contained in:
@@ -135,7 +135,7 @@ def mark_attendance(employee, attendance_date, status, shift=None, leave_type=No
|
|||||||
def mark_bulk_attendance(data):
|
def mark_bulk_attendance(data):
|
||||||
import json
|
import json
|
||||||
from pprint import pprint
|
from pprint import pprint
|
||||||
if isinstance(data, frappe.string_types):
|
if isinstance(data, str):
|
||||||
data = json.loads(data)
|
data = json.loads(data)
|
||||||
data = frappe._dict(data)
|
data = frappe._dict(data)
|
||||||
company = frappe.get_value('Employee', data.employee, 'company')
|
company = frappe.get_value('Employee', data.employee, 'company')
|
||||||
|
|||||||
Reference in New Issue
Block a user