From 3c68141e88e4cf8a1d69064813d3f1aa4e286c63 Mon Sep 17 00:00:00 2001 From: Horilla Date: Sat, 21 Sep 2024 15:16:52 +0530 Subject: [PATCH] [ADD] LOAD DATA: New app for loading demo data to a blank database on user preference --- base/templates/holiday/holiday_view.html | 437 +- base/urls.py | 5 +- base/views.py | 101 +- horilla/horilla_settings.py | 7 + horilla/methods.py | 29 + load_data/asset_data.json | 4415 +++++++++ load_data/attendance_data.json | 8447 +++++++++++++++++ load_data/base_data.json | 2737 ++++++ load_data/employee_info_data.json | 2311 +++++ load_data/leave_data.json | 3301 +++++++ load_data/pms_data.json | 316 + load_data/recruitment_data.json | 976 ++ load_data/user_data.json | 1424 +++ load_data/work_info_data.json | 1927 ++++ static/index/index.js | 16 + .../demo_database/animation_load_data.html | 7 + templates/demo_database/auth_load_data.html | 50 + templates/import_popup.html | 49 + templates/login.html | 226 +- 19 files changed, 26362 insertions(+), 419 deletions(-) create mode 100644 load_data/asset_data.json create mode 100644 load_data/attendance_data.json create mode 100644 load_data/base_data.json create mode 100644 load_data/employee_info_data.json create mode 100644 load_data/leave_data.json create mode 100644 load_data/pms_data.json create mode 100644 load_data/recruitment_data.json create mode 100644 load_data/user_data.json create mode 100644 load_data/work_info_data.json create mode 100644 templates/demo_database/animation_load_data.html create mode 100644 templates/demo_database/auth_load_data.html create mode 100644 templates/import_popup.html diff --git a/base/templates/holiday/holiday_view.html b/base/templates/holiday/holiday_view.html index a99e272c7..dfac9aeec 100644 --- a/base/templates/holiday/holiday_view.html +++ b/base/templates/holiday/holiday_view.html @@ -1,309 +1,200 @@ {% extends 'index.html' %} {% block content %} {% load static %} {% load i18n %}
- -
-

{% trans "Holidays" %}

- - - -
- - -
- {% if holidays %} - -
- - + +
+

{% trans "Holidays" %}

+ + +
- + - -
- -
- - {% include "holiday/holiday_filter.html" %} -
- - {% endif %} +
+ {% if holidays %} + +
+ + +
+ + {% endif %} - - {% if perms.base.add_holiday or perms.base.delete_holiday%} -
- - -
- {% endif %} - + +
- - {% if perms.base.add_holiday %} -
-
- -
-
- {% endif %} - + {% if holidays %} + +
+ + {% include "holiday/holiday_filter.html" %} +
+ + {% endif %} + + + {% if perms.base.add_holiday or perms.base.delete_holiday%} +
+ + +
+ {% endif %} + + + + {% if perms.base.add_holiday %} +
+
+ +
+
+ {% endif %} + +
+
- -
- - + - + {% endblock %} diff --git a/base/urls.py b/base/urls.py index a4e9fc465..04328da44 100644 --- a/base/urls.py +++ b/base/urls.py @@ -1,11 +1,9 @@ from django.contrib.auth.models import Group -from django.contrib.auth.views import PasswordResetConfirmView from django.urls import path from django.utils.translation import gettext_lazy as _ from base import announcement, request_and_approve, views from base.forms import ( - AttendanceAllowedIPForm, MailTemplateForm, RotatingShiftAssignForm, RotatingShiftForm, @@ -15,7 +13,6 @@ from base.forms import ( WorkTypeRequestForm, ) from base.models import ( - AttendanceAllowedIP, Company, Department, EmployeeShift, @@ -33,12 +30,12 @@ from base.models import ( WorkType, WorkTypeRequest, ) -from employee.models import EmployeeTag from horilla_audit.models import AuditTag urlpatterns = [ path("", views.home, name="home-page"), path("initialize-database", views.initialize_database, name="initialize-database"), + path("load-demo-database", views.load_demo_database, name="load-demo-database"), path( "initialize-database-user", views.initialize_database_user, diff --git a/base/views.py b/base/views.py index 5e2310f17..417e88527 100644 --- a/base/views.py +++ b/base/views.py @@ -5,6 +5,7 @@ This module is used to map url pattens with django views or methods """ import json +import uuid from datetime import datetime, timedelta from email.mime.image import MIMEImage from os import path @@ -26,6 +27,7 @@ from django.http import Http404, HttpResponse, HttpResponseRedirect, JsonRespons from django.shortcuts import get_object_or_404, redirect, render from django.template.loader import render_to_string from django.urls import reverse, reverse_lazy +from django.utils import timezone from django.utils.html import strip_tags from django.utils.translation import gettext as _ from django.views.decorators.csrf import csrf_exempt @@ -150,7 +152,8 @@ from horilla.decorators import ( permission_required, ) from horilla.group_by import group_by_queryset -from horilla.methods import get_horilla_model_class +from horilla.horilla_settings import DB_INIT_PASSWORD, DYNAMIC_URL_PATTERNS +from horilla.methods import get_horilla_model_class, remove_dynamic_url from horilla_audit.forms import HistoryTrackingFieldsForm from horilla_audit.models import AccountBlockUnblock, AuditTag, HistoryTrackingFields from notifications.models import Notification @@ -212,33 +215,40 @@ def initialize_database_condition(): def load_demo_database(request): - # Core data files - data_files = [ - "user_data.json", - "employee_info_data.json", - "base_data.json", - "work_info_data.json", - ] - optional_apps = { - "attendance": "attendance_data.json", - "leave": "leave_data.json", - "asset_data": "asset_data.json", - "recruitment": "recruitment_data.json", - "pms": "pms_data.json", - } + if initialize_database_condition(): + if request.method == "POST": + if request.POST.get("load_data_password") == DB_INIT_PASSWORD: + data_files = [ + "user_data.json", + "employee_info_data.json", + "base_data.json", + "work_info_data.json", + ] + optional_apps = { + "attendance": "attendance_data.json", + "leave": "leave_data.json", + "asset_data": "asset_data.json", + "recruitment": "recruitment_data.json", + "pms": "pms_data.json", + } - # Add data files for installed apps - data_files += [ - file for app, file in optional_apps.items() if apps.is_installed(app) - ] + # Add data files for installed apps + data_files += [ + file + for app, file in optional_apps.items() + if apps.is_installed(app) + ] - # Load all data files - for file in data_files: - file_path = path.join(settings.BASE_DIR, "load_data", file) - call_command("loaddata", file_path) + # Load all data files + for file in data_files: + file_path = path.join(settings.BASE_DIR, "load_data", file) + call_command("loaddata", file_path) - messages.success(request, _("Database loaded successfully.")) - return redirect(home) + messages.success(request, _("Database loaded successfully.")) + else: + messages.error(request, _("Database Authentication Failed")) + return redirect(home) + return redirect("/") def initialize_database(request): @@ -777,6 +787,16 @@ def home(request): employee=request.user.employee_get )[0] + user = request.user + today = timezone.now().date() # Get today's date + is_birthday = None + + if user.employee_get.dob != None: + is_birthday = ( + user.employee_get.dob.month == today.month + and user.employee_get.dob.day == today.day + ) + announcements = Announcement.objects.all() general_expire = AnnouncementExpire.objects.all().first() general_expire_date = 30 if not general_expire else general_expire.days @@ -811,6 +831,7 @@ def home(request): "announcement": announcement_list, "general_expire_date": general_expire_date, "charts": employee_charts.charts, + "is_birthday": is_birthday, } return render(request, "index.html", context) @@ -6303,9 +6324,20 @@ def generate_error_report(error_list, error_data, file_name): worksheet = writer.sheets["Sheet1"] worksheet.set_column("A:Z", 30) - writer.close() - return response + + def get_error_sheet(request): + remove_dynamic_url(path_info) + return response + + from base.urls import path, urlpatterns + + # Create a unique path for the error file download + path_info = f"error-sheet-{uuid.uuid4()}" + urlpatterns.append(path(path_info, get_error_sheet, name=path_info)) + DYNAMIC_URL_PATTERNS.append(path_info) + + return path_info @login_required @@ -6418,11 +6450,18 @@ def holidays_info_import(request): except Exception as e: holiday["Other errors"] = f"{str(e)}" error_list.append(holiday) - + path_info = None if error_list: - return generate_error_report(error_list, error_data, file_name) - else: - return HttpResponseRedirect(request.META.get("HTTP_REFERER", "/")) + path_info = generate_error_report(error_list, error_data, file_name) + created_holidays_count = len(holiday_dicts) - len(error_list) + context = { + "created_count": created_holidays_count, + "error_count": len(error_list), + "model": _("Holidays"), + "path_info": path_info, + } + html = render_to_string("import_popup.html", context) + return HttpResponse(html) @login_required diff --git a/horilla/horilla_settings.py b/horilla/horilla_settings.py index 10a5f63a3..882e15de4 100644 --- a/horilla/horilla_settings.py +++ b/horilla/horilla_settings.py @@ -29,3 +29,10 @@ HORILLA_TIME_FORMATS = { } BIO_DEVICE_THREADS = {} + +DYNAMIC_URL_PATTERNS = [] + +APP_URLS = [ + "base.urls", + "employee.urls", +] diff --git a/horilla/methods.py b/horilla/methods.py index ea291e292..12f2cf0bb 100644 --- a/horilla/methods.py +++ b/horilla/methods.py @@ -1,8 +1,11 @@ import contextlib +import importlib from django.contrib.auth.models import User from django.contrib.contenttypes.models import ContentType +from horilla.horilla_settings import APP_URLS, DYNAMIC_URL_PATTERNS + def get_horilla_model_class(app_label, model): """ @@ -78,3 +81,29 @@ def get_urlencode(request): get_data.pop("instances_ids", None) previous_data = get_data.urlencode() return previous_data + + +def remove_dynamic_url(path_info): + """Function to remove a dynamically added URL from any app's urlpatterns.""" + + # Iterate over all app URL patterns + for app_urls in APP_URLS: + try: + # Dynamically import the app's urls.py module + urls_module = importlib.import_module(app_urls) + # Access the urlpatterns in the module + urlpatterns = getattr(urls_module, "urlpatterns", None) + + if urlpatterns: + # Check if the pattern exists in this app's urlpatterns + for path in urlpatterns: + if path.name == path_info: + urlpatterns.remove(path) + break + + except ModuleNotFoundError: + print(f"Module {app_urls} not found. Skipping...") + + # Also remove it from the tracked dynamic paths + if path_info in DYNAMIC_URL_PATTERNS: + DYNAMIC_URL_PATTERNS.remove(path_info) diff --git a/load_data/asset_data.json b/load_data/asset_data.json new file mode 100644 index 000000000..3ac4d986a --- /dev/null +++ b/load_data/asset_data.json @@ -0,0 +1,4415 @@ +[ + { + "model": "asset.assetcategory", + "pk": 1, + "fields": { + "created_at": "2024-05-22T07:32:07.856Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_category_name": "Laptops", + "asset_category_description": "", + "company_id": [] + } + }, + { + "model": "asset.assetcategory", + "pk": 2, + "fields": { + "created_at": "2024-05-22T07:32:09.095Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_category_name": "Headphones", + "asset_category_description": "", + "company_id": [] + } + }, + { + "model": "asset.assetcategory", + "pk": 3, + "fields": { + "created_at": "2024-05-22T07:32:10.260Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_category_name": "Phones", + "asset_category_description": "", + "company_id": [] + } + }, + { + "model": "asset.assetcategory", + "pk": 4, + "fields": { + "created_at": "2024-05-22T07:32:11.303Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_category_name": "Bags", + "asset_category_description": "", + "company_id": [] + } + }, + { + "model": "asset.assetcategory", + "pk": 5, + "fields": { + "created_at": "2024-05-22T07:32:11.722Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_category_name": "Camera", + "asset_category_description": "", + "company_id": [] + } + }, + { + "model": "asset.assetcategory", + "pk": 6, + "fields": { + "created_at": "2024-05-22T07:32:12.276Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_category_name": "Mouse", + "asset_category_description": "", + "company_id": [] + } + }, + { + "model": "asset.assetcategory", + "pk": 7, + "fields": { + "created_at": "2024-05-22T07:32:12.642Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_category_name": "Car", + "asset_category_description": "", + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 1, + "fields": { + "created_at": "2024-05-22T07:32:07.879Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "LPB001", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 2, + "fields": { + "created_at": "2024-05-22T07:32:08.545Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "LPB002", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 3, + "fields": { + "created_at": "2024-05-22T07:32:09.123Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "HPB001", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 4, + "fields": { + "created_at": "2024-05-22T07:32:09.783Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "HPB002", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 5, + "fields": { + "created_at": "2024-05-22T07:32:10.274Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "PHB001", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 6, + "fields": { + "created_at": "2024-05-22T07:32:11.192Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "PHB002", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 7, + "fields": { + "created_at": "2024-05-22T07:32:11.314Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "BGB001", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 8, + "fields": { + "created_at": "2024-05-22T07:32:11.735Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "CMB001", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 9, + "fields": { + "created_at": "2024-05-22T07:32:12.030Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "CMB002", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 10, + "fields": { + "created_at": "2024-05-22T07:32:12.293Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "MSB001", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.assetlot", + "pk": 11, + "fields": { + "created_at": "2024-05-22T07:32:12.655Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "lot_number": "CRB001", + "lot_description": null, + "company_id": [] + } + }, + { + "model": "asset.asset", + "pk": 1, + "fields": { + "created_at": "2024-05-22T07:32:07.902Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Dell", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0001", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15000.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 2, + "fields": { + "created_at": "2024-05-22T07:32:07.954Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "HP", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0002", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "16000.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 3, + "fields": { + "created_at": "2024-05-22T07:32:07.987Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Lenovo", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0003", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15000.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 4, + "fields": { + "created_at": "2024-05-22T07:32:08.018Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Asus", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0004", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15001.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 5, + "fields": { + "created_at": "2024-05-22T07:32:08.056Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Acer", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0005", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15002.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 6, + "fields": { + "created_at": "2024-05-22T07:32:08.098Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Apple", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0006", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15003.00", + "asset_category_id": 1, + "asset_status": "Not-Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 7, + "fields": { + "created_at": "2024-05-22T07:32:08.125Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "MSI", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0007", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15004.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 8, + "fields": { + "created_at": "2024-05-22T07:32:08.153Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Razer", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0008", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15005.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 9, + "fields": { + "created_at": "2024-05-22T07:32:08.177Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "LG", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0009", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15006.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 10, + "fields": { + "created_at": "2024-05-22T07:32:08.201Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Samsung.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0010", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15007.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 11, + "fields": { + "created_at": "2024-05-22T07:32:08.226Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Huawei", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0011", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15008.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 12, + "fields": { + "created_at": "2024-05-22T07:32:08.250Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Toshiba", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0012", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15009.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 13, + "fields": { + "created_at": "2024-05-22T07:32:08.275Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Sony", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0013", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15010.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 14, + "fields": { + "created_at": "2024-05-22T07:32:08.298Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Fujitsu", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0014", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15011.00", + "asset_category_id": 1, + "asset_status": "Not-Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 15, + "fields": { + "created_at": "2024-05-22T07:32:08.327Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Alienware", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0015", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15012.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 16, + "fields": { + "created_at": "2024-05-22T07:32:08.362Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Gigabyte", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0016", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15013.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 17, + "fields": { + "created_at": "2024-05-22T07:32:08.392Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Panasonic", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0017", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15014.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 18, + "fields": { + "created_at": "2024-05-22T07:32:08.430Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Microsoft Surface", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0018", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15015.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 19, + "fields": { + "created_at": "2024-05-22T07:32:08.459Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Chromebook", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0019", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15016.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 20, + "fields": { + "created_at": "2024-05-22T07:32:08.481Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Gateway.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0020", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15017.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 21, + "fields": { + "created_at": "2024-05-22T07:32:08.503Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Dell XPS 13", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0021", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15018.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 22, + "fields": { + "created_at": "2024-05-22T07:32:08.524Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "HP Spectre x360", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0022", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15019.00", + "asset_category_id": 1, + "asset_status": "Not-Available", + "asset_lot_number_id": 1, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 23, + "fields": { + "created_at": "2024-05-22T07:32:08.558Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Lenovo ThinkPad X1 Carbon", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0023", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15020.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 24, + "fields": { + "created_at": "2024-05-22T07:32:08.581Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Asus ROG Zephyrus G14", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0024", + "asset_purchase_date": "2022-07-07", + "asset_purchase_cost": "15021.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 25, + "fields": { + "created_at": "2024-05-22T07:32:08.607Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Acer Swift 5", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0025", + "asset_purchase_date": "2022-07-31", + "asset_purchase_cost": "18500.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 26, + "fields": { + "created_at": "2024-05-22T07:32:08.637Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Apple MacBook Air M1", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0026", + "asset_purchase_date": "2022-08-01", + "asset_purchase_cost": "18501.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 27, + "fields": { + "created_at": "2024-05-22T07:32:08.668Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "MSI GS65 Stealth Thin", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0027", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18502.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 28, + "fields": { + "created_at": "2024-05-22T07:32:08.691Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Razer Blade Pro 17", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0028", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18503.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 29, + "fields": { + "created_at": "2024-05-22T07:32:08.715Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "LG Gram 17", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0029", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18504.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 30, + "fields": { + "created_at": "2024-05-22T07:32:08.737Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Samsung Galaxy Book Flex2.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0030", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18505.00", + "asset_category_id": 1, + "asset_status": "Not-Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 31, + "fields": { + "created_at": "2024-05-22T07:32:08.758Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Huawei MateBook X Pro", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0031", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18506.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 32, + "fields": { + "created_at": "2024-05-22T07:32:08.781Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Toshiba Portege X30T", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0032", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18507.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 33, + "fields": { + "created_at": "2024-05-22T07:32:08.801Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Sony Vaio S13", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0033", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18508.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 34, + "fields": { + "created_at": "2024-05-22T07:32:08.822Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Fujitsu Lifebook U9311", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0034", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18509.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 35, + "fields": { + "created_at": "2024-05-22T07:32:08.841Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Alienware m15 R4", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0035", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18510.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 36, + "fields": { + "created_at": "2024-05-22T07:32:08.860Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Gigabyte AERO 15 OLED", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0036", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18511.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 37, + "fields": { + "created_at": "2024-05-22T07:32:08.881Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Panasonic Toughbook 55", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0037", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18512.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 38, + "fields": { + "created_at": "2024-05-22T07:32:08.914Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Microsoft Surface Laptop 4", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0038", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18513.00", + "asset_category_id": 1, + "asset_status": "Not-Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 39, + "fields": { + "created_at": "2024-05-22T07:32:08.944Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Google Pixelbook Go", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0039", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18514.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 40, + "fields": { + "created_at": "2024-05-22T07:32:09.062Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Gateway Creator Series 15.6-inch.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "LPT0040", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "18515.00", + "asset_category_id": 1, + "asset_status": "Available", + "asset_lot_number_id": 2, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 41, + "fields": { + "created_at": "2024-05-22T07:32:09.135Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Bose", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0001", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 42, + "fields": { + "created_at": "2024-05-22T07:32:09.170Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Sennheiser", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0002", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 43, + "fields": { + "created_at": "2024-05-22T07:32:09.190Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Sony", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0003", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Not-Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 44, + "fields": { + "created_at": "2024-05-22T07:32:09.253Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Audio-Technica", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0004", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 45, + "fields": { + "created_at": "2024-05-22T07:32:09.306Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Beats by Dr. Dre", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0005", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 46, + "fields": { + "created_at": "2024-05-22T07:32:09.329Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "JBL", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0006", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 47, + "fields": { + "created_at": "2024-05-22T07:32:09.396Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "AKG", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0007", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 48, + "fields": { + "created_at": "2024-05-22T07:32:09.419Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Philips", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0008", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Not-Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 49, + "fields": { + "created_at": "2024-05-22T07:32:09.447Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Shure", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0009", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 50, + "fields": { + "created_at": "2024-05-22T07:32:09.481Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Grado.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0010", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 51, + "fields": { + "created_at": "2024-05-22T07:32:09.506Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Plantronics", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0011", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 52, + "fields": { + "created_at": "2024-05-22T07:32:09.536Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Skullcandy", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0012", + "asset_purchase_date": "2022-08-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 53, + "fields": { + "created_at": "2024-05-22T07:32:09.562Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Marshall", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0013", + "asset_purchase_date": "2022-08-28", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Not-Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 54, + "fields": { + "created_at": "2024-05-22T07:32:09.586Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Bang & Olufsen", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0014", + "asset_purchase_date": "2022-08-29", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 55, + "fields": { + "created_at": "2024-05-22T07:32:09.607Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "SteelSeries", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0015", + "asset_purchase_date": "2022-08-30", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 56, + "fields": { + "created_at": "2024-05-22T07:32:09.627Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "HyperX", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0016", + "asset_purchase_date": "2022-08-31", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 57, + "fields": { + "created_at": "2024-05-22T07:32:09.647Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Beyerdynamic", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0017", + "asset_purchase_date": "2022-09-01", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 58, + "fields": { + "created_at": "2024-05-22T07:32:09.666Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "V-Moda", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0018", + "asset_purchase_date": "2022-09-02", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Not-Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 59, + "fields": { + "created_at": "2024-05-22T07:32:09.687Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Master & Dynamic", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0019", + "asset_purchase_date": "2022-09-03", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 60, + "fields": { + "created_at": "2024-05-22T07:32:09.710Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Jaybird.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0020", + "asset_purchase_date": "2022-09-04", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 61, + "fields": { + "created_at": "2024-05-22T07:32:09.735Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Jabra", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0021", + "asset_purchase_date": "2022-09-05", + "asset_purchase_cost": "1299.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 62, + "fields": { + "created_at": "2024-05-22T07:32:09.759Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Klipsch", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0022", + "asset_purchase_date": "2022-09-06", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 3, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 63, + "fields": { + "created_at": "2024-05-22T07:32:09.797Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Razer", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0023", + "asset_purchase_date": "2022-09-07", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Not-Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 64, + "fields": { + "created_at": "2024-05-22T07:32:09.834Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Bose QuietComfort", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0024", + "asset_purchase_date": "2022-09-08", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "In use", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 65, + "fields": { + "created_at": "2024-05-22T07:32:09.867Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Anker Soundcore", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0025", + "asset_purchase_date": "2022-09-09", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 66, + "fields": { + "created_at": "2024-05-22T07:32:09.909Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Mpow", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0026", + "asset_purchase_date": "2022-09-10", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 67, + "fields": { + "created_at": "2024-05-22T07:32:09.934Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "TaoTronics", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0027", + "asset_purchase_date": "2022-09-11", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 68, + "fields": { + "created_at": "2024-05-22T07:32:09.958Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "HIFIMAN", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0028", + "asset_purchase_date": "2022-09-12", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Not-Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 69, + "fields": { + "created_at": "2024-05-22T07:32:09.979Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "1MORE", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0029", + "asset_purchase_date": "2022-09-13", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 70, + "fields": { + "created_at": "2024-05-22T07:32:10.002Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Cambridge Audio.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0030", + "asset_purchase_date": "2022-09-14", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 71, + "fields": { + "created_at": "2024-05-22T07:32:10.027Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Audeze", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0031", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 72, + "fields": { + "created_at": "2024-05-22T07:32:10.052Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Denon", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0032", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 73, + "fields": { + "created_at": "2024-05-22T07:32:10.078Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Focal", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0033", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Not-Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 74, + "fields": { + "created_at": "2024-05-22T07:32:10.100Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Meze Audio", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0034", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 75, + "fields": { + "created_at": "2024-05-22T07:32:10.123Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Nura", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0035", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 76, + "fields": { + "created_at": "2024-05-22T07:32:10.145Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Oppo", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0036", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 77, + "fields": { + "created_at": "2024-05-22T07:32:10.173Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Panasonic", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0037", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 78, + "fields": { + "created_at": "2024-05-22T07:32:10.196Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Samsung", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0038", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1350.00", + "asset_category_id": 2, + "asset_status": "Not-Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 79, + "fields": { + "created_at": "2024-05-22T07:32:10.219Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Turtle Beach", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0039", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1542.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 80, + "fields": { + "created_at": "2024-05-22T07:32:10.243Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Westone.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "HPT0040", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "1200.00", + "asset_category_id": 2, + "asset_status": "Available", + "asset_lot_number_id": 4, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 81, + "fields": { + "created_at": "2024-05-22T07:32:10.287Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Apple", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0001", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "52000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 82, + "fields": { + "created_at": "2024-05-22T07:32:10.309Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Samsung", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0002", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 83, + "fields": { + "created_at": "2024-05-22T07:32:10.335Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Huawei", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0003", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 84, + "fields": { + "created_at": "2024-05-22T07:32:10.360Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Xiaomi", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0004", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 85, + "fields": { + "created_at": "2024-05-22T07:32:10.382Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "OnePlus", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0005", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 86, + "fields": { + "created_at": "2024-05-22T07:32:10.406Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Google", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0006", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 87, + "fields": { + "created_at": "2024-05-22T07:32:10.427Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Oppo", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0007", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 88, + "fields": { + "created_at": "2024-05-22T07:32:10.451Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Vivo", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0008", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 89, + "fields": { + "created_at": "2024-05-22T07:32:10.478Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "LG", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0009", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 90, + "fields": { + "created_at": "2024-05-22T07:32:10.503Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Sony.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0010", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 91, + "fields": { + "created_at": "2024-05-22T07:32:10.530Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Motorola", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0011", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 92, + "fields": { + "created_at": "2024-05-22T07:32:10.562Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "HTC", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0012", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 93, + "fields": { + "created_at": "2024-05-22T07:32:10.592Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Nokia", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0013", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 94, + "fields": { + "created_at": "2024-05-22T07:32:10.620Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "BlackBerry", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0014", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 95, + "fields": { + "created_at": "2024-05-22T07:32:10.647Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Asus", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0015", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 96, + "fields": { + "created_at": "2024-05-22T07:32:10.680Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Lenovo", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0016", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 97, + "fields": { + "created_at": "2024-05-22T07:32:10.708Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Realme", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0017", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 98, + "fields": { + "created_at": "2024-05-22T07:32:10.734Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "ZTE", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0018", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "15000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 99, + "fields": { + "created_at": "2024-05-22T07:32:10.757Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Meizu", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0019", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 100, + "fields": { + "created_at": "2024-05-22T07:32:10.777Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Honor.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0020", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 101, + "fields": { + "created_at": "2024-05-22T07:32:10.799Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Micromax", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0021", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 102, + "fields": { + "created_at": "2024-05-22T07:32:10.821Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Panasonic", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0022", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 103, + "fields": { + "created_at": "2024-05-22T07:32:10.844Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Sharp", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0023", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 104, + "fields": { + "created_at": "2024-05-22T07:32:10.870Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "CAT", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0024", + "asset_purchase_date": "2022-09-15", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 105, + "fields": { + "created_at": "2024-05-22T07:32:10.898Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Alcatel", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0025", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 106, + "fields": { + "created_at": "2024-05-22T07:32:10.930Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Tecno", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0026", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 107, + "fields": { + "created_at": "2024-05-22T07:32:10.961Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Infinix", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0027", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 108, + "fields": { + "created_at": "2024-05-22T07:32:10.990Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Gionee", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0028", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 109, + "fields": { + "created_at": "2024-05-22T07:32:11.018Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Lava", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0029", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 110, + "fields": { + "created_at": "2024-05-22T07:32:11.045Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Umidigi.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0030", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 111, + "fields": { + "created_at": "2024-05-22T07:32:11.071Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Elephone", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0031", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 112, + "fields": { + "created_at": "2024-05-22T07:32:11.096Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Doogee", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0032", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 113, + "fields": { + "created_at": "2024-05-22T07:32:11.125Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Leagoo", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0033", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 114, + "fields": { + "created_at": "2024-05-22T07:32:11.148Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Cubot", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0034", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 115, + "fields": { + "created_at": "2024-05-22T07:32:11.173Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Blackview", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0035", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "28000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 5, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 116, + "fields": { + "created_at": "2024-05-22T07:32:11.203Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Oukitel", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0036", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "52000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 6, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 117, + "fields": { + "created_at": "2024-05-22T07:32:11.223Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Vernee", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0037", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "52000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 6, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 118, + "fields": { + "created_at": "2024-05-22T07:32:11.244Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Bluboo", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0038", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "8000.00", + "asset_category_id": 3, + "asset_status": "Not-Available", + "asset_lot_number_id": 6, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 119, + "fields": { + "created_at": "2024-05-22T07:32:11.266Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "AGM", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0039", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "7000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 6, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 120, + "fields": { + "created_at": "2024-05-22T07:32:11.287Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "HomTom.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "PHT0040", + "asset_purchase_date": "2022-10-19", + "asset_purchase_cost": "6000.00", + "asset_category_id": 3, + "asset_status": "Available", + "asset_lot_number_id": 6, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 121, + "fields": { + "created_at": "2024-05-22T07:32:11.325Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Samsonite", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0001", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 122, + "fields": { + "created_at": "2024-05-22T07:32:11.345Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Tumi", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0002", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 123, + "fields": { + "created_at": "2024-05-22T07:32:11.363Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Herschel", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0003", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 124, + "fields": { + "created_at": "2024-05-22T07:32:11.384Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "JanSport", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0004", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 125, + "fields": { + "created_at": "2024-05-22T07:32:11.403Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "FjΣllrΣven", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0005", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 126, + "fields": { + "created_at": "2024-05-22T07:32:11.424Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Timbuk2", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0006", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 127, + "fields": { + "created_at": "2024-05-22T07:32:11.442Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "North Face", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0007", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 128, + "fields": { + "created_at": "2024-05-22T07:32:11.461Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Patagonia", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0008", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 129, + "fields": { + "created_at": "2024-05-22T07:32:11.479Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Victorinox", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0009", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 130, + "fields": { + "created_at": "2024-05-22T07:32:11.499Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Kipling.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0010", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 131, + "fields": { + "created_at": "2024-05-22T07:32:11.520Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "American Tourister", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0011", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 132, + "fields": { + "created_at": "2024-05-22T07:32:11.541Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Eagle Creek", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0012", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 133, + "fields": { + "created_at": "2024-05-22T07:32:11.559Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Travelpro", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0013", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 134, + "fields": { + "created_at": "2024-05-22T07:32:11.579Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Briggs & Riley", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0014", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 135, + "fields": { + "created_at": "2024-05-22T07:32:11.599Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "SwissGear", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0015", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 136, + "fields": { + "created_at": "2024-05-22T07:32:11.618Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Thule", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0016", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 137, + "fields": { + "created_at": "2024-05-22T07:32:11.639Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Dakine", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0017", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 138, + "fields": { + "created_at": "2024-05-22T07:32:11.657Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Roxy", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0018", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 139, + "fields": { + "created_at": "2024-05-22T07:32:11.682Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Osprey", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0019", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 140, + "fields": { + "created_at": "2024-05-22T07:32:11.704Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Burton.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "BGT0020", + "asset_purchase_date": "2022-10-20", + "asset_purchase_cost": "1000.00", + "asset_category_id": 4, + "asset_status": "Available", + "asset_lot_number_id": 7, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 141, + "fields": { + "created_at": "2024-05-22T07:32:11.750Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Canon", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0001", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "500.00", + "asset_category_id": 5, + "asset_status": "Not-Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 142, + "fields": { + "created_at": "2024-05-22T07:32:11.772Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Nikon", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0002", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "500.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 143, + "fields": { + "created_at": "2024-05-22T07:32:11.791Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Sony", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0003", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "500.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 144, + "fields": { + "created_at": "2024-05-22T07:32:11.811Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Fujifilm", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0004", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "500.00", + "asset_category_id": 5, + "asset_status": "Not-Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 145, + "fields": { + "created_at": "2024-05-22T07:32:11.832Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Panasonic", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0005", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "500.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 146, + "fields": { + "created_at": "2024-05-22T07:32:11.852Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Olympus", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0006", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "500.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 147, + "fields": { + "created_at": "2024-05-22T07:32:11.872Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Leica", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0007", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "500.00", + "asset_category_id": 5, + "asset_status": "Not-Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 148, + "fields": { + "created_at": "2024-05-22T07:32:11.894Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Pentax", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0008", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "500.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 149, + "fields": { + "created_at": "2024-05-22T07:32:11.921Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Hasselblad", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0009", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 150, + "fields": { + "created_at": "2024-05-22T07:32:11.946Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "GoPro.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0010", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Not-Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 151, + "fields": { + "created_at": "2024-05-22T07:32:11.970Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "DJI", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0011", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 152, + "fields": { + "created_at": "2024-05-22T07:32:11.997Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Sigma", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0012", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 8, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 153, + "fields": { + "created_at": "2024-05-22T07:32:12.045Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Zeiss", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0013", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Not-Available", + "asset_lot_number_id": 9, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 154, + "fields": { + "created_at": "2024-05-22T07:32:12.078Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Kodak", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0014", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 9, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 155, + "fields": { + "created_at": "2024-05-22T07:32:12.106Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Ricoh", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0015", + "asset_purchase_date": "2023-04-06", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 9, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 156, + "fields": { + "created_at": "2024-05-22T07:32:12.138Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "YI Technology", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0016", + "asset_purchase_date": "2023-04-07", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Not-Available", + "asset_lot_number_id": 9, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 157, + "fields": { + "created_at": "2024-05-22T07:32:12.169Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Polaroid", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0017", + "asset_purchase_date": "2023-04-08", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 9, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 158, + "fields": { + "created_at": "2024-05-22T07:32:12.197Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Phase One", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0018", + "asset_purchase_date": "2023-04-09", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 9, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 159, + "fields": { + "created_at": "2024-05-22T07:32:12.225Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Blackmagic Design", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0019", + "asset_purchase_date": "2023-04-10", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Not-Available", + "asset_lot_number_id": 9, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 160, + "fields": { + "created_at": "2024-05-22T07:32:12.250Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "RED Digital Cinema.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CMT0020", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "600.00", + "asset_category_id": 5, + "asset_status": "Available", + "asset_lot_number_id": 9, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 161, + "fields": { + "created_at": "2024-05-22T07:32:12.315Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "ROCCAT", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0001", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 162, + "fields": { + "created_at": "2024-05-22T07:32:12.346Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "SteelSeries", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0002", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 163, + "fields": { + "created_at": "2024-05-22T07:32:12.372Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Mad Catz.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0003", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 164, + "fields": { + "created_at": "2024-05-22T07:32:12.406Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Asus", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0004", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 165, + "fields": { + "created_at": "2024-05-22T07:32:12.442Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Roccat", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0005", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 166, + "fields": { + "created_at": "2024-05-22T07:32:12.473Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "HyperX", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0006", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 167, + "fields": { + "created_at": "2024-05-22T07:32:12.494Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Cooler Master", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0007", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 168, + "fields": { + "created_at": "2024-05-22T07:32:12.519Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Zowie", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0008", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 169, + "fields": { + "created_at": "2024-05-22T07:32:12.542Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Anker", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0009", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 170, + "fields": { + "created_at": "2024-05-22T07:32:12.561Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Kensington", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0010", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 171, + "fields": { + "created_at": "2024-05-22T07:32:12.582Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "PICTEK", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0011", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 172, + "fields": { + "created_at": "2024-05-22T07:32:12.604Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Redragon", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0012", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 173, + "fields": { + "created_at": "2024-05-22T07:32:12.625Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "VicTsing.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "MST0013", + "asset_purchase_date": "2023-04-11", + "asset_purchase_cost": "750.00", + "asset_category_id": 6, + "asset_status": "Available", + "asset_lot_number_id": 10, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 174, + "fields": { + "created_at": "2024-05-22T07:32:12.667Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Toyota", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0001", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 175, + "fields": { + "created_at": "2024-05-22T07:32:12.688Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Ford", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0002", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 176, + "fields": { + "created_at": "2024-05-22T07:32:12.711Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Volkswagen", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0003", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Not-Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 177, + "fields": { + "created_at": "2024-05-22T07:32:12.732Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "BMW", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0004", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "In use", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 178, + "fields": { + "created_at": "2024-05-22T07:32:12.753Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Mercedes-Benz", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0005", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 179, + "fields": { + "created_at": "2024-05-22T07:32:12.775Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Audi", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0006", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Not-Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 180, + "fields": { + "created_at": "2024-05-22T07:32:12.796Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Honda", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0007", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 181, + "fields": { + "created_at": "2024-05-22T07:32:12.821Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Nissan", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0008", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 182, + "fields": { + "created_at": "2024-05-22T07:32:12.848Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Chevrolet", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0009", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Not-Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 183, + "fields": { + "created_at": "2024-05-22T07:32:12.877Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Porsche.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0010", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 184, + "fields": { + "created_at": "2024-05-22T07:32:12.911Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Tesla", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0011", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 185, + "fields": { + "created_at": "2024-05-22T07:32:12.936Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Jeep", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0012", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Not-Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 186, + "fields": { + "created_at": "2024-05-22T07:32:12.960Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Volvo", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0013", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 187, + "fields": { + "created_at": "2024-05-22T07:32:12.979Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Mazda", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0014", + "asset_purchase_date": "2023-04-12", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 188, + "fields": { + "created_at": "2024-05-22T07:32:12.997Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Kia", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0015", + "asset_purchase_date": "2023-04-13", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Not-Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 189, + "fields": { + "created_at": "2024-05-22T07:32:13.016Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Hyundai", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0016", + "asset_purchase_date": "2023-04-13", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 190, + "fields": { + "created_at": "2024-05-22T07:32:13.036Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Ferrari", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0017", + "asset_purchase_date": "2023-04-13", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 191, + "fields": { + "created_at": "2024-05-22T07:32:13.056Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Lamborghini", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0018", + "asset_purchase_date": "2023-04-13", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Not-Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 192, + "fields": { + "created_at": "2024-05-22T07:32:13.076Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Aston Martin", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0019", + "asset_purchase_date": "2023-04-13", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.asset", + "pk": 193, + "fields": { + "created_at": "2024-05-22T07:32:13.097Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_name": "Rolls-Royce.", + "owner": null, + "asset_description": null, + "asset_tracking_id": "CRT0020", + "asset_purchase_date": "2023-04-13", + "asset_purchase_cost": "120000.00", + "asset_category_id": 7, + "asset_status": "Available", + "asset_lot_number_id": 11, + "expiry_date": null, + "notify_before": 1 + } + }, + { + "model": "asset.returnimages", + "pk": 1, + "fields": { + "created_at": "2024-05-24T05:28:41.985Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "image": "asset/return_images/head_phones.jpg" + } + }, + { + "model": "asset.assetassignment", + "pk": 1, + "fields": { + "created_at": "2024-05-24T05:26:59.456Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_id": 177, + "assigned_to_employee_id": 1, + "assigned_date": "2024-05-24", + "assigned_by_employee_id": 1, + "return_date": null, + "return_condition": null, + "return_status": null, + "return_request": false, + "return_images": [], + "assign_images": [] + } + }, + { + "model": "asset.assetassignment", + "pk": 2, + "fields": { + "created_at": "2024-05-24T05:28:20.560Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "asset_id": 64, + "assigned_to_employee_id": 67, + "assigned_date": "2024-05-24", + "assigned_by_employee_id": 1, + "return_date": "2024-05-24", + "return_condition": "good condition", + "return_status": "Healthy", + "return_request": false, + "return_images": [1], + "assign_images": [1] + } + }, + { + "model": "asset.assetrequest", + "pk": 1, + "fields": { + "created_at": "2024-05-24T05:25:00.158Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "requested_employee_id": 1, + "asset_category_id": 1, + "asset_request_date": "2024-05-24", + "description": "i need a laptop", + "asset_request_status": "Requested" + } + }, + { + "model": "asset.assetrequest", + "pk": 2, + "fields": { + "created_at": "2024-05-24T05:25:11.332Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "requested_employee_id": 12, + "asset_category_id": 1, + "asset_request_date": "2024-05-24", + "description": "i need a laptop", + "asset_request_status": "Requested" + } + }, + { + "model": "asset.assetrequest", + "pk": 3, + "fields": { + "created_at": "2024-05-24T05:25:24.608Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "requested_employee_id": 13, + "asset_category_id": 1, + "asset_request_date": "2024-05-24", + "description": "i need a laptop", + "asset_request_status": "Requested" + } + }, + { + "model": "asset.assetrequest", + "pk": 4, + "fields": { + "created_at": "2024-05-24T05:25:37.401Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "requested_employee_id": 1, + "asset_category_id": 7, + "asset_request_date": "2024-05-24", + "description": "i need a car", + "asset_request_status": "Approved" + } + }, + { + "model": "asset.assetrequest", + "pk": 5, + "fields": { + "created_at": "2024-05-24T05:25:57.948Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "requested_employee_id": 67, + "asset_category_id": 2, + "asset_request_date": "2024-05-24", + "description": "i need a headset", + "asset_request_status": "Approved" + } + } +] diff --git a/load_data/attendance_data.json b/load_data/attendance_data.json new file mode 100644 index 000000000..28af153fa --- /dev/null +++ b/load_data/attendance_data.json @@ -0,0 +1,8447 @@ +[ + { + "model": "attendance.attendanceactivity", + "pk": 2, + "fields": { + "created_at": "2024-05-24T04:18:24.094Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "attendance_date": "2024-05-24", + "shift_day": 5, + "in_datetime": "2024-05-24T04:18:24.087Z", + "clock_in_date": "2024-05-24", + "clock_in": "09:48:24.087", + "clock_out_date": "2024-05-24", + "out_datetime": "2024-05-24T04:18:27.833Z", + "clock_out": "09:48:27.833" + } + }, + { + "model": "attendance.attendanceactivity", + "pk": 3, + "fields": { + "created_at": "2024-05-24T04:18:33.000Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "attendance_date": "2024-05-24", + "shift_day": 5, + "in_datetime": "2024-05-24T04:18:32.993Z", + "clock_in_date": "2024-05-24", + "clock_in": "09:48:32.993", + "clock_out_date": "2024-05-27", + "out_datetime": "2024-05-27T03:04:33.483Z", + "clock_out": "08:34:33.483" + } + }, + { + "model": "attendance.attendanceactivity", + "pk": 4, + "fields": { + "created_at": "2024-08-21T10:18:07.877Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "attendance_date": "2024-08-21", + "shift_day": 3, + "in_datetime": "2024-08-21T10:18:07.794Z", + "clock_in_date": "2024-08-21", + "clock_in": "15:48:07.794", + "clock_out_date": "2024-08-26", + "out_datetime": "2024-08-26T09:40:13.899Z", + "clock_out": "15:10:13.899" + } + }, + { + "model": "attendance.attendanceactivity", + "pk": 5, + "fields": { + "created_at": "2024-08-26T09:40:17.533Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "attendance_date": "2024-08-26", + "shift_day": 1, + "in_datetime": "2024-08-26T09:40:17.451Z", + "clock_in_date": "2024-08-26", + "clock_in": "15:10:17.451", + "clock_out_date": "2024-08-26", + "out_datetime": "2024-08-26T10:45:17.451Z", + "clock_out": "16:15:17.451" + } + }, + { + "model": "attendance.attendance", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:43:57.176Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "attendance_date": "2024-05-22", + "shift_id": 1, + "work_type_id": null, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-22", + "attendance_clock_in": "14:13:00", + "attendance_clock_out_date": "2024-05-23", + "attendance_clock_out": "08:41:00", + "attendance_worked_hour": "18:27", + "minimum_hour": "08:15", + "attendance_overtime": "04:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 66420, + "overtime_second": 14400, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 188, + "fields": { + "created_at": "2024-05-24T04:02:59.427Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 50, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 189, + "fields": { + "created_at": "2024-05-24T04:02:59.676Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 9, + "attendance_date": "2024-04-01", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 190, + "fields": { + "created_at": "2024-05-24T04:02:59.945Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 48, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "09:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 191, + "fields": { + "created_at": "2024-05-24T04:03:00.209Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 55, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 192, + "fields": { + "created_at": "2024-05-24T04:03:00.391Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 7, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 193, + "fields": { + "created_at": "2024-05-24T04:03:00.614Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 15, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 194, + "fields": { + "created_at": "2024-05-24T04:03:00.859Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 31, + "attendance_date": "2024-04-01", + "shift_id": 2, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 195, + "fields": { + "created_at": "2024-05-24T04:03:01.077Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 6, + "attendance_date": "2024-05-14", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 196, + "fields": { + "created_at": "2024-05-24T04:03:01.241Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 43, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 197, + "fields": { + "created_at": "2024-05-24T04:03:01.554Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 29, + "attendance_date": "2024-05-13", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 198, + "fields": { + "created_at": "2024-05-24T04:03:01.888Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 51, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 199, + "fields": { + "created_at": "2024-05-24T04:03:02.111Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 19, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 200, + "fields": { + "created_at": "2024-05-24T04:03:02.361Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 4, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 201, + "fields": { + "created_at": "2024-05-24T04:03:02.583Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 40, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 202, + "fields": { + "created_at": "2024-05-24T04:03:02.781Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 53, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 203, + "fields": { + "created_at": "2024-05-24T04:03:02.998Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 40, + "attendance_date": "2024-05-21", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 204, + "fields": { + "created_at": "2024-05-24T04:03:03.237Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 25, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 205, + "fields": { + "created_at": "2024-05-24T04:03:03.392Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 39, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 206, + "fields": { + "created_at": "2024-05-24T04:03:03.691Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 28, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 207, + "fields": { + "created_at": "2024-05-24T04:03:03.905Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 60, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 208, + "fields": { + "created_at": "2024-05-24T04:03:04.158Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 58, + "attendance_date": "2024-05-21", + "shift_id": 2, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 209, + "fields": { + "created_at": "2024-05-24T04:03:04.437Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 37, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 210, + "fields": { + "created_at": "2024-05-24T04:03:04.666Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 73, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 211, + "fields": { + "created_at": "2024-05-24T04:03:04.858Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 25, + "attendance_date": "2024-05-15", + "shift_id": 3, + "work_type_id": 2, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 212, + "fields": { + "created_at": "2024-05-24T04:03:05.177Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 20, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 213, + "fields": { + "created_at": "2024-05-24T04:03:05.391Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 7, + "attendance_date": "2024-05-21", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 214, + "fields": { + "created_at": "2024-05-24T04:03:05.672Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 66, + "attendance_date": "2024-04-01", + "shift_id": 2, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 215, + "fields": { + "created_at": "2024-05-24T04:03:05.975Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 26, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 216, + "fields": { + "created_at": "2024-05-24T04:03:06.229Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 38, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 217, + "fields": { + "created_at": "2024-05-24T04:03:06.444Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 71, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 218, + "fields": { + "created_at": "2024-05-24T04:03:06.690Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 63, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 219, + "fields": { + "created_at": "2024-05-24T04:03:06.925Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 41, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 220, + "fields": { + "created_at": "2024-05-24T04:03:07.150Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 56, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 221, + "fields": { + "created_at": "2024-05-24T04:03:07.403Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 59, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 222, + "fields": { + "created_at": "2024-05-24T04:03:07.711Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 15, + "attendance_date": "2024-05-13", + "shift_id": 3, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 223, + "fields": { + "created_at": "2024-05-24T04:03:07.959Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 11, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 224, + "fields": { + "created_at": "2024-05-24T04:03:08.160Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 22, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 225, + "fields": { + "created_at": "2024-05-24T04:03:08.438Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 57, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": true, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": "mked", + "request_type": "update_request", + "is_holiday": false, + "requested_data": "{\"employee_id\": \"57\", \"attendance_date\": \"2024-05-14\", \"attendance_clock_in_date\": \"2024-05-14\", \"attendance_clock_in\": \"08:30:00\", \"attendance_clock_out\": \"18:00:00\", \"attendance_clock_out_date\": \"2024-05-14\", \"shift_id\": \"1\", \"work_type_id\": \"2\", \"attendance_worked_hour\": \"08:45\", \"minimum_hour\": \"08:15\"}" + } + }, + { + "model": "attendance.attendance", + "pk": 226, + "fields": { + "created_at": "2024-05-24T04:03:08.681Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 23, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 227, + "fields": { + "created_at": "2024-05-24T04:03:08.905Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 47, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 228, + "fields": { + "created_at": "2024-05-24T04:03:09.121Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 59, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 229, + "fields": { + "created_at": "2024-05-24T04:03:09.366Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 64, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 230, + "fields": { + "created_at": "2024-05-24T04:03:09.597Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 12, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 231, + "fields": { + "created_at": "2024-05-24T04:03:09.838Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 74, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 232, + "fields": { + "created_at": "2024-05-24T04:03:10.111Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 3, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 233, + "fields": { + "created_at": "2024-05-24T04:03:10.387Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 36, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 234, + "fields": { + "created_at": "2024-05-24T04:03:10.614Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 56, + "attendance_date": "2024-04-01", + "shift_id": 3, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 235, + "fields": { + "created_at": "2024-05-24T04:03:10.865Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 16, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 236, + "fields": { + "created_at": "2024-05-24T04:03:11.081Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 2, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 237, + "fields": { + "created_at": "2024-05-24T04:03:11.295Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 33, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 238, + "fields": { + "created_at": "2024-05-24T04:03:11.477Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 9, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 239, + "fields": { + "created_at": "2024-05-24T04:03:11.737Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "attendance_date": "2024-04-01", + "shift_id": 3, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 240, + "fields": { + "created_at": "2024-05-24T04:03:12.079Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 18, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 241, + "fields": { + "created_at": "2024-05-24T04:03:12.288Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 76, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 242, + "fields": { + "created_at": "2024-05-24T04:03:12.455Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 14, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 243, + "fields": { + "created_at": "2024-05-24T04:03:12.705Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 6, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 244, + "fields": { + "created_at": "2024-05-24T04:03:12.986Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 62, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 245, + "fields": { + "created_at": "2024-05-24T04:03:13.243Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 44, + "attendance_date": "2024-05-14", + "shift_id": 3, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 246, + "fields": { + "created_at": "2024-05-24T04:03:13.445Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 32, + "attendance_date": "2024-05-15", + "shift_id": 2, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 247, + "fields": { + "created_at": "2024-05-24T04:03:13.694Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 52, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 248, + "fields": { + "created_at": "2024-05-24T04:03:13.923Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 67, + "attendance_date": "2024-05-21", + "shift_id": 2, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 249, + "fields": { + "created_at": "2024-05-24T04:03:14.190Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 8, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 250, + "fields": { + "created_at": "2024-05-24T04:03:14.448Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 69, + "attendance_date": "2024-05-15", + "shift_id": 3, + "work_type_id": 2, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 251, + "fields": { + "created_at": "2024-05-24T04:03:14.727Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 54, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 252, + "fields": { + "created_at": "2024-05-24T04:03:14.974Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 24, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 253, + "fields": { + "created_at": "2024-05-24T04:03:15.458Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 75, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 254, + "fields": { + "created_at": "2024-05-24T04:03:15.798Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 17, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 255, + "fields": { + "created_at": "2024-05-24T04:03:16.100Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 58, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 256, + "fields": { + "created_at": "2024-05-24T04:03:16.366Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 34, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 257, + "fields": { + "created_at": "2024-05-24T04:03:16.607Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 72, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 258, + "fields": { + "created_at": "2024-05-24T04:03:16.859Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 32, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 259, + "fields": { + "created_at": "2024-05-24T04:03:17.091Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 44, + "attendance_date": "2024-05-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 260, + "fields": { + "created_at": "2024-05-24T04:03:17.357Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 42, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 261, + "fields": { + "created_at": "2024-05-24T04:03:17.586Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 68, + "attendance_date": "2024-05-21", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 262, + "fields": { + "created_at": "2024-05-24T04:03:17.807Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 29, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 263, + "fields": { + "created_at": "2024-05-24T04:03:18.011Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 20, + "attendance_date": "2024-05-14", + "shift_id": 3, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 264, + "fields": { + "created_at": "2024-05-24T04:03:18.228Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "attendance_date": "2024-05-15", + "shift_id": 3, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 265, + "fields": { + "created_at": "2024-05-24T04:03:18.443Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 35, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 266, + "fields": { + "created_at": "2024-05-24T04:03:18.658Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 70, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 267, + "fields": { + "created_at": "2024-05-24T04:03:18.961Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 27, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 268, + "fields": { + "created_at": "2024-05-24T04:03:19.374Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 65, + "attendance_date": "2024-05-21", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 269, + "fields": { + "created_at": "2024-05-24T04:03:19.640Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 30, + "attendance_date": "2024-04-01", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 270, + "fields": { + "created_at": "2024-05-24T04:03:19.860Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "attendance_date": "2024-05-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 271, + "fields": { + "created_at": "2024-05-24T04:03:20.132Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 29, + "attendance_date": "2024-05-15", + "shift_id": 3, + "work_type_id": 1, + "attendance_day": 3, + "attendance_clock_in_date": "2024-05-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 272, + "fields": { + "created_at": "2024-05-24T04:03:20.373Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 5, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 273, + "fields": { + "created_at": "2024-05-24T04:03:20.580Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 274, + "fields": { + "created_at": "2024-05-24T04:03:20.788Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 53, + "attendance_date": "2024-04-01", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 275, + "fields": { + "created_at": "2024-05-24T04:03:21.021Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 66, + "attendance_date": "2024-05-14", + "shift_id": 3, + "work_type_id": 1, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 276, + "fields": { + "created_at": "2024-05-24T04:03:21.290Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 21, + "attendance_date": "2024-05-13", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-05-13", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-13", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 277, + "fields": { + "created_at": "2024-05-24T04:03:21.548Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "attendance_date": "2024-05-21", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-21", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-21", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "08:15", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": true, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 278, + "fields": { + "created_at": "2024-05-24T04:03:21.871Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 15, + "attendance_date": "2024-04-01", + "shift_id": 2, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-01", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-01", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "08:15", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 279, + "fields": { + "created_at": "2024-05-24T04:03:22.121Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "attendance_date": "2024-04-14", + "shift_id": 3, + "work_type_id": 2, + "attendance_day": 7, + "attendance_clock_in_date": "2024-04-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-14", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "00:00", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 280, + "fields": { + "created_at": "2024-05-24T04:03:22.307Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 36, + "attendance_date": "2024-04-15", + "shift_id": 3, + "work_type_id": 1, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-15", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "08:15", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 281, + "fields": { + "created_at": "2024-05-24T04:03:22.595Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 35, + "attendance_date": "2024-04-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 7, + "attendance_clock_in_date": "2024-04-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-14", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "00:00", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 282, + "fields": { + "created_at": "2024-05-24T04:03:22.934Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 31, + "attendance_date": "2024-04-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 7, + "attendance_clock_in_date": "2024-04-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-14", + "attendance_clock_out": "18:00:00", + "attendance_worked_hour": "08:45", + "minimum_hour": "00:00", + "attendance_overtime": "00:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 31500, + "overtime_second": 1800, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 283, + "fields": { + "created_at": "2024-05-24T04:03:23.280Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 38, + "attendance_date": "2024-04-14", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 7, + "attendance_clock_in_date": "2024-04-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-14", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "00:00", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 284, + "fields": { + "created_at": "2024-05-24T04:03:23.555Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 65, + "attendance_date": "2024-04-14", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 7, + "attendance_clock_in_date": "2024-04-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-14", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "00:00", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 285, + "fields": { + "created_at": "2024-05-24T04:03:23.827Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "attendance_date": "2024-04-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 1, + "attendance_clock_in_date": "2024-04-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-15", + "attendance_clock_out": "19:00:00", + "attendance_worked_hour": "10:15", + "minimum_hour": "08:15", + "attendance_overtime": "02:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 36900, + "overtime_second": 7200, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 286, + "fields": { + "created_at": "2024-05-24T04:03:24.111Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 5, + "attendance_date": "2024-04-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 7, + "attendance_clock_in_date": "2024-04-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-14", + "attendance_clock_out": "17:30:00", + "attendance_worked_hour": "08:15", + "minimum_hour": "00:00", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 29700, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 287, + "fields": { + "created_at": "2024-05-24T04:03:24.474Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 69, + "attendance_date": "2024-04-14", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 7, + "attendance_clock_in_date": "2024-04-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-14", + "attendance_clock_out": "19:30:00", + "attendance_worked_hour": "10:45", + "minimum_hour": "00:00", + "attendance_overtime": "02:30", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 38700, + "overtime_second": 9000, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 288, + "fields": { + "created_at": "2024-05-24T04:03:24.767Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "attendance_date": "2024-04-14", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 7, + "attendance_clock_in_date": "2024-04-14", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-04-14", + "attendance_clock_out": "18:30:00", + "attendance_worked_hour": "09:15", + "minimum_hour": "00:00", + "attendance_overtime": "01:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 33300, + "overtime_second": 3600, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 289, + "fields": { + "created_at": "2024-05-24T04:03:25.090Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 5, + "attendance_date": "2024-03-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 5, + "attendance_clock_in_date": "2024-03-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-03-15", + "attendance_clock_out": "15:00:00", + "attendance_worked_hour": "07:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 27000, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 290, + "fields": { + "created_at": "2024-05-24T04:03:25.323Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "attendance_date": "2024-03-15", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 5, + "attendance_clock_in_date": "2024-03-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-03-15", + "attendance_clock_out": "15:00:00", + "attendance_worked_hour": "07:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 27000, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 291, + "fields": { + "created_at": "2024-05-24T04:03:25.549Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 39, + "attendance_date": "2024-03-15", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 5, + "attendance_clock_in_date": "2024-03-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-03-15", + "attendance_clock_out": "15:00:00", + "attendance_worked_hour": "07:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 27000, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 292, + "fields": { + "created_at": "2024-05-24T04:03:25.950Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 7, + "attendance_date": "2024-03-15", + "shift_id": 3, + "work_type_id": 1, + "attendance_day": 5, + "attendance_clock_in_date": "2024-03-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-03-15", + "attendance_clock_out": "15:00:00", + "attendance_worked_hour": "07:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 27000, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 293, + "fields": { + "created_at": "2024-05-24T04:03:26.261Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 17, + "attendance_date": "2024-03-15", + "shift_id": 2, + "work_type_id": 2, + "attendance_day": 5, + "attendance_clock_in_date": "2024-03-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-03-15", + "attendance_clock_out": "15:00:00", + "attendance_worked_hour": "07:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 27000, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 294, + "fields": { + "created_at": "2024-05-24T04:03:26.501Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 21, + "attendance_date": "2024-03-15", + "shift_id": 1, + "work_type_id": 1, + "attendance_day": 5, + "attendance_clock_in_date": "2024-03-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-03-15", + "attendance_clock_out": "15:00:00", + "attendance_worked_hour": "07:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 27000, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 295, + "fields": { + "created_at": "2024-05-24T04:03:26.802Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "attendance_date": "2024-03-15", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 5, + "attendance_clock_in_date": "2024-03-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-03-15", + "attendance_clock_out": "15:00:00", + "attendance_worked_hour": "07:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 27000, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 296, + "fields": { + "created_at": "2024-05-24T04:03:27.028Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 2, + "attendance_date": "2024-03-15", + "shift_id": 2, + "work_type_id": 1, + "attendance_day": 5, + "attendance_clock_in_date": "2024-03-15", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-03-15", + "attendance_clock_out": "15:00:00", + "attendance_worked_hour": "07:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 27000, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 297, + "fields": { + "created_at": "2024-05-24T04:12:52.800Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 75, + "attendance_date": "2024-05-03", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 5, + "attendance_clock_in_date": "2024-05-03", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-03", + "attendance_clock_out": "17:41:00", + "attendance_worked_hour": "08:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:15", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 30600, + "overtime_second": 900, + "approved_overtime_second": 0, + "is_validate_request": true, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": "ksk", + "request_type": "create_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 298, + "fields": { + "created_at": "2024-05-24T04:14:09.931Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 20, + "attendance_date": "2024-05-07", + "shift_id": 1, + "work_type_id": 2, + "attendance_day": 2, + "attendance_clock_in_date": "2024-05-07", + "attendance_clock_in": "08:30:00", + "attendance_clock_out_date": "2024-05-07", + "attendance_clock_out": "17:47:00", + "attendance_worked_hour": "08:30", + "minimum_hour": "08:15", + "attendance_overtime": "00:15", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 30600, + "overtime_second": 900, + "approved_overtime_second": 0, + "is_validate_request": true, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": "njn", + "request_type": "create_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 299, + "fields": { + "created_at": "2024-05-24T04:18:24.120Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "attendance_date": "2024-05-24", + "shift_id": 1, + "work_type_id": null, + "attendance_day": 5, + "attendance_clock_in_date": "2024-05-24", + "attendance_clock_in": "09:48:00", + "attendance_clock_out_date": "2024-05-27", + "attendance_clock_out": "08:34:00", + "attendance_worked_hour": "70:46", + "minimum_hour": "08:15", + "attendance_overtime": "04:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 254760, + "overtime_second": 14400, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 300, + "fields": { + "created_at": "2024-08-21T10:18:08.102Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "attendance_date": "2024-08-21", + "shift_id": 1, + "work_type_id": null, + "attendance_day": 3, + "attendance_clock_in_date": "2024-08-21", + "attendance_clock_in": "15:48:00", + "attendance_clock_out_date": "2024-08-26", + "attendance_clock_out": "15:10:00", + "attendance_worked_hour": "119:22", + "minimum_hour": "08:15", + "attendance_overtime": "04:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 429720, + "overtime_second": 14400, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendance", + "pk": 301, + "fields": { + "created_at": "2024-08-26T09:40:17.706Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "attendance_date": "2024-08-26", + "shift_id": 1, + "work_type_id": null, + "attendance_day": 1, + "attendance_clock_in_date": "2024-08-26", + "attendance_clock_in": "15:10:00", + "attendance_clock_out_date": null, + "attendance_clock_out": null, + "attendance_worked_hour": "00:00", + "minimum_hour": "08:15", + "attendance_overtime": "00:00", + "attendance_overtime_approve": false, + "attendance_validated": false, + "at_work_second": 0, + "overtime_second": 0, + "approved_overtime_second": 0, + "is_validate_request": false, + "is_bulk_request": false, + "is_validate_request_approved": false, + "request_description": null, + "request_type": "update_request", + "is_holiday": false, + "requested_data": null + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:43:57.300Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 2, + "fields": { + "created_at": "2024-05-24T03:45:38.410Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 50, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 3, + "fields": { + "created_at": "2024-05-24T03:45:38.628Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 48, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 4, + "fields": { + "created_at": "2024-05-24T03:45:38.751Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 55, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 5, + "fields": { + "created_at": "2024-05-24T03:45:39.017Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 7, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 6, + "fields": { + "created_at": "2024-05-24T03:45:39.235Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 15, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 7, + "fields": { + "created_at": "2024-05-24T03:45:39.506Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 43, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 8, + "fields": { + "created_at": "2024-05-24T03:45:39.771Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 51, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 9, + "fields": { + "created_at": "2024-05-24T03:45:40.025Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 19, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 10, + "fields": { + "created_at": "2024-05-24T03:45:40.247Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 4, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 11, + "fields": { + "created_at": "2024-05-24T03:45:40.470Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 40, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 12, + "fields": { + "created_at": "2024-05-24T03:45:40.687Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 53, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 13, + "fields": { + "created_at": "2024-05-24T03:45:40.979Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 25, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 14, + "fields": { + "created_at": "2024-05-24T03:45:41.207Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 39, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 15, + "fields": { + "created_at": "2024-05-24T03:45:41.459Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 28, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 16, + "fields": { + "created_at": "2024-05-24T03:45:41.679Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 60, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 17, + "fields": { + "created_at": "2024-05-24T03:45:41.974Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 37, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 18, + "fields": { + "created_at": "2024-05-24T03:45:42.217Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 73, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 19, + "fields": { + "created_at": "2024-05-24T03:45:42.478Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 20, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 20, + "fields": { + "created_at": "2024-05-24T03:45:42.704Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 26, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 21, + "fields": { + "created_at": "2024-05-24T03:45:42.929Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 38, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 22, + "fields": { + "created_at": "2024-05-24T03:45:43.131Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 71, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 23, + "fields": { + "created_at": "2024-05-24T03:45:43.359Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 63, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 24, + "fields": { + "created_at": "2024-05-24T03:45:43.561Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 41, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 25, + "fields": { + "created_at": "2024-05-24T03:45:43.768Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 56, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 26, + "fields": { + "created_at": "2024-05-24T03:45:43.992Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 59, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 27, + "fields": { + "created_at": "2024-05-24T03:45:44.250Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 11, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 28, + "fields": { + "created_at": "2024-05-24T03:45:44.500Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 22, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 29, + "fields": { + "created_at": "2024-05-24T03:45:44.714Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 57, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 30, + "fields": { + "created_at": "2024-05-24T03:45:44.962Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 23, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 31, + "fields": { + "created_at": "2024-05-24T03:45:45.177Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 47, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 32, + "fields": { + "created_at": "2024-05-24T03:45:45.755Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 64, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 33, + "fields": { + "created_at": "2024-05-24T03:45:45.982Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 12, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 34, + "fields": { + "created_at": "2024-05-24T03:45:46.294Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 74, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 35, + "fields": { + "created_at": "2024-05-24T03:45:46.480Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 3, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 36, + "fields": { + "created_at": "2024-05-24T03:45:46.688Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 36, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 37, + "fields": { + "created_at": "2024-05-24T03:45:46.946Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 16, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 38, + "fields": { + "created_at": "2024-05-24T03:45:47.163Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 2, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 39, + "fields": { + "created_at": "2024-05-24T03:45:47.392Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 33, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 40, + "fields": { + "created_at": "2024-05-24T03:45:47.564Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 9, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 41, + "fields": { + "created_at": "2024-05-24T03:45:47.821Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 18, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 42, + "fields": { + "created_at": "2024-05-24T03:45:48.071Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 76, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 43, + "fields": { + "created_at": "2024-05-24T03:45:48.286Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 14, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 44, + "fields": { + "created_at": "2024-05-24T03:45:48.509Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 6, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 45, + "fields": { + "created_at": "2024-05-24T03:45:48.700Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 62, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 46, + "fields": { + "created_at": "2024-05-24T03:45:48.963Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 52, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 47, + "fields": { + "created_at": "2024-05-24T03:45:49.292Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 8, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 48, + "fields": { + "created_at": "2024-05-24T03:45:49.514Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 54, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 49, + "fields": { + "created_at": "2024-05-24T03:45:49.728Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 24, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 50, + "fields": { + "created_at": "2024-05-24T03:45:49.925Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 75, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 51, + "fields": { + "created_at": "2024-05-24T03:45:50.137Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 17, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 52, + "fields": { + "created_at": "2024-05-24T03:45:50.412Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 58, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "16:30", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 59400, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 53, + "fields": { + "created_at": "2024-05-24T03:45:50.660Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 34, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 54, + "fields": { + "created_at": "2024-05-24T03:45:50.871Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 72, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 55, + "fields": { + "created_at": "2024-05-24T03:45:51.094Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 32, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 56, + "fields": { + "created_at": "2024-05-24T03:45:51.333Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 44, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 57, + "fields": { + "created_at": "2024-05-24T03:45:51.554Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 42, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 58, + "fields": { + "created_at": "2024-05-24T03:45:51.967Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 29, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 59, + "fields": { + "created_at": "2024-05-24T03:45:52.300Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 35, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 60, + "fields": { + "created_at": "2024-05-24T03:45:52.539Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 70, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 61, + "fields": { + "created_at": "2024-05-24T03:45:52.764Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 31, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 62, + "fields": { + "created_at": "2024-05-24T03:45:53.008Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 27, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 63, + "fields": { + "created_at": "2024-05-24T03:45:53.342Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 30, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 64, + "fields": { + "created_at": "2024-05-24T03:45:53.545Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 65, + "fields": { + "created_at": "2024-05-24T03:45:53.805Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 5, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 66, + "fields": { + "created_at": "2024-05-24T03:45:54.041Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 67, + "fields": { + "created_at": "2024-05-24T03:45:54.299Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 21, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 68, + "fields": { + "created_at": "2024-05-24T03:45:54.530Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 69, + "fields": { + "created_at": "2024-05-24T03:45:54.800Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 35, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 70, + "fields": { + "created_at": "2024-05-24T03:45:55.396Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 71, + "fields": { + "created_at": "2024-05-24T03:45:55.727Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 5, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 72, + "fields": { + "created_at": "2024-05-24T03:45:56.210Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 73, + "fields": { + "created_at": "2024-05-24T03:45:56.543Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 5, + "month": "march", + "month_sequence": 2, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 74, + "fields": { + "created_at": "2024-05-24T03:45:56.801Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "month": "march", + "month_sequence": 2, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 75, + "fields": { + "created_at": "2024-05-24T03:45:57.175Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 21, + "month": "march", + "month_sequence": 2, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 76, + "fields": { + "created_at": "2024-05-24T03:45:57.541Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "month": "march", + "month_sequence": 2, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 77, + "fields": { + "created_at": "2024-05-24T03:58:28.482Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 9, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 78, + "fields": { + "created_at": "2024-05-24T03:58:30.599Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 29, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 79, + "fields": { + "created_at": "2024-05-24T03:58:34.327Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 25, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 80, + "fields": { + "created_at": "2024-05-24T03:58:35.113Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 66, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 81, + "fields": { + "created_at": "2024-05-24T03:58:40.146Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 56, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 82, + "fields": { + "created_at": "2024-05-24T03:58:43.070Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 32, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 83, + "fields": { + "created_at": "2024-05-24T03:58:43.588Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 67, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 84, + "fields": { + "created_at": "2024-05-24T03:58:44.084Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 69, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 85, + "fields": { + "created_at": "2024-05-24T03:58:46.948Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 68, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 86, + "fields": { + "created_at": "2024-05-24T03:58:48.649Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 65, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "08:15", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 29700, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 87, + "fields": { + "created_at": "2024-05-24T03:58:50.196Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 53, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 88, + "fields": { + "created_at": "2024-05-24T03:58:50.436Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 66, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 89, + "fields": { + "created_at": "2024-05-24T03:58:51.179Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 15, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 90, + "fields": { + "created_at": "2024-05-24T03:58:51.428Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 91, + "fields": { + "created_at": "2024-05-24T03:58:51.710Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 36, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 92, + "fields": { + "created_at": "2024-05-24T03:58:52.590Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 38, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 93, + "fields": { + "created_at": "2024-05-24T03:58:52.931Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 65, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 94, + "fields": { + "created_at": "2024-05-24T03:58:53.832Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 69, + "month": "april", + "month_sequence": 3, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 95, + "fields": { + "created_at": "2024-05-24T03:58:54.921Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 39, + "month": "march", + "month_sequence": 2, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 96, + "fields": { + "created_at": "2024-05-24T03:58:55.183Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 7, + "month": "march", + "month_sequence": 2, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 97, + "fields": { + "created_at": "2024-05-24T03:58:55.445Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 17, + "month": "march", + "month_sequence": 2, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 98, + "fields": { + "created_at": "2024-05-24T03:58:56.432Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 2, + "month": "march", + "month_sequence": 2, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 99, + "fields": { + "created_at": "2024-05-24T04:12:52.873Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 75, + "month": "may", + "month_sequence": 4, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendanceovertime", + "pk": 100, + "fields": { + "created_at": "2024-08-21T10:18:08.462Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "month": "august", + "month_sequence": 7, + "year": "2024", + "worked_hours": "00:00", + "pending_hours": "00:00", + "overtime": "00:00", + "hour_account_second": 0, + "hour_pending_second": 0, + "overtime_second": 0 + } + }, + { + "model": "attendance.attendancelatecomeearlyout", + "pk": 1, + "fields": { + "created_by": 1, + "modified_by": 1, + "is_active": true, + "attendance_id": 1, + "employee_id": 1, + "type": "late_come", + "created_at": "2024-05-22T08:43:57.412Z" + } + }, + { + "model": "attendance.attendancelatecomeearlyout", + "pk": 2, + "fields": { + "created_by": 1, + "modified_by": 1, + "is_active": true, + "attendance_id": 299, + "employee_id": 1, + "type": "late_come", + "created_at": "2024-05-24T04:18:24.245Z" + } + }, + { + "model": "attendance.attendancelatecomeearlyout", + "pk": 4, + "fields": { + "created_by": 1, + "modified_by": 1, + "is_active": true, + "attendance_id": 300, + "employee_id": 1, + "type": "late_come", + "created_at": "2024-08-21T10:18:08.710Z" + } + }, + { + "model": "attendance.attendancelatecomeearlyout", + "pk": 5, + "fields": { + "created_by": 1, + "modified_by": 1, + "is_active": true, + "attendance_id": 300, + "employee_id": 1, + "type": "early_out", + "created_at": "2024-08-26T09:40:15.608Z" + } + }, + { + "model": "attendance.attendancelatecomeearlyout", + "pk": 6, + "fields": { + "created_by": 1, + "modified_by": 1, + "is_active": true, + "attendance_id": 301, + "employee_id": 1, + "type": "late_come", + "created_at": "2024-08-26T09:40:18.339Z" + } + }, + { + "model": "attendance.attendancevalidationcondition", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:34:03.318Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "validation_at_work": "12:00", + "minimum_overtime_to_approve": "00:30", + "overtime_cutoff": "04:00", + "company_id": [] + } + }, + { + "model": "attendance.gracetime", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:34:40.921Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "allowed_time": "00:05:00", + "allowed_time_in_secs": 300, + "allowed_clock_in": true, + "allowed_clock_out": false, + "is_default": false, + "company_id": [] + } + }, + { + "model": "attendance.gracetime", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:34:47.746Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "allowed_time": "00:10:00", + "allowed_time_in_secs": 600, + "allowed_clock_in": true, + "allowed_clock_out": false, + "is_default": false, + "company_id": [] + } + }, + { + "model": "attendance.gracetime", + "pk": 3, + "fields": { + "created_at": "2024-05-22T08:34:56.149Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "allowed_time": "00:15:00", + "allowed_time_in_secs": 900, + "allowed_clock_in": true, + "allowed_clock_out": false, + "is_default": false, + "company_id": [] + } + }, + { + "model": "attendance.attendancegeneralsetting", + "pk": 1, + "fields": { + "created_at": "2024-05-24T04:16:15.566Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "time_runner": true, + "company_id": null + } + }, + { + "model": "attendance.workrecords", + "pk": 1, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 1, + "date": "2024-05-22", + "at_work": "18:27", + "min_hour": "08:15", + "at_work_second": 66420, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.072Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 188, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 50, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.100Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 189, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 9, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.120Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 190, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 48, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.137Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 191, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 55, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.157Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 192, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 7, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.177Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 193, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 15, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.195Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 194, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 31, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.213Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 195, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 6, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.233Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 196, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 43, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.252Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 197, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 29, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.272Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 198, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 51, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.288Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 199, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 19, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.306Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 200, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 4, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.325Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 201, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 40, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.349Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 202, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 53, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.370Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 203, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 40, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.393Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 204, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 25, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.414Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 205, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 39, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.433Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 206, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 28, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.454Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 207, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 60, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.469Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 208, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 58, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.494Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 209, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 37, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.516Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 210, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 73, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.534Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 211, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 25, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.552Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 212, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 20, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.572Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 213, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 7, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.588Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 214, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 66, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.614Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 215, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 26, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.632Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 216, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 38, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.648Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 217, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 71, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.670Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 218, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 63, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.688Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 219, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 41, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.707Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 220, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 56, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.730Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 221, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 59, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.751Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 222, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 15, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.766Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 223, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 11, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.789Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 224, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 22, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.844Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 225, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 57, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.860Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 226, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 23, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.882Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 227, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 47, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.910Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 228, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 59, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:14.941Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 229, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 64, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.974Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 230, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 12, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:14.997Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 231, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 74, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.021Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 232, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 3, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.042Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 233, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 36, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.067Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 234, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 56, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.086Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 235, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 16, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.107Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 236, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 2, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.132Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 237, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 33, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.152Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 238, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 9, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.172Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 239, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 13, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.195Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 240, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 18, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.214Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 241, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 76, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.239Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 242, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 14, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.264Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 243, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 6, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.287Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 244, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 62, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.305Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 245, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 44, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.331Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 246, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 32, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.357Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 247, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 52, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.377Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 248, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 67, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.399Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 249, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 8, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.423Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 250, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 69, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.457Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 251, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 54, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.482Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 252, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 24, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.513Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 253, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 75, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.540Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 254, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 17, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.564Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 255, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 58, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.584Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 256, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 34, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.609Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 257, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 72, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.624Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 258, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 32, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.643Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 259, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 44, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.666Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 260, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 42, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.688Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 261, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 68, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.706Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 262, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 29, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.725Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 263, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 20, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.748Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 264, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 46, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.763Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 265, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 35, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.786Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 266, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 70, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.807Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 267, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 27, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.832Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 268, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 65, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.852Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 269, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 30, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.878Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 270, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 13, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.899Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 271, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 29, + "date": "2024-05-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.927Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 272, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 5, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:15.958Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 273, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 10, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:15.982Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 274, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 53, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.001Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 275, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 66, + "date": "2024-05-14", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.017Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 276, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 21, + "date": "2024-05-13", + "at_work": "08:15", + "min_hour": "08:15", + "at_work_second": 29700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.050Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 277, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 46, + "date": "2024-05-21", + "at_work": "09:15", + "min_hour": "08:15", + "at_work_second": 33300, + "min_hour_second": 29700, + "note": "", + "message": "Present", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 1.0, + "last_update": "2024-08-05T09:39:16.067Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 278, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 15, + "date": "2024-04-01", + "at_work": "08:45", + "min_hour": "08:15", + "at_work_second": 31500, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.090Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 279, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 10, + "date": "2024-04-14", + "at_work": "10:15", + "min_hour": "00:00", + "at_work_second": 36900, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.106Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 280, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 36, + "date": "2024-04-15", + "at_work": "10:45", + "min_hour": "08:15", + "at_work_second": 38700, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.128Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 281, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 35, + "date": "2024-04-14", + "at_work": "08:15", + "min_hour": "00:00", + "at_work_second": 29700, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.147Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 282, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 31, + "date": "2024-04-14", + "at_work": "08:45", + "min_hour": "00:00", + "at_work_second": 31500, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.168Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 283, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 38, + "date": "2024-04-14", + "at_work": "10:45", + "min_hour": "00:00", + "at_work_second": 38700, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.201Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 284, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 65, + "date": "2024-04-14", + "at_work": "09:15", + "min_hour": "00:00", + "at_work_second": 33300, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.230Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 285, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 13, + "date": "2024-04-14", + "at_work": "10:15", + "min_hour": "00:00", + "at_work_second": 36900, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.248Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 286, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 5, + "date": "2024-04-14", + "at_work": "08:15", + "min_hour": "00:00", + "at_work_second": 29700, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.273Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 287, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 69, + "date": "2024-04-14", + "at_work": "10:45", + "min_hour": "00:00", + "at_work_second": 38700, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.297Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 288, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 46, + "date": "2024-04-14", + "at_work": "09:15", + "min_hour": "00:00", + "at_work_second": 33300, + "min_hour_second": 0, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.324Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 289, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 5, + "date": "2024-03-15", + "at_work": "07:30", + "min_hour": "08:15", + "at_work_second": 27000, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.335Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 290, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 10, + "date": "2024-03-15", + "at_work": "07:30", + "min_hour": "08:15", + "at_work_second": 27000, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.366Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 291, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 39, + "date": "2024-03-15", + "at_work": "07:30", + "min_hour": "08:15", + "at_work_second": 27000, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.384Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 292, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 7, + "date": "2024-03-15", + "at_work": "07:30", + "min_hour": "08:15", + "at_work_second": 27000, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.404Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 293, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 17, + "date": "2024-03-15", + "at_work": "07:30", + "min_hour": "08:15", + "at_work_second": 27000, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.424Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 294, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 21, + "date": "2024-03-15", + "at_work": "07:30", + "min_hour": "08:15", + "at_work_second": 27000, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.447Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 295, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 46, + "date": "2024-03-15", + "at_work": "07:30", + "min_hour": "08:15", + "at_work_second": 27000, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.472Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 296, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 2, + "date": "2024-03-15", + "at_work": "07:30", + "min_hour": "08:15", + "at_work_second": 27000, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.493Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 297, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 13, + "date": "2024-04-15", + "at_work": "10:15", + "min_hour": "08:15", + "at_work_second": 36900, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.513Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 298, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 75, + "date": "2024-05-03", + "at_work": "08:30", + "min_hour": "08:15", + "at_work_second": 30600, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.535Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 299, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 20, + "date": "2024-05-07", + "at_work": "08:30", + "min_hour": "08:15", + "at_work_second": 30600, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-05T09:39:16.557Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 300, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 1, + "date": "2024-05-24", + "at_work": "70:46", + "min_hour": "08:15", + "at_work_second": 254760, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.5, + "last_update": "2024-08-05T09:39:16.579Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 301, + "fields": { + "record_name": null, + "work_record_type": "CONF", + "employee_id": 1, + "date": "2024-08-21", + "at_work": "119:22", + "min_hour": "08:15", + "at_work_second": 429720, + "min_hour_second": 29700, + "note": "", + "message": "Validate the attendance", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-26T09:40:14.910Z" + } + }, + { + "model": "attendance.workrecords", + "pk": 302, + "fields": { + "record_name": null, + "work_record_type": "FDP", + "employee_id": 1, + "date": "2024-08-26", + "at_work": "00:00", + "min_hour": "08:15", + "at_work_second": 0, + "min_hour_second": 29700, + "note": "", + "message": "Currently working", + "is_attendance_record": true, + "is_leave_record": false, + "day_percentage": 0.0, + "last_update": "2024-08-26T09:40:17.864Z" + } + } +] diff --git a/load_data/base_data.json b/load_data/base_data.json new file mode 100644 index 000000000..3872b540c --- /dev/null +++ b/load_data/base_data.json @@ -0,0 +1,2737 @@ +[ + { + "model": "base.company", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:21:11.031Z", + "created_by": 1, + "modified_by": 1, + "is_active": false, + "company": "Horilla", + "hq": true, + "address": "ABCD street", + "country": "USA", + "state": "Nevada", + "city": "las vegas", + "zip": "89036", + "icon": "base/icon/Horilla_2.png", + "date_format": null, + "time_format": null + } + }, + { + "model": "base.company", + "pk": 2, + "fields": { + "created_at": "2024-09-16T05:03:00.993Z", + "created_by": 1, + "modified_by": 1, + "is_active": false, + "company": "Horilla Next Inc.", + "hq": false, + "address": "The Estate , 8th Floor", + "country": "India", + "state": "Karnataka", + "city": "Bangalore", + "zip": "560042", + "icon": "base/icon/Horilla_3.png", + "date_format": null, + "time_format": null + } + }, + { + "model": "base.company", + "pk": 3, + "fields": { + "created_at": "2024-09-16T05:04:50.728Z", + "created_by": 1, + "modified_by": 1, + "is_active": false, + "company": "Horilla Next Inc.", + "hq": false, + "address": "Alpha House", + "country": "United Kingdom", + "state": "City of London", + "city": "SE1 1LB", + "zip": "673589", + "icon": "base/icon/Horilla_1.png", + "date_format": null, + "time_format": null + } + }, + { + "model": "base.department", + "pk": 1, + "fields": { + "created_at": "2024-05-22T04:47:23.606Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "department": "S/W Dept", + "company_id": [] + } + }, + { + "model": "base.department", + "pk": 2, + "fields": { + "created_at": "2024-05-22T04:47:28.319Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "department": "Sales Dept", + "company_id": [] + } + }, + { + "model": "base.department", + "pk": 3, + "fields": { + "created_at": "2024-05-22T04:47:33.893Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "department": "Hr Dept", + "company_id": [] + } + }, + { + "model": "base.department", + "pk": 4, + "fields": { + "created_at": "2024-05-22T04:47:40.208Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "department": "Marketing Dept", + "company_id": [] + } + }, + { + "model": "base.department", + "pk": 5, + "fields": { + "created_at": "2024-05-22T04:47:42.609Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "department": "Finance Dept", + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 1, + "fields": { + "created_at": "2024-05-22T04:47:23.622Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Odoo Dev", + "department_id": 1, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 2, + "fields": { + "created_at": "2024-05-22T04:47:25.943Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Django Dev", + "department_id": 1, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 3, + "fields": { + "created_at": "2024-05-22T04:47:28.333Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Sales Man", + "department_id": 2, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 4, + "fields": { + "created_at": "2024-05-22T04:47:33.908Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Training and Development Coordinator", + "department_id": 3, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 5, + "fields": { + "created_at": "2024-05-22T04:47:34.486Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Compensation and Benefits Specialist", + "department_id": 3, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 6, + "fields": { + "created_at": "2024-05-22T04:47:35.070Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Recruiter", + "department_id": 3, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 7, + "fields": { + "created_at": "2024-05-22T04:47:40.222Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Marketing Specialist", + "department_id": 4, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 8, + "fields": { + "created_at": "2024-05-22T04:47:40.779Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Digital Marketing Specialist", + "department_id": 4, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 9, + "fields": { + "created_at": "2024-05-22T04:47:41.392Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Content Creator", + "department_id": 4, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 10, + "fields": { + "created_at": "2024-05-22T04:47:41.984Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Social Media Coordinator", + "department_id": 4, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 11, + "fields": { + "created_at": "2024-05-22T04:47:42.624Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Chief Financial Officer (CFO)", + "department_id": 5, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 12, + "fields": { + "created_at": "2024-05-22T04:47:43.202Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Financial Analyst", + "department_id": 5, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 13, + "fields": { + "created_at": "2024-05-22T04:47:46.093Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Accounts Payable Clerk", + "department_id": 5, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 14, + "fields": { + "created_at": "2024-05-22T04:47:47.486Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Tax Accountant", + "department_id": 5, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 15, + "fields": { + "created_at": "2024-05-22T04:47:49.834Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "System Admin", + "department_id": 1, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 16, + "fields": { + "created_at": "2024-05-22T04:47:50.983Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "React Dev", + "department_id": 1, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 17, + "fields": { + "created_at": "2024-05-22T04:47:58.482Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Flutter Dev", + "department_id": 1, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 18, + "fields": { + "created_at": "2024-09-16T04:50:47.287Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Sales Representative", + "department_id": 2, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 19, + "fields": { + "created_at": "2024-09-16T04:51:09.169Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Sales Manage", + "department_id": 2, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 20, + "fields": { + "created_at": "2024-09-16T04:51:35.632Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Business Development Manager", + "department_id": 2, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 21, + "fields": { + "created_at": "2024-09-16T04:52:08.734Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "Field Sales Executive", + "department_id": 2, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 22, + "fields": { + "created_at": "2024-09-16T04:53:52.535Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "HR Manager", + "department_id": 3, + "company_id": [] + } + }, + { + "model": "base.jobposition", + "pk": 23, + "fields": { + "created_at": "2024-09-16T04:54:44.109Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position": "HR Business Partner", + "department_id": 3, + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 1, + "fields": { + "created_at": "2024-05-22T04:47:23.637Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 1, + "job_role": "Jnr Dev", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 2, + "fields": { + "created_at": "2024-05-22T04:47:25.955Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 2, + "job_role": "Jnr Dev", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 3, + "fields": { + "created_at": "2024-05-22T04:47:28.345Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 3, + "job_role": "Intern", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 4, + "fields": { + "created_at": "2024-05-22T04:47:31.671Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 3, + "job_role": "Sales Manager", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 5, + "fields": { + "created_at": "2024-05-22T04:47:32.226Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 3, + "job_role": "Trainer", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 6, + "fields": { + "created_at": "2024-05-22T04:47:33.920Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 4, + "job_role": "Hr Manager", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 7, + "fields": { + "created_at": "2024-05-22T04:47:34.501Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 5, + "job_role": "Jnr Manager", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 8, + "fields": { + "created_at": "2024-05-22T04:47:35.084Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 6, + "job_role": "Jnr Manager", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 9, + "fields": { + "created_at": "2024-05-22T04:47:36.825Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 6, + "job_role": "Hr Intern", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 10, + "fields": { + "created_at": "2024-05-22T04:47:37.423Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 5, + "job_role": "Hr Intern", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 11, + "fields": { + "created_at": "2024-05-22T04:47:40.235Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 7, + "job_role": "Marketing Manager", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 12, + "fields": { + "created_at": "2024-05-22T04:47:40.792Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 8, + "job_role": "Marketing Researcher", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 13, + "fields": { + "created_at": "2024-05-22T04:47:41.404Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 9, + "job_role": "Intern", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 14, + "fields": { + "created_at": "2024-05-22T04:47:41.996Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 10, + "job_role": "Intern", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 15, + "fields": { + "created_at": "2024-05-22T04:47:42.639Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 11, + "job_role": "Finance Manager", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 16, + "fields": { + "created_at": "2024-05-22T04:47:43.218Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 12, + "job_role": "Trainer", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 17, + "fields": { + "created_at": "2024-05-22T04:47:46.107Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 13, + "job_role": "Marketing Executive", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 18, + "fields": { + "created_at": "2024-05-22T04:47:47.516Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 14, + "job_role": "Marketing Executive", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 19, + "fields": { + "created_at": "2024-05-22T04:47:49.845Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 15, + "job_role": "System engineer", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 20, + "fields": { + "created_at": "2024-05-22T04:47:50.391Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 15, + "job_role": "Maintenance Head", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 21, + "fields": { + "created_at": "2024-05-22T04:47:50.997Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 16, + "job_role": "Intern", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 22, + "fields": { + "created_at": "2024-05-22T04:47:55.588Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 16, + "job_role": "Trainer", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 23, + "fields": { + "created_at": "2024-05-22T04:47:57.905Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 16, + "job_role": "Team Lead", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 24, + "fields": { + "created_at": "2024-05-22T04:47:58.494Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 17, + "job_role": "Team Lead", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 25, + "fields": { + "created_at": "2024-05-22T04:47:59.074Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 16, + "job_role": "Frontend Engineer", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 26, + "fields": { + "created_at": "2024-05-22T04:47:59.681Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 17, + "job_role": "Project Manager", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 27, + "fields": { + "created_at": "2024-05-22T04:48:00.400Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 16, + "job_role": "Senior Dev", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 28, + "fields": { + "created_at": "2024-05-22T04:48:01.233Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 17, + "job_role": "Senior Dev", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 29, + "fields": { + "created_at": "2024-05-22T04:52:53.339Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 15, + "job_role": "Intern", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 30, + "fields": { + "created_at": "2024-05-22T08:25:17.947Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 1, + "job_role": "Senior Dev", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 31, + "fields": { + "created_at": "2024-05-22T08:25:34.639Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 2, + "job_role": "Senior Dev", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 32, + "fields": { + "created_at": "2024-05-22T08:25:46.596Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 2, + "job_role": "intern", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 33, + "fields": { + "created_at": "2024-05-22T08:26:09.648Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 4, + "job_role": "trainer", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 34, + "fields": { + "created_at": "2024-09-16T04:56:45.891Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 18, + "job_role": "Senior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 35, + "fields": { + "created_at": "2024-09-16T04:56:45.903Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 19, + "job_role": "Senior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 36, + "fields": { + "created_at": "2024-09-16T04:56:45.913Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 20, + "job_role": "Senior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 37, + "fields": { + "created_at": "2024-09-16T04:56:45.925Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 21, + "job_role": "Senior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 38, + "fields": { + "created_at": "2024-09-16T04:56:45.934Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 22, + "job_role": "Senior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 39, + "fields": { + "created_at": "2024-09-16T04:56:45.945Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 23, + "job_role": "Senior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 40, + "fields": { + "created_at": "2024-09-16T04:57:46.629Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 18, + "job_role": "Junior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 41, + "fields": { + "created_at": "2024-09-16T04:57:46.641Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 19, + "job_role": "Junior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 42, + "fields": { + "created_at": "2024-09-16T04:57:46.650Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 20, + "job_role": "Junior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 43, + "fields": { + "created_at": "2024-09-16T04:57:46.659Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 21, + "job_role": "Junior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 44, + "fields": { + "created_at": "2024-09-16T04:57:46.670Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 22, + "job_role": "Junior", + "company_id": [] + } + }, + { + "model": "base.jobrole", + "pk": 45, + "fields": { + "created_at": "2024-09-16T04:57:46.679Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "job_position_id": 23, + "job_role": "Junior", + "company_id": [] + } + }, + { + "model": "base.worktype", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:28:42.978Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "work_type": "Work From Office", + "company_id": [] + } + }, + { + "model": "base.worktype", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:28:55.690Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "work_type": "Work From Home", + "company_id": [] + } + }, + { + "model": "base.worktype", + "pk": 3, + "fields": { + "created_at": "2024-05-22T08:29:04.529Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "work_type": "Hybrid", + "company_id": [] + } + }, + { + "model": "base.worktype", + "pk": 4, + "fields": { + "created_at": "2024-05-22T08:29:11.796Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "work_type": "Remote", + "company_id": [] + } + }, + { + "model": "base.rotatingworktype", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:29:31.860Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "WFH to WFO", + "work_type1": 2, + "work_type2": 1, + "additional_data": {} + } + }, + { + "model": "base.rotatingworktype", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:29:47.665Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "WFO to WFH", + "work_type1": 1, + "work_type2": 2, + "additional_data": {} + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 1, + "fields": { + "created_at": "2024-08-05T09:54:25.663Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 37, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 2, + "fields": { + "created_at": "2024-08-05T09:54:25.749Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 36, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 3, + "fields": { + "created_at": "2024-08-05T09:54:25.793Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 9, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 4, + "fields": { + "created_at": "2024-08-05T09:54:25.845Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 71, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 5, + "fields": { + "created_at": "2024-08-05T09:54:25.892Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 58, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 6, + "fields": { + "created_at": "2024-08-05T09:54:25.938Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 44, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 7, + "fields": { + "created_at": "2024-08-05T09:54:25.991Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 8, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 8, + "fields": { + "created_at": "2024-08-05T09:54:26.038Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 39, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 9, + "fields": { + "created_at": "2024-08-05T09:54:26.087Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 75, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 10, + "fields": { + "created_at": "2024-08-05T09:54:26.135Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 43, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 11, + "fields": { + "created_at": "2024-08-05T09:54:26.181Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 70, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 12, + "fields": { + "created_at": "2024-08-05T09:54:26.220Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 66, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 13, + "fields": { + "created_at": "2024-08-05T09:54:26.277Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 20, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 14, + "fields": { + "created_at": "2024-08-05T09:54:26.319Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 32, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 15, + "fields": { + "created_at": "2024-08-05T09:54:26.376Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 6, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 16, + "fields": { + "created_at": "2024-08-05T09:54:26.425Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 17, + "fields": { + "created_at": "2024-08-05T09:54:26.467Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 2, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 18, + "fields": { + "created_at": "2024-08-05T09:54:26.514Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 17, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.rotatingworktypeassign", + "pk": 19, + "fields": { + "created_at": "2024-08-05T09:54:26.554Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 42, + "rotating_work_type_id": 2, + "start_date": "2024-08-05", + "next_change_date": "2024-08-11", + "current_work_type": 1, + "next_work_type": 1, + "based_on": "after", + "rotate_after_day": 3, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1, "next_work_type_index": 1 } + } + }, + { + "model": "base.employeetype", + "pk": 1, + "fields": { + "created_at": "2024-05-22T04:47:23.670Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_type": "Permanent", + "company_id": [] + } + }, + { + "model": "base.employeetype", + "pk": 2, + "fields": { + "created_at": "2024-05-22T04:47:24.275Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_type": "Temporary", + "company_id": [] + } + }, + { + "model": "base.employeetype", + "pk": 3, + "fields": { + "created_at": "2024-05-22T04:47:24.846Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_type": "Trainee", + "company_id": [] + } + }, + { + "model": "base.employeeshiftday", + "pk": 1, + "fields": { "day": "monday", "company_id": [] } + }, + { + "model": "base.employeeshiftday", + "pk": 2, + "fields": { "day": "tuesday", "company_id": [] } + }, + { + "model": "base.employeeshiftday", + "pk": 3, + "fields": { "day": "wednesday", "company_id": [] } + }, + { + "model": "base.employeeshiftday", + "pk": 4, + "fields": { "day": "thursday", "company_id": [] } + }, + { + "model": "base.employeeshiftday", + "pk": 5, + "fields": { "day": "friday", "company_id": [] } + }, + { + "model": "base.employeeshiftday", + "pk": 6, + "fields": { "day": "saturday", "company_id": [] } + }, + { + "model": "base.employeeshiftday", + "pk": 7, + "fields": { "day": "sunday", "company_id": [] } + }, + { + "model": "base.employeeshift", + "pk": 1, + "fields": { + "created_at": "2024-05-22T04:47:23.654Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_shift": "Regular Shift", + "weekly_full_time": "40:00", + "full_time": "200:00", + "grace_time_id": null, + "company_id": [] + } + }, + { + "model": "base.employeeshift", + "pk": 2, + "fields": { + "created_at": "2024-05-22T04:48:00.417Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_shift": "Night Shift", + "weekly_full_time": "40:00", + "full_time": "200:00", + "grace_time_id": null, + "company_id": [] + } + }, + { + "model": "base.employeeshift", + "pk": 3, + "fields": { + "created_at": "2024-05-22T08:31:14.326Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_shift": "Morning Shift", + "weekly_full_time": "40:00", + "full_time": "200:00", + "grace_time_id": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:18:22.683Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 2, + "shift_id": 1, + "minimum_working_hour": "08:15", + "start_time": "08:30:00", + "end_time": "17:30:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:18:22.724Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 3, + "shift_id": 1, + "minimum_working_hour": "08:15", + "start_time": "08:30:00", + "end_time": "17:30:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 3, + "fields": { + "created_at": "2024-05-22T08:18:22.770Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 4, + "shift_id": 1, + "minimum_working_hour": "08:15", + "start_time": "08:30:00", + "end_time": "17:30:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 4, + "fields": { + "created_at": "2024-05-22T08:18:22.797Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 5, + "shift_id": 1, + "minimum_working_hour": "08:15", + "start_time": "08:30:00", + "end_time": "17:30:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 5, + "fields": { + "created_at": "2024-05-22T08:18:22.813Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 1, + "shift_id": 1, + "minimum_working_hour": "08:15", + "start_time": "08:30:00", + "end_time": "17:30:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 6, + "fields": { + "created_at": "2024-05-22T08:23:24.519Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 2, + "shift_id": 2, + "minimum_working_hour": "08:00", + "start_time": "13:00:00", + "end_time": "23:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 7, + "fields": { + "created_at": "2024-05-22T08:23:24.560Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 3, + "shift_id": 2, + "minimum_working_hour": "08:00", + "start_time": "13:00:00", + "end_time": "23:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 8, + "fields": { + "created_at": "2024-05-22T08:23:24.595Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 4, + "shift_id": 2, + "minimum_working_hour": "08:00", + "start_time": "13:00:00", + "end_time": "23:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 9, + "fields": { + "created_at": "2024-05-22T08:23:24.629Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 5, + "shift_id": 2, + "minimum_working_hour": "08:00", + "start_time": "13:00:00", + "end_time": "23:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 10, + "fields": { + "created_at": "2024-05-22T08:23:24.648Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 1, + "shift_id": 2, + "minimum_working_hour": "08:00", + "start_time": "13:00:00", + "end_time": "23:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 11, + "fields": { + "created_at": "2024-05-22T08:24:04.634Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 6, + "shift_id": 1, + "minimum_working_hour": "08:15", + "start_time": "09:00:00", + "end_time": "17:30:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 12, + "fields": { + "created_at": "2024-05-22T08:32:11.181Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 2, + "shift_id": 3, + "minimum_working_hour": "08:00", + "start_time": "06:00:00", + "end_time": "14:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 13, + "fields": { + "created_at": "2024-05-22T08:32:11.211Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 3, + "shift_id": 3, + "minimum_working_hour": "08:00", + "start_time": "06:00:00", + "end_time": "14:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 14, + "fields": { + "created_at": "2024-05-22T08:32:11.237Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 4, + "shift_id": 3, + "minimum_working_hour": "08:00", + "start_time": "06:00:00", + "end_time": "14:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 15, + "fields": { + "created_at": "2024-05-22T08:32:11.261Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 5, + "shift_id": 3, + "minimum_working_hour": "08:00", + "start_time": "06:00:00", + "end_time": "14:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.employeeshiftschedule", + "pk": 16, + "fields": { + "created_at": "2024-05-22T08:32:11.281Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "day": 1, + "shift_id": 3, + "minimum_working_hour": "08:00", + "start_time": "06:00:00", + "end_time": "14:00:00", + "is_night_shift": false, + "is_auto_punch_out_enabled": false, + "auto_punch_out_time": null, + "company_id": [] + } + }, + { + "model": "base.rotatingshift", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:30:28.174Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Morning to Night", + "shift1": 3, + "shift2": 2, + "additional_data": {} + } + }, + { + "model": "base.rotatingshift", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:30:44.634Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Night to Morning", + "shift1": 2, + "shift2": 3, + "additional_data": {} + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 1, + "fields": { + "created_at": "2024-08-05T09:48:38.892Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 12, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-06", + "current_shift": 1, + "next_shift": 3, + "based_on": "after", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 2, + "fields": { + "created_at": "2024-08-05T09:48:38.967Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-06", + "current_shift": 1, + "next_shift": 3, + "based_on": "after", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 3, + "fields": { + "created_at": "2024-08-05T09:48:39.015Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 11, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-06", + "current_shift": 1, + "next_shift": 3, + "based_on": "after", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 4, + "fields": { + "created_at": "2024-08-05T09:48:39.058Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 16, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-09-01", + "current_shift": 1, + "next_shift": 3, + "based_on": "monthly", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 5, + "fields": { + "created_at": "2024-08-05T09:48:39.109Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 18, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-12", + "current_shift": 3, + "next_shift": 2, + "based_on": "weekly", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 0 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 6, + "fields": { + "created_at": "2024-08-05T09:48:39.154Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 14, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-06", + "current_shift": 1, + "next_shift": 3, + "based_on": "after", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 7, + "fields": { + "created_at": "2024-08-05T09:48:39.212Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 15, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-12", + "current_shift": 3, + "next_shift": 2, + "based_on": "weekly", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 0 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 8, + "fields": { + "created_at": "2024-08-05T09:48:39.262Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-06", + "current_shift": 1, + "next_shift": 3, + "based_on": "after", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 9, + "fields": { + "created_at": "2024-08-05T09:48:39.313Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 17, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-12", + "current_shift": 3, + "next_shift": 2, + "based_on": "weekly", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 0 } + } + }, + { + "model": "base.rotatingshiftassign", + "pk": 10, + "fields": { + "created_at": "2024-08-05T09:48:39.363Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 19, + "rotating_shift_id": 1, + "start_date": "2024-08-05", + "next_change_date": "2024-08-06", + "current_shift": 1, + "next_shift": 3, + "based_on": "after", + "rotate_after_day": 1, + "rotate_every_weekend": "monday", + "rotate_every": "1", + "additional_data": { "next_shift_index": 1 } + } + }, + { + "model": "base.worktyperequest", + "pk": 1, + "fields": { + "created_at": "2024-05-23T03:42:49.581Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "work_type_id": 2, + "previous_work_type_id": null, + "requested_date": "2024-05-01", + "requested_till": "2024-05-31", + "description": "need work from home for a month", + "is_permanent_work_type": false, + "approved": false, + "canceled": false, + "work_type_changed": false + } + }, + { + "model": "base.worktyperequest", + "pk": 2, + "fields": { + "created_at": "2024-05-23T03:43:59.915Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 37, + "work_type_id": 2, + "previous_work_type_id": null, + "requested_date": "2024-05-10", + "requested_till": "2024-05-15", + "description": "requesting for work from home", + "is_permanent_work_type": false, + "approved": false, + "canceled": false, + "work_type_changed": false + } + }, + { + "model": "base.worktyperequest", + "pk": 3, + "fields": { + "created_at": "2024-05-23T03:44:35.523Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "work_type_id": 1, + "previous_work_type_id": null, + "requested_date": "2024-05-01", + "requested_till": "2024-05-10", + "description": "need a work type change", + "is_permanent_work_type": false, + "approved": false, + "canceled": false, + "work_type_changed": false + } + }, + { + "model": "base.worktyperequest", + "pk": 4, + "fields": { + "created_at": "2024-05-23T03:45:05.899Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 32, + "work_type_id": 2, + "previous_work_type_id": null, + "requested_date": "2024-05-04", + "requested_till": "2024-05-15", + "description": "requesting for work from home", + "is_permanent_work_type": false, + "approved": false, + "canceled": false, + "work_type_changed": false + } + }, + { + "model": "base.worktyperequest", + "pk": 5, + "fields": { + "created_at": "2024-05-23T03:46:16.058Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 20, + "work_type_id": 4, + "previous_work_type_id": null, + "requested_date": "2024-05-01", + "requested_till": "2024-05-31", + "description": "remote work type for a month", + "is_permanent_work_type": false, + "approved": false, + "canceled": false, + "work_type_changed": false + } + }, + { + "model": "base.shiftrequest", + "pk": 1, + "fields": { + "created_at": "2024-05-22T11:08:54.434Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 68, + "shift_id": 1, + "previous_shift_id": 2, + "requested_date": "2024-01-22", + "reallocate_to": null, + "reallocate_approved": false, + "reallocate_canceled": false, + "requested_till": "2024-01-28", + "description": "need a shift change", + "is_permanent_shift": false, + "approved": false, + "canceled": false, + "shift_changed": false + } + }, + { + "model": "base.shiftrequest", + "pk": 2, + "fields": { + "created_at": "2024-05-22T11:10:20.608Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 68, + "shift_id": 2, + "previous_shift_id": null, + "requested_date": "2024-04-11", + "reallocate_to": null, + "reallocate_approved": false, + "reallocate_canceled": false, + "requested_till": "2024-04-18", + "description": "need night shift", + "is_permanent_shift": false, + "approved": true, + "canceled": false, + "shift_changed": false + } + }, + { + "model": "base.shiftrequest", + "pk": 3, + "fields": { + "created_at": "2024-05-22T11:24:28.127Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 22, + "shift_id": 1, + "previous_shift_id": 2, + "requested_date": "2024-02-03", + "reallocate_to": null, + "reallocate_approved": false, + "reallocate_canceled": false, + "requested_till": "2024-02-29", + "description": "shift change", + "is_permanent_shift": false, + "approved": true, + "canceled": false, + "shift_changed": false + } + }, + { + "model": "base.shiftrequest", + "pk": 4, + "fields": { + "created_at": "2024-05-22T11:25:36.885Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 53, + "shift_id": 1, + "previous_shift_id": 2, + "requested_date": "2024-03-12", + "reallocate_to": null, + "reallocate_approved": false, + "reallocate_canceled": false, + "requested_till": "2024-03-22", + "description": "shift change", + "is_permanent_shift": false, + "approved": false, + "canceled": true, + "shift_changed": false + } + }, + { + "model": "base.shiftrequest", + "pk": 5, + "fields": { + "created_at": "2024-05-22T11:26:22.665Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 69, + "shift_id": 2, + "previous_shift_id": 1, + "requested_date": "2024-03-10", + "reallocate_to": null, + "reallocate_approved": false, + "reallocate_canceled": false, + "requested_till": "2024-03-22", + "description": "shift change", + "is_permanent_shift": false, + "approved": false, + "canceled": false, + "shift_changed": false + } + }, + { + "model": "base.shiftrequest", + "pk": 6, + "fields": { + "created_at": "2024-05-22T11:27:15.333Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 45, + "shift_id": 1, + "previous_shift_id": 3, + "requested_date": "2024-05-01", + "reallocate_to": null, + "reallocate_approved": false, + "reallocate_canceled": false, + "requested_till": "2024-05-31", + "description": "shift change", + "is_permanent_shift": false, + "approved": false, + "canceled": false, + "shift_changed": false + } + }, + { + "model": "base.tags", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:42:08.218Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "FAQ", + "color": "#949494", + "company_id": null + } + }, + { + "model": "base.tags", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:42:23.547Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Recruitment", + "color": "#ffcccc", + "company_id": null + } + }, + { + "model": "base.tags", + "pk": 3, + "fields": { + "created_at": "2024-05-22T08:42:39.708Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Payroll", + "color": "#a16879", + "company_id": null + } + }, + { + "model": "base.tags", + "pk": 4, + "fields": { + "created_at": "2024-05-24T05:31:23.654Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "attendance", + "color": "#000000", + "company_id": null + } + }, + { + "model": "base.tags", + "pk": 5, + "fields": { + "created_at": "2024-05-24T05:42:45.721Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "employee", + "color": "#806d8d", + "company_id": null + } + }, + { + "model": "base.horillamailtemplate", + "pk": 1, + "fields": { + "created_at": "2024-08-05T09:39:13.733Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "title": "Offer letter", + "body": "

Congratulations! Job Offer at {{instance.get_company}}

username:{{instance.get_email}}

password:{{instance.phone}}

Dear {{instance.get_full_name}},

                                                    I am delighted to extend an official offer of employment to you for the position of [Job Title] at [Company Name]. We were thoroughly impressed with your skills, experience, and the passion you demonstrated during the interview process.

Here are the details of your job offer: 

    Job Position: {{instance.get_job_position}}

We believe that your unique talents will make a significant contribution to our team, and we are thrilled about the prospect of you joining us. Please take the time to review the attached detailed job description, as well as the terms and conditions outlined in the employment contract.

To signify your acceptance of this job offer, please confirm your agreement by [Date to Respond]. If you have any questions or need further clarification, feel free to contact me directly

We are excited about the value you will bring to [Company Name], and we eagerly anticipate the positive impact you'll have on our team.

Welcome aboard, and we look forward to a successful and fulfilling working relationship!

Warm regards,

", + "company_id": null + } + }, + { + "model": "base.dynamicpagination", + "pk": 1, + "fields": { "user_id": 1, "pagination": 25 } + }, + { + "model": "base.driverviewed", + "pk": 1, + "fields": { "user": 1, "viewed": "dashboard" } + }, + { + "model": "base.driverviewed", + "pk": 2, + "fields": { "user": 1, "viewed": "settings" } + }, + { + "model": "base.driverviewed", + "pk": 3, + "fields": { "user": 1, "viewed": "pipeline" } + }, + { + "model": "base.driverviewed", + "pk": 4, + "fields": { "user": 13, "viewed": "dashboard" } + }, + { + "model": "base.driverviewed", + "pk": 5, + "fields": { "user": 13, "viewed": "pipeline" } + }, + { + "model": "base.dashboardemployeecharts", + "pk": 1, + "fields": { + "created_at": "2024-05-21T11:23:17.664Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee": 1, + "charts": [ + "overall_leave_chart", + "attendance_analytic", + "hours_chart", + "employees_chart", + "department_chart", + "gender_chart", + "objective_status", + "key_result_status", + "feedback_status", + "leave_request_approve", + "asset_request_approve", + "feedback_answer" + ] + } + }, + { + "model": "base.announcement", + "pk": 1, + "fields": { + "created_at": "2024-09-17T10:34:52.749Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Horilla Tour", + "description": "

The only HR Software You'll ever need.

Horilla HRMS offers all the features you would expect from your favorite Open Source HR Software and much more.
It's free & open-source!

", + "expire_date": "2100-09-17", + "disable_comments": false, + "attachments": [], + "employees": [], + "department": [], + "job_position": [] + } + }, + { + "model": "base.biometricattendance", + "pk": 1, + "fields": { "is_installed": true, "company_id": null } + }, + { + "model": "base.holidays", + "pk": 1, + "fields": { + "created_at": "2024-08-05T09:39:13.776Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "New Year's Day", + "start_date": "2024-01-01", + "end_date": "2024-01-01", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 2, + "fields": { + "created_at": "2024-08-05T09:39:13.811Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Republic Day", + "start_date": "2024-01-26", + "end_date": "2024-01-26", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 3, + "fields": { + "created_at": "2024-08-05T09:39:13.823Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Holi", + "start_date": "2024-03-20", + "end_date": "2024-03-20", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 4, + "fields": { + "created_at": "2024-08-05T09:39:13.849Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Vishu", + "start_date": "2024-04-14", + "end_date": "2024-04-14", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 5, + "fields": { + "created_at": "2024-08-05T09:39:13.867Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Eid al-Fitr", + "start_date": "2024-04-10", + "end_date": "2024-04-10", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 6, + "fields": { + "created_at": "2024-08-05T09:39:13.883Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Eid al-Adha ", + "start_date": "2024-06-19", + "end_date": "2024-06-19", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 7, + "fields": { + "created_at": "2024-08-05T09:39:13.904Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Labor Day", + "start_date": "2024-05-01", + "end_date": "2024-05-01", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 8, + "fields": { + "created_at": "2024-08-05T09:39:13.921Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Independence Day", + "start_date": "2024-08-15", + "end_date": "2024-08-15", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 9, + "fields": { + "created_at": "2024-08-05T09:39:13.939Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Gandhi Jayanti ", + "start_date": "2024-10-02", + "end_date": "2024-10-02", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 10, + "fields": { + "created_at": "2024-08-05T09:39:13.959Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Children's Day", + "start_date": "2024-11-14", + "end_date": "2024-11-14", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.holidays", + "pk": 11, + "fields": { + "created_at": "2024-08-05T09:39:13.976Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "name": "Christmas", + "start_date": "2024-12-25", + "end_date": "2024-12-25", + "recurring": false, + "company_id": null + } + }, + { + "model": "base.companyleaves", + "pk": 1, + "fields": { + "created_at": "2024-08-05T09:39:13.993Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "based_on_week": null, + "based_on_week_day": "6", + "company_id": null + } + }, + { + "model": "base.companyleaves", + "pk": 2, + "fields": { + "created_at": "2024-08-05T09:39:14.027Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "based_on_week": "1", + "based_on_week_day": "5", + "company_id": null + } + }, + { + "model": "base.companyleaves", + "pk": 3, + "fields": { + "created_at": "2024-08-05T09:39:14.044Z", + "created_by": null, + "modified_by": null, + "is_active": true, + "based_on_week": "3", + "based_on_week_day": "5", + "company_id": null + } + } +] diff --git a/load_data/employee_info_data.json b/load_data/employee_info_data.json new file mode 100644 index 000000000..b1e496ffe --- /dev/null +++ b/load_data/employee_info_data.json @@ -0,0 +1,2311 @@ +[ + { + "model": "employee.employee", + "pk": 1, + "fields": { + "badge_id": null, + "employee_user_id": 1, + "employee_first_name": "Adam", + "employee_last_name": "Luis", + "employee_profile": "", + "email": "adam.luis@horilla.com", + "phone": "9876540001", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 2, + "fields": { + "badge_id": "#PEP01", + "employee_user_id": 3, + "employee_first_name": "Michael", + "employee_last_name": "Brown", + "employee_profile": "", + "email": "michael.brown@horilla.com", + "phone": "9876540001", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 3, + "fields": { + "badge_id": "#PEP02", + "employee_user_id": 4, + "employee_first_name": "Sarah", + "employee_last_name": "Anderson", + "employee_profile": "", + "email": "sarah.anderson@horilla.com", + "phone": "9876540002", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 4, + "fields": { + "badge_id": "#PEP03", + "employee_user_id": 5, + "employee_first_name": "Emily", + "employee_last_name": "Clark", + "employee_profile": "", + "email": "emily.clark@horilla.com", + "phone": "9876540003", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 5, + "fields": { + "badge_id": "#PEP05", + "employee_user_id": 6, + "employee_first_name": "Jessica", + "employee_last_name": "Evans", + "employee_profile": "", + "email": "jessica.evans@horilla.com", + "phone": "9876540005", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 6, + "fields": { + "badge_id": "#PEP08", + "employee_user_id": 7, + "employee_first_name": "Matthew", + "employee_last_name": "Harris", + "employee_profile": "", + "email": "matthew.harris@horilla.com", + "phone": "9876540008", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 7, + "fields": { + "badge_id": "#PEP10", + "employee_user_id": 8, + "employee_first_name": "David", + "employee_last_name": "King", + "employee_profile": "", + "email": "david.king@horilla.com", + "phone": "9876540010", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 8, + "fields": { + "badge_id": "#PEP11", + "employee_user_id": 9, + "employee_first_name": "Emma", + "employee_last_name": "Lee", + "employee_profile": "", + "email": "emma.lee@horilla.com", + "phone": "9876540011", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 9, + "fields": { + "badge_id": "#PEP12", + "employee_user_id": 10, + "employee_first_name": "Christopher", + "employee_last_name": "Miller", + "employee_profile": "", + "email": "christopher.miller@horilla.com", + "phone": "9876540012", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 10, + "fields": { + "badge_id": "#PEP13", + "employee_user_id": 11, + "employee_first_name": "Mia", + "employee_last_name": "Nelson", + "employee_profile": "", + "email": "mia.nelson@horilla.com", + "phone": "9876540013", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 11, + "fields": { + "badge_id": "#PEP14", + "employee_user_id": 12, + "employee_first_name": "Benjamin", + "employee_last_name": "Parker", + "employee_profile": "", + "email": "benjamin.parker@horilla.com", + "phone": "9876540014", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 12, + "fields": { + "badge_id": "#PEP15", + "employee_user_id": 13, + "employee_first_name": "Abigail", + "employee_last_name": "Roberts", + "employee_profile": "", + "email": "abigail.roberts@horilla.com", + "phone": "9876540015", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 13, + "fields": { + "badge_id": "#PEP16", + "employee_user_id": 14, + "employee_first_name": "Alexander", + "employee_last_name": "Smith", + "employee_profile": "", + "email": "alexander.smith@horilla.com", + "phone": "9876540016", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 14, + "fields": { + "badge_id": "#PEP17", + "employee_user_id": 15, + "employee_first_name": "Isabella", + "employee_last_name": "Thompson", + "employee_profile": "", + "email": "isabella.thompson@horilla.com", + "phone": "9876540017", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 15, + "fields": { + "badge_id": "#PEP18", + "employee_user_id": 16, + "employee_first_name": "Jacob", + "employee_last_name": "Walker", + "employee_profile": "", + "email": "jacob.walker@horilla.com", + "phone": "9876540018", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 16, + "fields": { + "badge_id": "#PEP19", + "employee_user_id": 17, + "employee_first_name": "Charlotte", + "employee_last_name": "White", + "employee_profile": "", + "email": "charlotte.white@horilla.com", + "phone": "9876540019", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 17, + "fields": { + "badge_id": "#PEP20", + "employee_user_id": 18, + "employee_first_name": "Noah", + "employee_last_name": "Young", + "employee_profile": "", + "email": "noah.young@horilla.com", + "phone": "9876540020", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 18, + "fields": { + "badge_id": "#PEP21", + "employee_user_id": 19, + "employee_first_name": "Grace", + "employee_last_name": "Allen", + "employee_profile": "", + "email": "grace.allen@horilla.com", + "phone": "9876540021", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 19, + "fields": { + "badge_id": "#PEP22", + "employee_user_id": 20, + "employee_first_name": "Samuel", + "employee_last_name": "Baker", + "employee_profile": "", + "email": "samuel.baker@horilla.com", + "phone": "9876540022", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 20, + "fields": { + "badge_id": "#PEP23", + "employee_user_id": 21, + "employee_first_name": "Lily", + "employee_last_name": "Campbell", + "employee_profile": "", + "email": "lily.campbell@horilla.com", + "phone": "9876540023", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 21, + "fields": { + "badge_id": "#PEP24", + "employee_user_id": 22, + "employee_first_name": "Lucas", + "employee_last_name": "Carter", + "employee_profile": "", + "email": "lucas.carter@horilla.com", + "phone": "9876540024", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 22, + "fields": { + "badge_id": "#PEP25", + "employee_user_id": 23, + "employee_first_name": "Amelia", + "employee_last_name": "Cooper", + "employee_profile": "", + "email": "amelia.cooper@horilla.com", + "phone": "9876540025", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 23, + "fields": { + "badge_id": "#PEP26", + "employee_user_id": 24, + "employee_first_name": "Mason", + "employee_last_name": "Diaz", + "employee_profile": "", + "email": "mason.diaz@horilla.com", + "phone": "9876540026", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 24, + "fields": { + "badge_id": "#PEP27", + "employee_user_id": 25, + "employee_first_name": "Harper", + "employee_last_name": "Edwards", + "employee_profile": "", + "email": "harper.edwards@horilla.com", + "phone": "9876540027", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 25, + "fields": { + "badge_id": "#PEP28", + "employee_user_id": 26, + "employee_first_name": "Logan", + "employee_last_name": "Flores", + "employee_profile": "", + "email": "logan.flores@horilla.com", + "phone": "9876540028", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 26, + "fields": { + "badge_id": "#PEP29", + "employee_user_id": 27, + "employee_first_name": "Evelyn", + "employee_last_name": "Garcia", + "employee_profile": "", + "email": "evelyn.garcia@horilla.com", + "phone": "9876540029", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 27, + "fields": { + "badge_id": "#PEP30", + "employee_user_id": 28, + "employee_first_name": "Ethan", + "employee_last_name": "Gonzalez", + "employee_profile": "", + "email": "ethan.gonzalez@horilla.com", + "phone": "9876540030", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 28, + "fields": { + "badge_id": "#PEP31", + "employee_user_id": 29, + "employee_first_name": "Avery", + "employee_last_name": "Hill", + "employee_profile": "", + "email": "avery.hill@horilla.com", + "phone": "9876540031", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 29, + "fields": { + "badge_id": "#PEP32", + "employee_user_id": 30, + "employee_first_name": "William", + "employee_last_name": "Hughes", + "employee_profile": "", + "email": "william.hughes@horilla.com", + "phone": "9876540032", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 30, + "fields": { + "badge_id": "#PEP33", + "employee_user_id": 31, + "employee_first_name": "Ella", + "employee_last_name": "Jackson", + "employee_profile": "", + "email": "ella.jackson@horilla.com", + "phone": "9876540033", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 31, + "fields": { + "badge_id": "#PEP34", + "employee_user_id": 32, + "employee_first_name": "Owen", + "employee_last_name": "Jenkins", + "employee_profile": "", + "email": "owen.jenkins@horilla.com", + "phone": "9876540034", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 32, + "fields": { + "badge_id": "#PEP35", + "employee_user_id": 33, + "employee_first_name": "Madison", + "employee_last_name": "Kelly", + "employee_profile": "", + "email": "madison.kelly@horilla.com", + "phone": "9876540035", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 33, + "fields": { + "badge_id": "#PEP36", + "employee_user_id": 34, + "employee_first_name": "Henry", + "employee_last_name": "Lewis", + "employee_profile": "", + "email": "henry.lewis@horilla.com", + "phone": "9876540036", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 34, + "fields": { + "badge_id": "#PEP37", + "employee_user_id": 35, + "employee_first_name": "Scarlett", + "employee_last_name": "Martinez", + "employee_profile": "", + "email": "scarlett.martinez@horilla.com", + "phone": "9876540037", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 35, + "fields": { + "badge_id": "#PEP38", + "employee_user_id": 36, + "employee_first_name": "Sebastian", + "employee_last_name": "Mitchell", + "employee_profile": "", + "email": "sebastian.mitchell@horilla.com", + "phone": "9876540038", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 36, + "fields": { + "badge_id": "#PEP39", + "employee_user_id": 37, + "employee_first_name": "Chloe", + "employee_last_name": "Morgan", + "employee_profile": "", + "email": "chloe.morgan@horilla.com", + "phone": "9876540039", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 37, + "fields": { + "badge_id": "#PEP40", + "employee_user_id": 38, + "employee_first_name": "Aiden", + "employee_last_name": "Murphy", + "employee_profile": "", + "email": "aiden.murphy@horilla.com", + "phone": "9876540040", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 38, + "fields": { + "badge_id": "#PEP41", + "employee_user_id": 39, + "employee_first_name": "Mila", + "employee_last_name": "Perez", + "employee_profile": "", + "email": "mila.perez@horilla.com", + "phone": "9876540041", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 39, + "fields": { + "badge_id": "#PEP42", + "employee_user_id": 40, + "employee_first_name": "Gabriel", + "employee_last_name": "Phillips", + "employee_profile": "", + "email": "gabriel.phillips@horilla.com", + "phone": "9876540042", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 40, + "fields": { + "badge_id": "#PEP43", + "employee_user_id": 41, + "employee_first_name": "Aria", + "employee_last_name": "Powell", + "employee_profile": "", + "email": "aria.powell@horilla.com", + "phone": "9876540043", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 41, + "fields": { + "badge_id": "#PEP44", + "employee_user_id": 42, + "employee_first_name": "Wyatt", + "employee_last_name": "Ramirez", + "employee_profile": "", + "email": "wyatt.ramirez@horilla.com", + "phone": "9876540044", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 42, + "fields": { + "badge_id": "#PEP45", + "employee_user_id": 43, + "employee_first_name": "Nora", + "employee_last_name": "Reed", + "employee_profile": "", + "email": "nora.reed@horilla.com", + "phone": "9876540045", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 43, + "fields": { + "badge_id": "#PEP46", + "employee_user_id": 44, + "employee_first_name": "Jack", + "employee_last_name": "Rivera", + "employee_profile": "", + "email": "jack.rivera@horilla.com", + "phone": "9876540046", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 44, + "fields": { + "badge_id": "#PEP47", + "employee_user_id": 45, + "employee_first_name": "Ellie", + "employee_last_name": "Rogers", + "employee_profile": "", + "email": "ellie.rogers@horilla.com", + "phone": "9876540047", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 45, + "fields": { + "badge_id": "#PEP48", + "employee_user_id": 46, + "employee_first_name": "Levi", + "employee_last_name": "Sanders", + "employee_profile": "", + "email": "levi.sanders@horilla.com", + "phone": "9876540048", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 46, + "fields": { + "badge_id": "#PEP49", + "employee_user_id": 47, + "employee_first_name": "Penelope", + "employee_last_name": "Scott", + "employee_profile": "", + "email": "penelope.scott@horilla.com", + "phone": "9876540049", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 47, + "fields": { + "badge_id": "#PEP50", + "employee_user_id": 48, + "employee_first_name": "Carter", + "employee_last_name": "Stewart", + "employee_profile": "", + "email": "carter.stewart@horilla.com", + "phone": "9876540050", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 48, + "fields": { + "badge_id": "#PEP53", + "employee_user_id": 49, + "employee_first_name": "Victoria", + "employee_last_name": "Turner", + "employee_profile": "", + "email": "victoria.turner@horilla.com", + "phone": "9876540053", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 49, + "fields": { + "badge_id": "#PEP55", + "employee_user_id": 50, + "employee_first_name": "Zoey", + "employee_last_name": "Watson", + "employee_profile": "", + "email": "zoey.watson@horilla.com", + "phone": "9876540055", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 50, + "fields": { + "badge_id": "#PEP56", + "employee_user_id": 51, + "employee_first_name": "Nathaniel", + "employee_last_name": "Wright", + "employee_profile": "", + "email": "nathaniel.wright@horilla.com", + "phone": "9876540056", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 51, + "fields": { + "badge_id": "#PEP57", + "employee_user_id": 52, + "employee_first_name": "Hazel", + "employee_last_name": "Adams", + "employee_profile": "", + "email": "hazel.adams@horilla.com", + "phone": "9876540057", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 52, + "fields": { + "badge_id": "#PEP58", + "employee_user_id": 53, + "employee_first_name": "Julian", + "employee_last_name": "Barnes", + "employee_profile": "", + "email": "julian.barnes@horilla.com", + "phone": "9876540058", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 53, + "fields": { + "badge_id": "#PEP59", + "employee_user_id": 54, + "employee_first_name": "Stella", + "employee_last_name": "Bell", + "employee_profile": "", + "email": "stella.bell@horilla.com", + "phone": "9876540059", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 54, + "fields": { + "badge_id": "#PEP60", + "employee_user_id": 55, + "employee_first_name": "Ryan", + "employee_last_name": "Bennett", + "employee_profile": "", + "email": "ryan.bennett@horilla.com", + "phone": "9876540060", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 55, + "fields": { + "badge_id": "#PEP61", + "employee_user_id": 56, + "employee_first_name": "Hannah", + "employee_last_name": "Brooks", + "employee_profile": "", + "email": "hannah.brooks@horilla.com", + "phone": "9876540061", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 56, + "fields": { + "badge_id": "#PEP62", + "employee_user_id": 57, + "employee_first_name": "Hunter", + "employee_last_name": "Butler", + "employee_profile": "", + "email": "hunter.butler@horilla.com", + "phone": "9876540062", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 57, + "fields": { + "badge_id": "#PEP63", + "employee_user_id": 58, + "employee_first_name": "Ruby", + "employee_last_name": "Cook", + "employee_profile": "", + "email": "ruby.cook@horilla.com", + "phone": "9876540063", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 58, + "fields": { + "badge_id": "#PEP64", + "employee_user_id": 59, + "employee_first_name": "Elijah", + "employee_last_name": "Cox", + "employee_profile": "", + "email": "elijah.cox@horilla.com", + "phone": "9876540064", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 59, + "fields": { + "badge_id": "#PEP65", + "employee_user_id": 60, + "employee_first_name": "Lucy", + "employee_last_name": "Cruz", + "employee_profile": "", + "email": "lucy.cruz@horilla.com", + "phone": "9876540065", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 60, + "fields": { + "badge_id": "#PEP66", + "employee_user_id": 61, + "employee_first_name": "Joseph", + "employee_last_name": "Diaz", + "employee_profile": "", + "email": "joseph.diaz@horilla.com", + "phone": "9876540066", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 61, + "fields": { + "badge_id": "#PEP67", + "employee_user_id": 62, + "employee_first_name": "Sadie", + "employee_last_name": "Ellis", + "employee_profile": "", + "email": "sadie.ellis@horilla.com", + "phone": "9876540067", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 62, + "fields": { + "badge_id": "#PEP68", + "employee_user_id": 63, + "employee_first_name": "Caleb", + "employee_last_name": "Fisher", + "employee_profile": "", + "email": "caleb.fisher@horilla.com", + "phone": "9876540068", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 63, + "fields": { + "badge_id": "#PEP69", + "employee_user_id": 64, + "employee_first_name": "Alice", + "employee_last_name": "Foster", + "employee_profile": "", + "email": "alice.foster@horilla.com", + "phone": "9876540069", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 64, + "fields": { + "badge_id": "#PEP70", + "employee_user_id": 65, + "employee_first_name": "Nicholas", + "employee_last_name": "George", + "employee_profile": "", + "email": "nicholas.george@horilla.com", + "phone": "9876540070", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 65, + "fields": { + "badge_id": "#PEP71", + "employee_user_id": 66, + "employee_first_name": "Layla", + "employee_last_name": "Gonzales", + "employee_profile": "", + "email": "layla.gonzales@horilla.com", + "phone": "9876540071", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 66, + "fields": { + "badge_id": "#PEP72", + "employee_user_id": 67, + "employee_first_name": "Jonathan", + "employee_last_name": "Gray", + "employee_profile": "", + "email": "jonathan.gray@horilla.com", + "phone": "9876540072", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 67, + "fields": { + "badge_id": "#PEP73", + "employee_user_id": 68, + "employee_first_name": "Violet", + "employee_last_name": "Griffin", + "employee_profile": "", + "email": "violet.griffin@horilla.com", + "phone": "9876540073", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 68, + "fields": { + "badge_id": "#PEP74", + "employee_user_id": 69, + "employee_first_name": "Andrew", + "employee_last_name": "Hayes", + "employee_profile": "", + "email": "andrew.hayes@horilla.com", + "phone": "9876540074", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 69, + "fields": { + "badge_id": "#PEP75", + "employee_user_id": 70, + "employee_first_name": "Sofia", + "employee_last_name": "Howard", + "employee_profile": "", + "email": "sofia.howard@horilla.com", + "phone": "9876540075", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 70, + "fields": { + "badge_id": "#PEP04", + "employee_user_id": 71, + "employee_first_name": "James", + "employee_last_name": "Davis", + "employee_profile": "", + "email": "james.davis@horilla.com", + "phone": "9876540004", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 71, + "fields": { + "badge_id": "#PEP06", + "employee_user_id": 72, + "employee_first_name": "Daniel", + "employee_last_name": "Foster", + "employee_profile": "", + "email": "daniel.foster@horilla.com", + "phone": "9876540006", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 72, + "fields": { + "badge_id": "#PEP07", + "employee_user_id": 73, + "employee_first_name": "Olivia", + "employee_last_name": "Green", + "employee_profile": "", + "email": "olivia.green@horilla.com", + "phone": "9876540007", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 73, + "fields": { + "badge_id": "#PEP09", + "employee_user_id": 74, + "employee_first_name": "Sophia", + "employee_last_name": "Johnson", + "employee_profile": "", + "email": "sophia.johnson@horilla.com", + "phone": "9876540009", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 74, + "fields": { + "badge_id": "#PEP51", + "employee_user_id": 75, + "employee_first_name": "Riley", + "employee_last_name": "Taylor", + "employee_profile": "", + "email": "riley.taylor@horilla.com", + "phone": "9876540051", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "female", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 75, + "fields": { + "badge_id": "#PEP52", + "employee_user_id": 76, + "employee_first_name": "Isaac", + "employee_last_name": "Torres", + "employee_profile": "", + "email": "isaac.torres@horilla.com", + "phone": "9876540052", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 76, + "fields": { + "badge_id": "#PEP54", + "employee_user_id": 77, + "employee_first_name": "Dylan", + "employee_last_name": "Ward", + "employee_profile": "", + "email": "dylan.ward@horilla.com", + "phone": "9876540054", + "address": null, + "country": null, + "state": null, + "city": null, + "zip": null, + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.employee", + "pk": 77, + "fields": { + "badge_id": "PEP234567", + "employee_user_id": 79, + "employee_first_name": "test", + "employee_last_name": "item", + "employee_profile": "", + "email": "testItem@horilla.com", + "phone": "9898989898", + "address": "ABCD street", + "country": "USA", + "state": "Nevada", + "city": "las vegas", + "zip": "89036", + "dob": null, + "gender": "male", + "qualification": null, + "experience": null, + "marital_status": "single", + "children": null, + "emergency_contact": null, + "emergency_contact_name": null, + "emergency_contact_relation": null, + "is_active": true, + "additional_info": null + } + }, + { + "model": "employee.actiontype", + "pk": 1, + "fields": { + "created_at": "2024-09-16T05:07:05.173Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "First Warning", + "action_type": "warning", + "block_option": false + } + }, + { + "model": "employee.actiontype", + "pk": 2, + "fields": { + "created_at": "2024-09-16T05:07:24.317Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Last Warning", + "action_type": "warning", + "block_option": false + } + }, + { + "model": "employee.actiontype", + "pk": 3, + "fields": { + "created_at": "2024-09-16T05:07:53.560Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "One Month Suspension", + "action_type": "suspension", + "block_option": false + } + }, + { + "model": "employee.actiontype", + "pk": 4, + "fields": { + "created_at": "2024-09-16T05:08:19.145Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Dismissal", + "action_type": "dismissal", + "block_option": true + } + }, + { + "model": "employee.employeetag", + "pk": 1, + "fields": { + "created_at": "2024-09-16T05:10:01.047Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Horilla Team", + "color": "#7982fb" + } + }, + { + "model": "employee.employeetag", + "pk": 2, + "fields": { + "created_at": "2024-09-16T05:10:25.133Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "AI Team", + "color": "#dfd562" + } + } +] diff --git a/load_data/leave_data.json b/load_data/leave_data.json new file mode 100644 index 000000000..7504f2906 --- /dev/null +++ b/load_data/leave_data.json @@ -0,0 +1,3301 @@ +[ + { + "model": "leave.leavetype", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:40:47.352Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "icon": "", + "name": "Compensatory Leave Type", + "color": null, + "payment": "paid", + "count": 1.0, + "period_in": "day", + "limit_leave": true, + "total_days": 1.0, + "reset": false, + "is_encashable": false, + "reset_based": null, + "reset_month": "", + "reset_day": null, + "reset_weekend": null, + "carryforward_type": "no carryforward", + "carryforward_max": null, + "carryforward_expire_in": null, + "carryforward_expire_period": null, + "require_approval": "yes", + "require_attachment": "no", + "exclude_company_leave": "no", + "exclude_holiday": "no", + "is_compensatory_leave": true, + "company_id": null + } + }, + { + "model": "leave.leavetype", + "pk": 2, + "fields": { + "created_at": "2024-05-22T10:22:18.995Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "icon": "", + "name": "Casual Leave", + "color": "#000000", + "payment": "paid", + "count": 1.0, + "period_in": "day", + "limit_leave": true, + "total_days": 1.0, + "reset": true, + "is_encashable": true, + "reset_based": "monthly", + "reset_month": "", + "reset_day": "1", + "reset_weekend": null, + "carryforward_type": "carryforward", + "carryforward_max": Infinity, + "carryforward_expire_in": null, + "carryforward_expire_period": null, + "require_approval": "yes", + "require_attachment": "no", + "exclude_company_leave": "yes", + "exclude_holiday": "yes", + "is_compensatory_leave": false, + "company_id": null + } + }, + { + "model": "leave.leavetype", + "pk": 3, + "fields": { + "created_at": "2024-05-22T10:23:27.333Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "icon": "", + "name": "Sick Leave", + "color": "#000000", + "payment": "paid", + "count": 10.0, + "period_in": "day", + "limit_leave": true, + "total_days": 10.0, + "reset": true, + "is_encashable": false, + "reset_based": "monthly", + "reset_month": "", + "reset_day": "1", + "reset_weekend": null, + "carryforward_type": "no carryforward", + "carryforward_max": null, + "carryforward_expire_in": null, + "carryforward_expire_period": null, + "require_approval": "yes", + "require_attachment": "yes", + "exclude_company_leave": "yes", + "exclude_holiday": "yes", + "is_compensatory_leave": false, + "company_id": null + } + }, + { + "model": "leave.leavetype", + "pk": 4, + "fields": { + "created_at": "2024-05-22T10:24:19.925Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "icon": "", + "name": "Maternity Leave", + "color": "#000000", + "payment": "unpaid", + "count": 90.0, + "period_in": "day", + "limit_leave": true, + "total_days": 90.0, + "reset": false, + "is_encashable": false, + "reset_based": null, + "reset_month": "", + "reset_day": null, + "reset_weekend": null, + "carryforward_type": "no carryforward", + "carryforward_max": null, + "carryforward_expire_in": null, + "carryforward_expire_period": null, + "require_approval": "yes", + "require_attachment": "yes", + "exclude_company_leave": "no", + "exclude_holiday": "no", + "is_compensatory_leave": false, + "company_id": null + } + }, + { + "model": "leave.availableleave", + "pk": 1, + "fields": { + "created_at": "2024-05-22T10:35:05.363Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 12, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 2, + "fields": { + "created_at": "2024-05-22T10:35:05.580Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 12, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 3, + "fields": { + "created_at": "2024-05-22T10:35:05.678Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 4, + "fields": { + "created_at": "2024-05-22T10:35:05.755Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 5, + "fields": { + "created_at": "2024-05-22T10:35:05.828Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 37, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 6, + "fields": { + "created_at": "2024-05-22T10:35:05.911Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 37, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 7, + "fields": { + "created_at": "2024-05-22T10:35:06.018Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 8, + "fields": { + "created_at": "2024-05-22T10:35:06.122Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 9, + "fields": { + "created_at": "2024-05-22T10:35:06.213Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 63, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 10, + "fields": { + "created_at": "2024-05-22T10:35:06.281Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 63, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 11, + "fields": { + "created_at": "2024-05-22T10:35:06.350Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 22, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 12, + "fields": { + "created_at": "2024-05-22T10:35:06.422Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 22, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 13, + "fields": { + "created_at": "2024-05-22T10:35:06.494Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 68, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 14, + "fields": { + "created_at": "2024-05-22T10:35:06.564Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 68, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 15, + "fields": { + "created_at": "2024-05-22T10:35:06.639Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 40, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 16, + "fields": { + "created_at": "2024-05-22T10:35:06.714Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 40, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 17, + "fields": { + "created_at": "2024-05-22T10:35:06.785Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 28, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 18, + "fields": { + "created_at": "2024-05-22T10:35:06.850Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 28, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 19, + "fields": { + "created_at": "2024-05-22T10:35:06.911Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 11, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 20, + "fields": { + "created_at": "2024-05-22T10:35:06.981Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 11, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 21, + "fields": { + "created_at": "2024-05-22T10:35:07.040Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 62, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 22, + "fields": { + "created_at": "2024-05-22T10:35:07.103Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 62, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 23, + "fields": { + "created_at": "2024-05-22T10:35:07.161Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 47, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 24, + "fields": { + "created_at": "2024-05-22T10:35:07.230Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 47, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 25, + "fields": { + "created_at": "2024-05-22T10:35:07.288Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 16, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 26, + "fields": { + "created_at": "2024-05-22T10:35:07.344Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 16, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 27, + "fields": { + "created_at": "2024-05-22T10:35:07.411Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 36, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 28, + "fields": { + "created_at": "2024-05-22T10:35:07.464Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 36, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 29, + "fields": { + "created_at": "2024-05-22T10:35:07.614Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 9, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 30, + "fields": { + "created_at": "2024-05-22T10:35:07.801Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 9, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 31, + "fields": { + "created_at": "2024-05-22T10:35:07.881Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 71, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 32, + "fields": { + "created_at": "2024-05-22T10:35:07.955Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 71, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 33, + "fields": { + "created_at": "2024-05-22T10:35:08.035Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 7, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 34, + "fields": { + "created_at": "2024-05-22T10:35:08.101Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 7, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 35, + "fields": { + "created_at": "2024-05-22T10:35:08.161Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 76, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 36, + "fields": { + "created_at": "2024-05-22T10:35:08.214Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 76, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 37, + "fields": { + "created_at": "2024-05-22T10:35:08.280Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 58, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 38, + "fields": { + "created_at": "2024-05-22T10:35:08.344Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 58, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 39, + "fields": { + "created_at": "2024-05-22T10:35:08.405Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 30, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 40, + "fields": { + "created_at": "2024-05-22T10:35:08.461Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 30, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 41, + "fields": { + "created_at": "2024-05-22T10:35:08.531Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 44, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 42, + "fields": { + "created_at": "2024-05-22T10:35:08.587Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 44, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 43, + "fields": { + "created_at": "2024-05-22T10:35:08.644Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 4, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 44, + "fields": { + "created_at": "2024-05-22T10:35:08.711Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 4, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 45, + "fields": { + "created_at": "2024-05-22T10:35:08.765Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 8, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 46, + "fields": { + "created_at": "2024-05-22T10:35:08.831Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 8, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 47, + "fields": { + "created_at": "2024-05-22T10:35:08.887Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 27, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 48, + "fields": { + "created_at": "2024-05-22T10:35:08.958Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 27, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 49, + "fields": { + "created_at": "2024-05-22T10:35:09.021Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 26, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 50, + "fields": { + "created_at": "2024-05-22T10:35:09.095Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 26, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 51, + "fields": { + "created_at": "2024-05-22T10:35:09.230Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 39, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 52, + "fields": { + "created_at": "2024-05-22T10:35:09.315Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 39, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 53, + "fields": { + "created_at": "2024-05-22T10:35:09.398Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 18, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 54, + "fields": { + "created_at": "2024-05-22T10:35:09.464Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 18, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 55, + "fields": { + "created_at": "2024-05-22T10:35:09.535Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 55, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 56, + "fields": { + "created_at": "2024-05-22T10:35:09.614Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 55, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 57, + "fields": { + "created_at": "2024-05-22T10:35:09.683Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 24, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 58, + "fields": { + "created_at": "2024-05-22T10:35:09.746Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 24, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 59, + "fields": { + "created_at": "2024-05-22T10:35:09.806Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 51, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 60, + "fields": { + "created_at": "2024-05-22T10:35:09.882Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 51, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 61, + "fields": { + "created_at": "2024-05-22T10:35:09.950Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 33, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 62, + "fields": { + "created_at": "2024-05-22T10:35:10.016Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 33, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 63, + "fields": { + "created_at": "2024-05-22T10:35:10.078Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 56, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 64, + "fields": { + "created_at": "2024-05-22T10:35:10.147Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 56, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 65, + "fields": { + "created_at": "2024-05-22T10:35:10.213Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 75, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 66, + "fields": { + "created_at": "2024-05-22T10:35:10.278Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 75, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 67, + "fields": { + "created_at": "2024-05-22T10:35:10.339Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 14, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 68, + "fields": { + "created_at": "2024-05-22T10:35:10.396Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 14, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 69, + "fields": { + "created_at": "2024-05-22T10:35:10.461Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 43, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 70, + "fields": { + "created_at": "2024-05-22T10:35:10.530Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 43, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 71, + "fields": { + "created_at": "2024-05-22T10:35:10.594Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 15, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 72, + "fields": { + "created_at": "2024-05-22T10:35:10.670Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 15, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 73, + "fields": { + "created_at": "2024-05-22T10:35:10.737Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 70, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 74, + "fields": { + "created_at": "2024-05-22T10:35:10.794Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 70, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 75, + "fields": { + "created_at": "2024-05-22T10:35:10.865Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 5, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 76, + "fields": { + "created_at": "2024-05-22T10:35:10.940Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 5, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 77, + "fields": { + "created_at": "2024-05-22T10:35:11.029Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 66, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 78, + "fields": { + "created_at": "2024-05-22T10:35:11.111Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 66, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 79, + "fields": { + "created_at": "2024-05-22T10:35:11.178Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 60, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 80, + "fields": { + "created_at": "2024-05-22T10:35:11.258Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 60, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 81, + "fields": { + "created_at": "2024-05-22T10:35:11.315Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 52, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 82, + "fields": { + "created_at": "2024-05-22T10:35:11.382Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 52, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 83, + "fields": { + "created_at": "2024-05-22T10:35:11.434Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 65, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 84, + "fields": { + "created_at": "2024-05-22T10:35:11.496Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 65, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 85, + "fields": { + "created_at": "2024-05-22T10:35:11.566Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 45, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 86, + "fields": { + "created_at": "2024-05-22T10:35:11.640Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 45, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 87, + "fields": { + "created_at": "2024-05-22T10:35:11.697Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 20, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 88, + "fields": { + "created_at": "2024-05-22T10:35:11.774Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 20, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 89, + "fields": { + "created_at": "2024-05-22T10:35:11.838Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 25, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 90, + "fields": { + "created_at": "2024-05-22T10:35:11.961Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 25, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 91, + "fields": { + "created_at": "2024-05-22T10:35:12.038Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 21, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 92, + "fields": { + "created_at": "2024-05-22T10:35:12.111Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 21, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 93, + "fields": { + "created_at": "2024-05-22T10:35:12.182Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 59, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 94, + "fields": { + "created_at": "2024-05-22T10:35:12.241Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 59, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 95, + "fields": { + "created_at": "2024-05-22T10:35:12.312Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 32, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 96, + "fields": { + "created_at": "2024-05-22T10:35:12.371Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 32, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 97, + "fields": { + "created_at": "2024-05-22T10:35:12.430Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 23, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 98, + "fields": { + "created_at": "2024-05-22T10:35:12.496Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 23, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 99, + "fields": { + "created_at": "2024-05-22T10:35:12.566Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 6, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 100, + "fields": { + "created_at": "2024-05-22T10:35:12.631Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 6, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 101, + "fields": { + "created_at": "2024-05-22T10:35:12.694Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 102, + "fields": { + "created_at": "2024-05-22T10:35:12.749Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 10, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 103, + "fields": { + "created_at": "2024-05-22T10:35:12.822Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 2, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 104, + "fields": { + "created_at": "2024-05-22T10:35:12.902Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 2, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 105, + "fields": { + "created_at": "2024-05-22T10:35:12.961Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 38, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 106, + "fields": { + "created_at": "2024-05-22T10:35:13.028Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 38, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 107, + "fields": { + "created_at": "2024-05-22T10:35:13.099Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 50, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 108, + "fields": { + "created_at": "2024-05-22T10:35:13.161Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 50, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 109, + "fields": { + "created_at": "2024-05-22T10:35:13.244Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 64, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 110, + "fields": { + "created_at": "2024-05-22T10:35:13.297Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 64, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 111, + "fields": { + "created_at": "2024-05-22T10:35:13.364Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 17, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 112, + "fields": { + "created_at": "2024-05-22T10:35:13.428Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 17, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 113, + "fields": { + "created_at": "2024-05-22T10:35:13.480Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 42, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 114, + "fields": { + "created_at": "2024-05-22T10:35:13.547Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 42, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 115, + "fields": { + "created_at": "2024-05-22T10:35:13.606Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 72, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 116, + "fields": { + "created_at": "2024-05-22T10:35:13.663Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 72, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 117, + "fields": { + "created_at": "2024-05-22T10:35:13.727Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 31, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 118, + "fields": { + "created_at": "2024-05-22T10:35:13.779Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 31, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 119, + "fields": { + "created_at": "2024-05-22T10:35:13.837Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 120, + "fields": { + "created_at": "2024-05-22T10:35:13.897Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 46, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 121, + "fields": { + "created_at": "2024-05-22T10:35:13.974Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 74, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 122, + "fields": { + "created_at": "2024-05-22T10:35:14.031Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 74, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 123, + "fields": { + "created_at": "2024-05-22T10:35:14.099Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 57, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 124, + "fields": { + "created_at": "2024-05-22T10:35:14.163Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 57, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 125, + "fields": { + "created_at": "2024-05-22T10:35:14.246Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 54, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 126, + "fields": { + "created_at": "2024-05-22T10:35:14.312Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 54, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 127, + "fields": { + "created_at": "2024-05-22T10:35:14.378Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 61, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 128, + "fields": { + "created_at": "2024-05-22T10:35:14.428Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 61, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 129, + "fields": { + "created_at": "2024-05-22T10:35:14.493Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 19, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 130, + "fields": { + "created_at": "2024-05-22T10:35:14.547Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 19, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 131, + "fields": { + "created_at": "2024-05-22T10:35:14.594Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 3, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 132, + "fields": { + "created_at": "2024-05-22T10:35:14.646Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 3, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 133, + "fields": { + "created_at": "2024-05-22T10:35:14.696Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 34, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 134, + "fields": { + "created_at": "2024-05-22T10:35:14.744Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 34, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 135, + "fields": { + "created_at": "2024-05-22T10:35:14.794Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 35, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 136, + "fields": { + "created_at": "2024-05-22T10:35:14.846Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 35, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 137, + "fields": { + "created_at": "2024-05-22T10:35:14.896Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 69, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 138, + "fields": { + "created_at": "2024-05-22T10:35:14.944Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 69, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 139, + "fields": { + "created_at": "2024-05-22T10:35:15.011Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 73, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 140, + "fields": { + "created_at": "2024-05-22T10:35:15.061Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 73, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 141, + "fields": { + "created_at": "2024-05-22T10:35:15.113Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 53, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 142, + "fields": { + "created_at": "2024-05-22T10:35:15.162Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 53, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 143, + "fields": { + "created_at": "2024-05-22T10:35:15.212Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 48, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 144, + "fields": { + "created_at": "2024-05-22T10:35:15.278Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 48, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 145, + "fields": { + "created_at": "2024-05-22T10:35:15.338Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 67, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 146, + "fields": { + "created_at": "2024-05-22T10:35:15.388Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 67, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 147, + "fields": { + "created_at": "2024-05-22T10:35:15.444Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 29, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 148, + "fields": { + "created_at": "2024-05-22T10:35:15.504Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 29, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 149, + "fields": { + "created_at": "2024-05-22T10:35:15.578Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 41, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 150, + "fields": { + "created_at": "2024-05-22T10:35:15.628Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 41, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 151, + "fields": { + "created_at": "2024-05-22T10:35:15.685Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 49, + "leave_type_id": 3, + "available_days": 10.0, + "carryforward_days": 0.0, + "total_leave_days": 10.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.availableleave", + "pk": 152, + "fields": { + "created_at": "2024-05-22T10:35:15.743Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 49, + "leave_type_id": 2, + "available_days": 1.0, + "carryforward_days": 0.0, + "total_leave_days": 1.0, + "assigned_date": "2024-05-22", + "reset_date": "2024-06-01", + "expired_date": null + } + }, + { + "model": "leave.leaverequest", + "pk": 1, + "fields": { + "created_at": "2024-05-23T12:02:05.620Z", + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "leave_type_id": 2, + "start_date": "2024-05-08", + "start_date_breakdown": "full_day", + "end_date": "2024-05-08", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "i have to go to the bank", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 2, + "fields": { + "created_at": "2024-05-23T12:02:42.988Z", + "modified_by": 1, + "is_active": true, + "employee_id": 68, + "leave_type_id": 2, + "start_date": "2024-05-15", + "start_date_breakdown": "full_day", + "end_date": "2024-05-15", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "i need a break", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 3, + "fields": { + "created_at": "2024-05-23T12:05:12.635Z", + "modified_by": 1, + "is_active": true, + "employee_id": 62, + "leave_type_id": 3, + "start_date": "2024-05-10", + "start_date_breakdown": "full_day", + "end_date": "2024-05-10", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "i have a fever", + "attachment": "leave/leave_attachment/prescription.webp", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 4, + "fields": { + "created_at": "2024-05-23T12:05:56.346Z", + "modified_by": 1, + "is_active": true, + "employee_id": 36, + "leave_type_id": 2, + "start_date": "2024-05-14", + "start_date_breakdown": "full_day", + "end_date": "2024-05-14", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "leave", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 5, + "fields": { + "created_at": "2024-05-23T12:06:39.604Z", + "modified_by": 1, + "is_active": true, + "employee_id": 65, + "leave_type_id": 2, + "start_date": "2024-05-13", + "start_date_breakdown": "full_day", + "end_date": "2024-05-13", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "leave", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 6, + "fields": { + "created_at": "2024-05-23T12:07:03.890Z", + "modified_by": 1, + "is_active": true, + "employee_id": 39, + "leave_type_id": 2, + "start_date": "2024-05-30", + "start_date_breakdown": "full_day", + "end_date": "2024-05-30", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "i need a leave", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 7, + "fields": { + "created_at": "2024-05-23T12:07:27.352Z", + "modified_by": 1, + "is_active": true, + "employee_id": 13, + "leave_type_id": 2, + "start_date": "2024-05-28", + "start_date_breakdown": "full_day", + "end_date": "2024-05-28", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "hello", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 8, + "fields": { + "created_at": "2024-05-23T12:07:48.842Z", + "modified_by": 1, + "is_active": true, + "employee_id": 63, + "leave_type_id": 2, + "start_date": "2024-05-17", + "start_date_breakdown": "full_day", + "end_date": "2024-05-17", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "hello", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 9, + "fields": { + "created_at": "2024-05-23T12:08:17.706Z", + "modified_by": 1, + "is_active": true, + "employee_id": 61, + "leave_type_id": 3, + "start_date": "2024-05-08", + "start_date_breakdown": "full_day", + "end_date": "2024-05-08", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "hello", + "attachment": "leave/leave_attachment/prescription_KXla4rB.webp", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 10, + "fields": { + "created_at": "2024-05-23T12:08:45.359Z", + "modified_by": 1, + "is_active": true, + "employee_id": 42, + "leave_type_id": 2, + "start_date": "2024-05-29", + "start_date_breakdown": "full_day", + "end_date": "2024-05-29", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "leave", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 11, + "fields": { + "created_at": "2024-05-23T12:09:26.321Z", + "modified_by": 1, + "is_active": true, + "employee_id": 3, + "leave_type_id": 2, + "start_date": "2024-05-28", + "start_date_breakdown": "full_day", + "end_date": "2024-05-28", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "leave", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 12, + "fields": { + "created_at": "2024-05-23T12:09:58.526Z", + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "leave_type_id": 2, + "start_date": "2024-05-25", + "start_date_breakdown": "full_day", + "end_date": "2024-05-25", + "end_date_breakdown": "full_day", + "requested_days": 0.0, + "leave_clashes_count": 0, + "description": "on a trip", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaverequest", + "pk": 13, + "fields": { + "created_at": "2024-05-23T12:10:23.607Z", + "modified_by": 1, + "is_active": true, + "employee_id": 66, + "leave_type_id": 2, + "start_date": "2024-05-29", + "start_date_breakdown": "full_day", + "end_date": "2024-05-29", + "end_date_breakdown": "full_day", + "requested_days": 1.0, + "leave_clashes_count": 0, + "description": "leave", + "attachment": "", + "status": "requested", + "requested_date": "2024-05-23", + "approved_available_days": 0.0, + "approved_carryforward_days": 0.0, + "reject_reason": "", + "created_by": 1 + } + }, + { + "model": "leave.leaveallocationrequest", + "pk": 1, + "fields": { + "created_at": "2024-09-16T08:00:42.965Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "leave_type_id": 4, + "employee_id": 12, + "requested_days": 10.0, + "requested_date": "2024-09-16", + "description": "Kindly request to allocate this leave type", + "attachment": "", + "status": "requested", + "reject_reason": "" + } + }, + { + "model": "leave.leaveallocationrequest", + "pk": 2, + "fields": { + "created_at": "2024-09-16T08:01:28.674Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "leave_type_id": 3, + "employee_id": 63, + "requested_days": 10.0, + "requested_date": "2024-09-16", + "description": "Request to allcoate some additional available leaves for this leave type", + "attachment": "", + "status": "requested", + "reject_reason": "" + } + }, + { + "model": "leave.leaveallocationrequest", + "pk": 3, + "fields": { + "created_at": "2024-09-16T08:01:53.526Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "leave_type_id": 4, + "employee_id": 8, + "requested_days": 30.0, + "requested_date": "2024-09-16", + "description": "Kindly request to allocate this leave type", + "attachment": "", + "status": "requested", + "reject_reason": "" + } + }, + { + "model": "leave.restrictleave", + "pk": 2, + "fields": { + "created_at": "2024-09-16T08:06:27.474Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Critical Projects", + "start_date": "2024-09-16", + "end_date": "2024-09-16", + "department": 1, + "description": "Horilla Project Installation", + "job_position": [] + } + }, + { + "model": "leave.restrictleave", + "pk": 3, + "fields": { + "created_at": "2024-09-16T08:07:02.327Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Product launch week", + "start_date": "2024-09-23", + "end_date": "2024-09-27", + "department": 2, + "description": "Luanch Horilla", + "job_position": [] + } + }, + { + "model": "leave.restrictleave", + "pk": 4, + "fields": { + "created_at": "2024-09-16T08:07:48.937Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Sales Days", + "start_date": "2024-12-24", + "end_date": "2024-12-26", + "department": 2, + "description": "Chirstmas Sales", + "job_position": [] + } + } +] diff --git a/load_data/pms_data.json b/load_data/pms_data.json new file mode 100644 index 000000000..ce22d6553 --- /dev/null +++ b/load_data/pms_data.json @@ -0,0 +1,316 @@ +[ + { + "model": "pms.keyresult", + "pk": 1, + "fields": { + "created_at": "2024-09-17T09:31:25.485Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Contact Customer", + "description": "Description", + "progress_type": "%", + "target_value": 100, + "duration": 10, + "archive": false, + "company_id": 1 + } + }, + { + "model": "pms.keyresult", + "pk": 2, + "fields": { + "created_at": "2024-09-17T09:32:03.931Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Digital Marketing", + "description": "Descriptio", + "progress_type": "%", + "target_value": 100, + "duration": 10, + "archive": false, + "company_id": 1 + } + }, + { + "model": "pms.keyresult", + "pk": 3, + "fields": { + "created_at": "2024-09-17T09:32:55.218Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Social Media Influvencer", + "description": "Description", + "progress_type": "%", + "target_value": 100, + "duration": 2, + "archive": false, + "company_id": 1 + } + }, + { + "model": "pms.objective", + "pk": 1, + "fields": { + "created_at": "2024-09-17T09:33:00.753Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Increase Sales", + "description": "Description", + "duration_unit": "months", + "duration": 1, + "add_assignees": false, + "archive": false, + "company_id": null, + "managers": [37], + "assignees": [12, 13, 68], + "key_result_id": [3, 2, 1] + } + }, + { + "model": "pms.employeeobjective", + "pk": 1, + "fields": { + "created_by": 1, + "modified_by": 1, + "is_active": true, + "objective": null, + "objective_description": null, + "created_at": "2024-09-17", + "objective_id": 1, + "employee_id": 12, + "updated_at": "2024-09-17", + "start_date": "2024-09-23", + "end_date": "2024-10-23", + "status": "Not Started", + "progress_percentage": 0, + "archive": false, + "key_result_id": [] + } + }, + { + "model": "pms.employeeobjective", + "pk": 2, + "fields": { + "created_by": 1, + "modified_by": 1, + "is_active": true, + "objective": null, + "objective_description": null, + "created_at": "2024-09-17", + "objective_id": 1, + "employee_id": 13, + "updated_at": "2024-09-17", + "start_date": "2024-09-23", + "end_date": "2024-10-23", + "status": "Not Started", + "progress_percentage": 0, + "archive": false, + "key_result_id": [] + } + }, + { + "model": "pms.employeeobjective", + "pk": 3, + "fields": { + "created_by": 1, + "modified_by": 1, + "is_active": true, + "objective": null, + "objective_description": null, + "created_at": "2024-09-17", + "objective_id": 1, + "employee_id": 68, + "updated_at": "2024-09-17", + "start_date": "2024-09-23", + "end_date": "2024-10-23", + "status": "Not Started", + "progress_percentage": 0, + "archive": false, + "key_result_id": [] + } + }, + { + "model": "pms.employeekeyresult", + "pk": 1, + "fields": { + "key_result": "Social Media Influvencer", + "key_result_description": null, + "employee_objective_id": 1, + "key_result_id": 3, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + }, + { + "model": "pms.employeekeyresult", + "pk": 2, + "fields": { + "key_result": "Digital Marketing", + "key_result_description": null, + "employee_objective_id": 1, + "key_result_id": 2, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + }, + { + "model": "pms.employeekeyresult", + "pk": 3, + "fields": { + "key_result": "Contact Customer", + "key_result_description": null, + "employee_objective_id": 1, + "key_result_id": 1, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + }, + { + "model": "pms.employeekeyresult", + "pk": 4, + "fields": { + "key_result": "Social Media Influvencer", + "key_result_description": null, + "employee_objective_id": 2, + "key_result_id": 3, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + }, + { + "model": "pms.employeekeyresult", + "pk": 5, + "fields": { + "key_result": "Digital Marketing", + "key_result_description": null, + "employee_objective_id": 2, + "key_result_id": 2, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + }, + { + "model": "pms.employeekeyresult", + "pk": 6, + "fields": { + "key_result": "Contact Customer", + "key_result_description": null, + "employee_objective_id": 2, + "key_result_id": 1, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + }, + { + "model": "pms.employeekeyresult", + "pk": 7, + "fields": { + "key_result": "Social Media Influvencer", + "key_result_description": null, + "employee_objective_id": 3, + "key_result_id": 3, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + }, + { + "model": "pms.employeekeyresult", + "pk": 8, + "fields": { + "key_result": "Digital Marketing", + "key_result_description": null, + "employee_objective_id": 3, + "key_result_id": 2, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + }, + { + "model": "pms.employeekeyresult", + "pk": 9, + "fields": { + "key_result": "Contact Customer", + "key_result_description": null, + "employee_objective_id": 3, + "key_result_id": 1, + "progress_type": "%", + "status": "Not Started", + "created_at": "2024-09-17", + "updated_at": "2024-09-17", + "start_value": 0, + "current_value": 0, + "target_value": 100, + "start_date": null, + "end_date": null, + "progress_percentage": 0 + } + } +] diff --git a/load_data/recruitment_data.json b/load_data/recruitment_data.json new file mode 100644 index 000000000..5ad314b3d --- /dev/null +++ b/load_data/recruitment_data.json @@ -0,0 +1,976 @@ +[ + { + "model": "recruitment.recruitment", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:48:40.136Z", + "created_by": 1, + "modified_by": 1, + "title": "Recruitment Drive", + "description": "

Position: Django Developer & ODOO dev

Job Description:

We are seeking a skilled Django Developers and ODOO developers to join our dynamic team. The ideal candidate will have a strong background in web development with a focus on the Django framework. You will be responsible for designing, building, and maintaining high-performance web applications that are scalable and secure.

Key Responsibilities:

Develop and maintain web applications using Django.

Write clean, maintainable, and efficient code.

Design and implement robust APIs.

Collaborate with front-end developers to integrate user-facing elements.

Optimize applications for maximum speed and scalability.

Participate in code reviews to maintain code quality and share knowledge.

Stay updated with the latest industry trends and technologies.

Requirements:

Proven experience as a Django Developer.

Proficient in Python and Django framework.

Familiarity with front-end technologies (JavaScript, HTML5, CSS3).

Experience with relational databases (PostgreSQL, MySQL).

Knowledge of version control systems (Git).

Understanding of RESTful APIs and web services.

Strong problem-solving skills and attention to detail.

Excellent communication and teamwork skills.

BachelorÆs degree in Computer Science, Engineering, or a related field.

Preferred Qualifications:

Experience with cloud platforms (AWS, Azure, GCP).

Knowledge of containerization and orchestration (Docker, Kubernetes).

Familiarity with Agile development methodologies.

", + "is_event_based": false, + "closed": false, + "is_published": true, + "is_active": true, + "job_position_id": null, + "vacancy": 15, + "company_id": 1, + "start_date": "2024-05-01", + "end_date": "2024-05-31", + "optional_profile_image": false, + "optional_resume": false, + "open_positions": [1, 2], + "recruitment_managers": [12, 1], + "survey_templates": [], + "skills": [] + } + }, + { + "model": "recruitment.recruitment", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:55:43.899Z", + "created_by": 1, + "modified_by": 1, + "title": "FutureForce Recruitment", + "description": "

We are looking for a motivated and dynamic Salesman to join our team. The ideal candidate will have a passion for sales, excellent communication skills, and a knack for building relationships with customers. You will play a key role in driving our business growth by meeting sales targets and providing outstanding customer service.

", + "is_event_based": false, + "closed": false, + "is_published": true, + "is_active": true, + "job_position_id": null, + "vacancy": 10, + "company_id": 1, + "start_date": "2024-01-01", + "end_date": "2024-06-30", + "optional_profile_image": false, + "optional_resume": false, + "open_positions": [3], + "recruitment_managers": [68], + "survey_templates": [], + "skills": [] + } + }, + { + "model": "recruitment.recruitment", + "pk": 3, + "fields": { + "created_at": "2024-05-22T09:03:26.892Z", + "created_by": 1, + "modified_by": 1, + "title": "Hiring Employees", + "description": "

We are seeking a skilled Django Developer to join our dynamic team. The ideal candidate will have a strong background in web development with a focus on the Django framework. You will be responsible for designing, building, and maintaining high-performance web applications that are scalable and secure.

", + "is_event_based": false, + "closed": true, + "is_published": true, + "is_active": true, + "job_position_id": null, + "vacancy": 5, + "company_id": null, + "start_date": "2024-01-01", + "end_date": "2024-01-31", + "optional_profile_image": false, + "optional_resume": false, + "open_positions": [1, 2, 4], + "recruitment_managers": [1], + "survey_templates": [], + "skills": [] + } + }, + { + "model": "recruitment.stage", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:48:40.159Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "recruitment_id": 1, + "stage": "Initial", + "stage_type": "initial", + "sequence": 0, + "stage_managers": [] + } + }, + { + "model": "recruitment.stage", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:55:43.916Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "recruitment_id": 2, + "stage": "Initial", + "stage_type": "initial", + "sequence": 0, + "stage_managers": [] + } + }, + { + "model": "recruitment.stage", + "pk": 3, + "fields": { + "created_at": "2024-05-22T09:03:26.902Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "recruitment_id": 3, + "stage": "Initial", + "stage_type": "initial", + "sequence": 0, + "stage_managers": [] + } + }, + { + "model": "recruitment.stage", + "pk": 4, + "fields": { + "created_at": "2024-05-22T09:15:46.474Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "recruitment_id": 1, + "stage": "Interview", + "stage_type": "interview", + "sequence": 1, + "stage_managers": [1] + } + }, + { + "model": "recruitment.stage", + "pk": 5, + "fields": { + "created_at": "2024-05-22T09:16:06.315Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "recruitment_id": 1, + "stage": "Hired", + "stage_type": "hired", + "sequence": 2, + "stage_managers": [12] + } + }, + { + "model": "recruitment.stage", + "pk": 6, + "fields": { + "created_at": "2024-05-22T09:16:23.112Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "recruitment_id": 1, + "stage": "Cancelled", + "stage_type": "cancelled", + "sequence": 3, + "stage_managers": [12] + } + }, + { + "model": "recruitment.stage", + "pk": 7, + "fields": { + "created_at": "2024-05-22T09:50:57.811Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "recruitment_id": 2, + "stage": "Hired", + "stage_type": "hired", + "sequence": 1, + "stage_managers": [37] + } + }, + { + "model": "recruitment.candidate", + "pk": 1, + "fields": { + "created_at": "2024-05-22T09:15:26.692Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Liam Bennett", + "profile": "recruitment/profile/profile-pic-boy.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 5, + "converted_employee_id": null, + "schedule_date": null, + "email": "liam.bennett@horilla.com", + "mobile": "9876540101", + "resume": "recruitment/resume/resume.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "male", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 0, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-06-21" + } + }, + { + "model": "recruitment.candidate", + "pk": 2, + "fields": { + "created_at": "2024-05-22T09:17:20.896Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Ava Mitchell", + "profile": "recruitment/profile/profile-pic-girl.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 1, + "converted_employee_id": null, + "schedule_date": null, + "email": "ava.mitchell@horilla.com", + "mobile": "9876540102", + "resume": "recruitment/resume/resume_HjTNWZS.pdf", + "referral": null, + "address": "", + "country": "None", + "dob": null, + "state": "None", + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 1, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 3, + "fields": { + "created_at": "2024-05-22T09:18:12.908Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Noah Anderson", + "profile": "recruitment/profile/profile-pic-boy_3x50CKJ.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 6, + "converted_employee_id": null, + "schedule_date": null, + "email": "noah.anderson@horilla.com", + "mobile": "9876540103", + "resume": "recruitment/resume/resume_CJGP0i7.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "male", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 0, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 4, + "fields": { + "created_at": "2024-05-22T09:19:04.142Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Sophia Carter", + "profile": "recruitment/profile/profile-pic-girl_pdfLQmu.jpg", + "portfolio": "", + "recruitment_id": 2, + "job_position_id": 3, + "stage_id": 2, + "converted_employee_id": null, + "schedule_date": null, + "email": "sophia.carter@horilla.com", + "mobile": "9876540104", + "resume": "recruitment/resume/resume_isLsD8M.pdf", + "referral": null, + "address": "", + "country": "None", + "dob": null, + "state": "None", + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 0, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 5, + "fields": { + "created_at": "2024-05-22T09:27:04.406Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Elijah Collins", + "profile": "recruitment/profile/profile-pic-girl_71HjRz0.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 1, + "converted_employee_id": null, + "schedule_date": null, + "email": "isabella.morris@horilla.com", + "mobile": "9876540106", + "resume": "recruitment/resume/resume_Mr8M3VL.pdf", + "referral": null, + "address": "", + "country": "None", + "dob": null, + "state": "None", + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 2, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 6, + "fields": { + "created_at": "2024-05-22T09:28:20.410Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Lucas Rogers", + "profile": "recruitment/profile/profile-pic-boy_8BU4hEF.jpg", + "portfolio": "", + "recruitment_id": 2, + "job_position_id": 3, + "stage_id": 7, + "converted_employee_id": null, + "schedule_date": null, + "email": "lucas.rogers@horilla.com", + "mobile": "9876540107", + "resume": "recruitment/resume/resume_SjCrKeM.pdf", + "referral": null, + "address": "", + "country": "None", + "dob": null, + "state": "None", + "city": null, + "zip": null, + "gender": "male", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 0, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 7, + "fields": { + "created_at": "2024-05-22T09:29:03.806Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Mia Reed", + "profile": "recruitment/profile/profile-pic-girl_JQCdXBh.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 4, + "converted_employee_id": null, + "schedule_date": null, + "email": "mia.reed@horilla.com", + "mobile": "9876540108", + "resume": "recruitment/resume/resume_ZGFTZr3.pdf", + "referral": null, + "address": "", + "country": "None", + "dob": null, + "state": "None", + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": true, + "hired": true, + "canceled": false, + "joining_date": "2024-05-15", + "sequence": 0, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-06-21" + } + }, + { + "model": "recruitment.candidate", + "pk": 8, + "fields": { + "created_at": "2024-05-22T09:30:53.508Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "William Peterson", + "profile": "recruitment/profile/profile-pic-boy_ptJZGTj.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 5, + "converted_employee_id": null, + "schedule_date": null, + "email": "william.peterson@horilla.com", + "mobile": "9876540109", + "resume": "recruitment/resume/resume_W98xQYe.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "male", + "source": null, + "start_onboard": true, + "hired": true, + "canceled": false, + "joining_date": "2024-05-15", + "sequence": 2, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-06-21" + } + }, + { + "model": "recruitment.candidate", + "pk": 9, + "fields": { + "created_at": "2024-05-22T09:32:33.155Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Emily Turner", + "profile": "recruitment/profile/profile-pic-girl_faJKmXQ.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 5, + "converted_employee_id": null, + "schedule_date": null, + "email": "emily.turner@horilla.com", + "mobile": "9876540110", + "resume": "recruitment/resume/resume_6x1QM7Z.pdf", + "referral": null, + "address": "", + "country": "None", + "dob": null, + "state": "None", + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": true, + "hired": true, + "canceled": false, + "joining_date": "2024-05-15", + "sequence": 1, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 10, + "fields": { + "created_at": "2024-05-22T09:35:18.587Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "James Perry", + "profile": "recruitment/profile/profile-pic-boy_F0C3uYX.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 6, + "converted_employee_id": null, + "schedule_date": null, + "email": "james.perry@horilla.com", + "mobile": "9876540111", + "resume": "recruitment/resume/resume_k4pB5mo.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "male", + "source": null, + "start_onboard": false, + "hired": true, + "canceled": false, + "joining_date": "2024-04-17", + "sequence": 1, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 11, + "fields": { + "created_at": "2024-05-22T09:39:58.366Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Olivia Coleman", + "profile": "recruitment/profile/profile-pic-girl_qk2wNe3.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 5, + "converted_employee_id": null, + "schedule_date": null, + "email": "olivia.coleman@horilla.com", + "mobile": "9876540112", + "resume": "recruitment/resume/resume_Toa3pyH.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": false, + "hired": true, + "canceled": false, + "joining_date": "2024-04-17", + "sequence": 3, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 12, + "fields": { + "created_at": "2024-05-22T09:41:43.261Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Benjamin Foster", + "profile": "recruitment/profile/profile-pic-boy_ScKEVYB.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 1, + "converted_employee_id": null, + "schedule_date": null, + "email": "benjamin.foster@horilla.com", + "mobile": "9876540113", + "resume": "recruitment/resume/resume_uIv7EBy.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "male", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 3, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 13, + "fields": { + "created_at": "2024-05-22T09:42:23.436Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Charlotte Brooks", + "profile": "recruitment/profile/profile-pic-girl_G4XKTol.jpg", + "portfolio": "", + "recruitment_id": 2, + "job_position_id": 3, + "stage_id": 2, + "converted_employee_id": null, + "schedule_date": null, + "email": "charlotte.brooks@horilla.com", + "mobile": "9876540114", + "resume": "recruitment/resume/resume_8LRlV56.pdf", + "referral": null, + "address": "", + "country": "None", + "dob": null, + "state": "None", + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 1, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 14, + "fields": { + "created_at": "2024-05-22T09:43:13.951Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Henry Jenkins", + "profile": "recruitment/profile/profile-pic-boy_s01KZ40.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 1, + "converted_employee_id": null, + "schedule_date": null, + "email": "henry.jenkins@horilla.com", + "mobile": "9876540115", + "resume": "recruitment/resume/resume_0Nvfipm.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "male", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 4, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 15, + "fields": { + "created_at": "2024-05-22T09:44:42.216Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Amelia Hayes", + "profile": "recruitment/profile/profile-pic-girl_fTSC0TU.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 1, + "converted_employee_id": null, + "schedule_date": null, + "email": "amelia.hayes@horilla.com", + "mobile": "9876540116", + "resume": "recruitment/resume/resume_gPOC7cN.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 5, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 16, + "fields": { + "created_at": "2024-05-22T09:45:16.185Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Grace Price", + "profile": "recruitment/profile/profile-pic-girl_FrIk14d.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 1, + "converted_employee_id": null, + "schedule_date": null, + "email": "grace.price@horilla.com", + "mobile": "9876540118", + "resume": "recruitment/resume/resume_ru3PeM7.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "female", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 6, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.candidate", + "pk": 17, + "fields": { + "created_at": "2024-05-22T09:45:47.746Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "name": "Sebastian Howard", + "profile": "recruitment/profile/profile-pic-boy_hFrhE2S.jpg", + "portfolio": "", + "recruitment_id": 1, + "job_position_id": 1, + "stage_id": 1, + "converted_employee_id": null, + "schedule_date": null, + "email": "sebastian.howard@horilla.com", + "mobile": "9876540117", + "resume": "recruitment/resume/resume_AQzECPu.pdf", + "referral": null, + "address": null, + "country": null, + "dob": null, + "state": null, + "city": null, + "zip": null, + "gender": "male", + "source": null, + "start_onboard": false, + "hired": false, + "canceled": false, + "joining_date": null, + "sequence": 7, + "probation_end": null, + "offer_letter_status": "not_sent", + "last_updated": "2024-05-22" + } + }, + { + "model": "recruitment.rejectreason", + "pk": 1, + "fields": { + "created_at": "2024-05-22T08:27:14.458Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Long distance", + "description": "Employee have to travel long distance", + "company_id": null + } + }, + { + "model": "recruitment.rejectreason", + "pk": 2, + "fields": { + "created_at": "2024-05-22T08:28:07.731Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Salary misagreement", + "description": "Employees not statisfied the salary package", + "company_id": null + } + }, + { + "model": "recruitment.skillzone", + "pk": 1, + "fields": { + "created_at": "2024-05-22T10:10:06.363Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Designer", + "description": "candidates with promising design skill are added here", + "company_id": null + } + }, + { + "model": "recruitment.skillzone", + "pk": 2, + "fields": { + "created_at": "2024-05-22T10:11:06.363Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Social Media Influencer", + "description": "candidates with promising design skill are added here", + "company_id": null + } + }, + { + "model": "recruitment.skillzonecandidate", + "pk": 1, + "fields": { + "created_at": "2024-05-22T10:10:37.109Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "skill_zone_id": 1, + "candidate_id": 3, + "reason": "better design knowledge", + "added_on": "2024-05-22" + } + }, + { + "model": "recruitment.candidaterating", + "pk": 1, + "fields": { + "created_at": "2024-06-21T08:38:48.996Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "employee_id": 1, + "candidate_id": 6, + "rating": 3 + } + }, + { + "model": "recruitment.interviewschedule", + "pk": 1, + "fields": { + "created_at": "2024-05-22T09:59:26.359Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "candidate_id": 15, + "interview_date": "2024-05-24", + "interview_time": "10:30:00", + "description": "", + "completed": false, + "employee_id": [1] + } + }, + { + "model": "recruitment.surveytemplate", + "pk": 1, + "fields": { + "created_at": "2024-09-17T09:03:25.711Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "title": "Python Question Template", + "description": "Description", + "is_general_template": false, + "company_id": 1 + } + }, + { + "model": "recruitment.recruitmentsurvey", + "pk": 1, + "fields": { + "created_at": "2024-09-17T09:06:47.055Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "is_mandatory": false, + "question": "What is Python, and what are its key features?", + "sequence": 0, + "type": "text", + "options": "", + "template_id": [1], + "recruitment_ids": [1], + "job_position_ids": [] + } + }, + { + "model": "recruitment.recruitmentsurvey", + "pk": 2, + "fields": { + "created_at": "2024-09-17T09:07:14.100Z", + "created_by": 1, + "modified_by": 1, + "is_active": true, + "is_mandatory": false, + "question": "What is the difference between a list and a tuple?", + "sequence": 0, + "type": "text", + "options": "", + "template_id": [1], + "recruitment_ids": [1], + "job_position_ids": [] + } + } +] diff --git a/load_data/user_data.json b/load_data/user_data.json new file mode 100644 index 000000000..012d6705e --- /dev/null +++ b/load_data/user_data.json @@ -0,0 +1,1424 @@ +[ + { + "model": "auth.user", + "pk": 1, + "fields": { + "password": "pbkdf2_sha256$600000$WQ9rU3gYlcBtOFWwluD7oa$pkRudBQd3KmML/Lh74aP2AWpfuAkOBrFn+Nuf2td7ZE=", + "last_login": "2024-08-26T09:40:06.169Z", + "is_superuser": true, + "username": "admin", + "first_name": "", + "last_name": "", + "email": "adam.luis@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-21T11:22:30Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 2, + "fields": { + "password": "pbkdf2_sha256$600000$3HNu18AmlWxXpi27sesfbK$RCz4NFXP79GNldoi3eIJKKiG5n87lUvmaofdfEyCbuw=", + "last_login": null, + "is_superuser": false, + "username": "Horilla Bot", + "first_name": "", + "last_name": "", + "email": "", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-21T11:22:31.280Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 3, + "fields": { + "password": "pbkdf2_sha256$600000$2xLziw2f6cXHRreJJzPmo6$qYe//Bnu5ITy/YJTdWwz7YnNyG9BUY99TGtqNT2wVEM=", + "last_login": null, + "is_superuser": false, + "username": "michael.brown@horilla.com", + "first_name": "", + "last_name": "", + "email": "michael.brown@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:23.080Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 4, + "fields": { + "password": "pbkdf2_sha256$600000$2yp41R3gOPP1jSeRdv0Bhf$384rc6BZKNlowelYu5a/SXl3RPcL1aom3fxpZHBEdIA=", + "last_login": null, + "is_superuser": false, + "username": "sarah.anderson@horilla.com", + "first_name": "", + "last_name": "", + "email": "sarah.anderson@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:23.771Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 5, + "fields": { + "password": "pbkdf2_sha256$600000$69nMtafJdvTbcTNJV3bgUA$czFT5zRAFtstOe3JA5cTF1DGCHK0Pg9Q8EWnS0OYOXc=", + "last_login": null, + "is_superuser": false, + "username": "emily.clark@horilla.com", + "first_name": "", + "last_name": "", + "email": "emily.clark@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:24.351Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 6, + "fields": { + "password": "pbkdf2_sha256$600000$Yxahl5oQlH2N1wd37rO0WG$n8Iuy1SFVnv3+Jmjp9M7RAKCFGaQOgr4AlzBZeiIm8o=", + "last_login": null, + "is_superuser": false, + "username": "jessica.evans@horilla.com", + "first_name": "", + "last_name": "", + "email": "jessica.evans@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:24.916Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 7, + "fields": { + "password": "pbkdf2_sha256$600000$RXH58re6YqRySsF8DdKFx4$zeOx2jyWDKcHAiil+zFzOz4dyXIr6MzknfpzM8SQxeQ=", + "last_login": null, + "is_superuser": false, + "username": "matthew.harris@horilla.com", + "first_name": "", + "last_name": "", + "email": "matthew.harris@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:25.467Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 8, + "fields": { + "password": "pbkdf2_sha256$600000$awFV5Qsg2PN9D2LggBqiT2$+uHvGILqP71IT7wU2YzAZJcL2fnsXV6ItS2xG/Yo+Uc=", + "last_login": null, + "is_superuser": false, + "username": "david.king@horilla.com", + "first_name": "", + "last_name": "", + "email": "david.king@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:26.035Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 9, + "fields": { + "password": "pbkdf2_sha256$600000$mCdEx47lOpdoSchfM6asgL$9alsquLXrp6re0brZTsW5eRcLEmqqRJiqsx11ZV12k8=", + "last_login": null, + "is_superuser": false, + "username": "emma.lee@horilla.com", + "first_name": "", + "last_name": "", + "email": "emma.lee@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:26.602Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 10, + "fields": { + "password": "pbkdf2_sha256$600000$14mYQF9kabMWmCc1gTLAW0$lIbw/3aQ4BJEBC1mdWWlmSSoB/JwTuiSxZI40BHAh4s=", + "last_login": null, + "is_superuser": false, + "username": "christopher.miller@horilla.com", + "first_name": "", + "last_name": "", + "email": "christopher.miller@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:27.218Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 11, + "fields": { + "password": "pbkdf2_sha256$600000$w6E97ABahVnNeG431jvXk0$5zgvM8Veis+ssD1Fly27Z2rsEgtmeb+yMastGvxdhv4=", + "last_login": null, + "is_superuser": false, + "username": "mia.nelson@horilla.com", + "first_name": "", + "last_name": "", + "email": "mia.nelson@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:27.791Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 12, + "fields": { + "password": "pbkdf2_sha256$600000$bHZlJC8f9908C3pgz7rRSw$DLembv+IyP8H0MfsGHpw2X1PboWW6Pnx57vpH5GBgU8=", + "last_login": null, + "is_superuser": false, + "username": "benjamin.parker@horilla.com", + "first_name": "", + "last_name": "", + "email": "benjamin.parker@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:28.417Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 13, + "fields": { + "password": "pbkdf2_sha256$600000$B3fVKwg6laL4cY5cKFYjrT$UaIU7mmQu0qeWghN2O8a/9/ITAtQ7aDRqkiNGDs9hyw=", + "last_login": "2024-06-21T06:53:51.473Z", + "is_superuser": false, + "username": "abigail.roberts@horilla.com", + "first_name": "", + "last_name": "", + "email": "abigail.roberts@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:28.954Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 14, + "fields": { + "password": "pbkdf2_sha256$600000$eXYuHbgHwif1DB6WHHdz9H$2eJB6BVVupG4ShtUZXZf1mkEJVWCBvx3ItsyaS0685I=", + "last_login": null, + "is_superuser": false, + "username": "alexander.smith@horilla.com", + "first_name": "", + "last_name": "", + "email": "alexander.smith@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:29.514Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 15, + "fields": { + "password": "pbkdf2_sha256$600000$woKyuSW3PMcNbXZID9Se2f$5vykr95r94ApkzeDacXRsdxYGHzOUGNHXkSf+UgyiyE=", + "last_login": null, + "is_superuser": false, + "username": "isabella.thompson@horilla.com", + "first_name": "", + "last_name": "", + "email": "isabella.thompson@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:30.069Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 16, + "fields": { + "password": "pbkdf2_sha256$600000$fTge191Mzk1JFsCFz25ELa$m1qrXWVQqEoCzPDzagCPiSF4rtIyw/EsfAFYl6XL4Ek=", + "last_login": null, + "is_superuser": false, + "username": "jacob.walker@horilla.com", + "first_name": "", + "last_name": "", + "email": "jacob.walker@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:30.618Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 17, + "fields": { + "password": "pbkdf2_sha256$600000$OpGh0Z9Z0AMykhAsc60L55$fbk2wjMUpvYcTjPIPUkebq0rMrMOHBRpThHi99pFzJQ=", + "last_login": null, + "is_superuser": false, + "username": "charlotte.white@horilla.com", + "first_name": "", + "last_name": "", + "email": "charlotte.white@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:31.170Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 18, + "fields": { + "password": "pbkdf2_sha256$600000$7WK8haSXlDPHKnr5kE7gLW$atE5BIuHsc9WdYAIwMcUUvRo4vuUOWakckaLgMWFTXo=", + "last_login": null, + "is_superuser": false, + "username": "noah.young@horilla.com", + "first_name": "", + "last_name": "", + "email": "noah.young@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:31.744Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 19, + "fields": { + "password": "pbkdf2_sha256$600000$1YOzokwaALyrOxbgyyBFPu$hEhoMFUFaoQMOsuojzhHUSHBtEXmz/fH41ERuvP6FN4=", + "last_login": null, + "is_superuser": false, + "username": "grace.allen@horilla.com", + "first_name": "", + "last_name": "", + "email": "grace.allen@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:32.306Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 20, + "fields": { + "password": "pbkdf2_sha256$600000$rcFjZzvBYvF8DRhL0tQpCk$7dUzlfdCf4BkAOitY7sxcdjnAJZDKXZZWJbSEvhB5kE=", + "last_login": null, + "is_superuser": false, + "username": "samuel.baker@horilla.com", + "first_name": "", + "last_name": "", + "email": "samuel.baker@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:32.873Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 21, + "fields": { + "password": "pbkdf2_sha256$600000$CTxC8zu6DBQq4poE3Lxnan$0fSjLcKi+4dbVD+wj/Q3bBn4ZtUKNQhZ2xoeu2dlhMw=", + "last_login": null, + "is_superuser": false, + "username": "lily.campbell@horilla.com", + "first_name": "", + "last_name": "", + "email": "lily.campbell@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:33.415Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 22, + "fields": { + "password": "pbkdf2_sha256$600000$ox4HfvO85eoVvKwxGpWsqC$a3WjHqiZEJ3NNl+lWlVCMnFFRjer+f7jYnqmkxitiW0=", + "last_login": null, + "is_superuser": false, + "username": "lucas.carter@horilla.com", + "first_name": "", + "last_name": "", + "email": "lucas.carter@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:33.997Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 23, + "fields": { + "password": "pbkdf2_sha256$600000$IXNXdBfPy2eaU2MUn8UHU7$RSQ/W3Ma0CapMz+YEIpj9XhnsR9ddbau4YPCgByS8AE=", + "last_login": null, + "is_superuser": false, + "username": "amelia.cooper@horilla.com", + "first_name": "", + "last_name": "", + "email": "amelia.cooper@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:34.577Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 24, + "fields": { + "password": "pbkdf2_sha256$600000$iD3JxtN0JaXkHUIIoRRYn1$F6YyxmJec49suJkEow1hETH58Ir4Hv6c0s9rBpINVh0=", + "last_login": null, + "is_superuser": false, + "username": "mason.diaz@horilla.com", + "first_name": "", + "last_name": "", + "email": "mason.diaz@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:35.180Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 25, + "fields": { + "password": "pbkdf2_sha256$600000$IGNtxH2ObsVkULeEpZZuXI$1SZvoJepEDORorLnoNPTHpTK9jO3//kXgyxNQX9Ioxg=", + "last_login": null, + "is_superuser": false, + "username": "harper.edwards@horilla.com", + "first_name": "", + "last_name": "", + "email": "harper.edwards@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:35.724Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 26, + "fields": { + "password": "pbkdf2_sha256$600000$hL4uLs0Py5YxvwL9t6StVz$DzliPvTIlUyC0U2G2zJQlL28LkJyTV8SbHguxf6NQDI=", + "last_login": null, + "is_superuser": false, + "username": "logan.flores@horilla.com", + "first_name": "", + "last_name": "", + "email": "logan.flores@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:36.305Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 27, + "fields": { + "password": "pbkdf2_sha256$600000$S0hPecW2NRL0hrx2fXQmzp$Q/1ICNxiOTK74BYC8cTqp29g7yLe5KH4OGm3pRsUnSU=", + "last_login": null, + "is_superuser": false, + "username": "evelyn.garcia@horilla.com", + "first_name": "", + "last_name": "", + "email": "evelyn.garcia@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:36.905Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 28, + "fields": { + "password": "pbkdf2_sha256$600000$UKeRwUGIjLsGK7mT9EAlQ1$ifmp/s/F94HYbzzMROOpJW7CxabgUkxB16bFRpf4SR0=", + "last_login": null, + "is_superuser": false, + "username": "ethan.gonzalez@horilla.com", + "first_name": "", + "last_name": "", + "email": "ethan.gonzalez@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:37.528Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 29, + "fields": { + "password": "pbkdf2_sha256$600000$iqAvKU9AHzRq6ljIPjaxtc$gS2Nf1I3jea1cmozxvidrPhbii+2rnTLLe5Lqd4C/us=", + "last_login": null, + "is_superuser": false, + "username": "avery.hill@horilla.com", + "first_name": "", + "last_name": "", + "email": "avery.hill@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:38.085Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 30, + "fields": { + "password": "pbkdf2_sha256$600000$MDrDbV9nR5pLuoUDJkFURB$DU+i5EEgFwUXdIB1W7uwkZTtz2YlkQdH4kPj1SpdPqE=", + "last_login": null, + "is_superuser": false, + "username": "william.hughes@horilla.com", + "first_name": "", + "last_name": "", + "email": "william.hughes@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:38.641Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 31, + "fields": { + "password": "pbkdf2_sha256$600000$0G3t5VAGgFpFL6RXvPn409$nmaML8fQaCSHaVG4YLenuwPLApeI5MfF1GltFBbAxBo=", + "last_login": null, + "is_superuser": false, + "username": "ella.jackson@horilla.com", + "first_name": "", + "last_name": "", + "email": "ella.jackson@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:39.181Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 32, + "fields": { + "password": "pbkdf2_sha256$600000$6PGwjEAvLzZ3oYGtwe8BqL$vT1LvuqYrcc1Bu+DYx1OiWf2S5U3rhb62P/q6jlT1ng=", + "last_login": null, + "is_superuser": false, + "username": "owen.jenkins@horilla.com", + "first_name": "", + "last_name": "", + "email": "owen.jenkins@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:39.723Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 33, + "fields": { + "password": "pbkdf2_sha256$600000$KCTkQ4r4EGjsv62yFZPjjK$fjGa55WQ7ZPSMvsIpWtJFLCXLnjDg0+UDxXydsOcm+0=", + "last_login": null, + "is_superuser": false, + "username": "madison.kelly@horilla.com", + "first_name": "", + "last_name": "", + "email": "madison.kelly@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:40.309Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 34, + "fields": { + "password": "pbkdf2_sha256$600000$4o42O7d1zfsVu72byuaUl5$vwYeg6evgy55KwzsbnOPKup5JNnrKTf8pfsIG4LOk1g=", + "last_login": null, + "is_superuser": false, + "username": "henry.lewis@horilla.com", + "first_name": "", + "last_name": "", + "email": "henry.lewis@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:40.871Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 35, + "fields": { + "password": "pbkdf2_sha256$600000$i9alBhHQ4u5xNO3xRhUITy$pXb5HVpcnkM3q4A6WmFQXNaKaQLSU+oSaZHdgrBgwFY=", + "last_login": null, + "is_superuser": false, + "username": "scarlett.martinez@horilla.com", + "first_name": "", + "last_name": "", + "email": "scarlett.martinez@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:41.493Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 36, + "fields": { + "password": "pbkdf2_sha256$600000$zy7Edb7emjqYx3Nk66HLAv$hl+j2LCWY+g3jYzXaWsNKxzGotO+mQ/A1MqQ+wZbb7A=", + "last_login": null, + "is_superuser": false, + "username": "sebastian.mitchell@horilla.com", + "first_name": "", + "last_name": "", + "email": "sebastian.mitchell@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:42.084Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 37, + "fields": { + "password": "pbkdf2_sha256$600000$OOkIeeV9Ymu00cBYCTLIq7$3ZkKHrKoDy7J3HM2pI6q/Wy5Xeuk/TF8GgqbodAyGqY=", + "last_login": null, + "is_superuser": false, + "username": "chloe.morgan@horilla.com", + "first_name": "", + "last_name": "", + "email": "chloe.morgan@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:42.722Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 38, + "fields": { + "password": "pbkdf2_sha256$600000$Dmeoy4kCG6lDRazaKigXA6$UmFSnQCw/a+XuTf1jjgUHluCqlOzzkyYP6KKALguOf8=", + "last_login": null, + "is_superuser": false, + "username": "aiden.murphy@horilla.com", + "first_name": "", + "last_name": "", + "email": "aiden.murphy@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:43.356Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 39, + "fields": { + "password": "pbkdf2_sha256$600000$msZgnn226vEFnmoeWXiomE$G3ujJWZ1sE27bG9OV1Fi/FpLYHzXB4evJy82J+LbPLM=", + "last_login": null, + "is_superuser": false, + "username": "mila.perez@horilla.com", + "first_name": "", + "last_name": "", + "email": "mila.perez@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:43.906Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 40, + "fields": { + "password": "pbkdf2_sha256$600000$qhyMVkFFrVTi0G8JN2FBkx$NL8oWk1Iz88GqNmvTlx/7BX0x4cUkf8N4fKR0GUyn1M=", + "last_login": null, + "is_superuser": false, + "username": "gabriel.phillips@horilla.com", + "first_name": "", + "last_name": "", + "email": "gabriel.phillips@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:44.466Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 41, + "fields": { + "password": "pbkdf2_sha256$600000$D3ydDrjpjvWvBA6LBvXvI5$ufI3OQGc4zZXQsqQdonluXvtEiAAYkXtgJeY2Atlguk=", + "last_login": null, + "is_superuser": false, + "username": "aria.powell@horilla.com", + "first_name": "", + "last_name": "", + "email": "aria.powell@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:45.023Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 42, + "fields": { + "password": "pbkdf2_sha256$600000$qa4oqRaMostA1JxOAaOgba$GCF1bMd5o4dtKXmanUDJwTK/Z6zBRAhFIOqm4ZZwKkk=", + "last_login": null, + "is_superuser": false, + "username": "wyatt.ramirez@horilla.com", + "first_name": "", + "last_name": "", + "email": "wyatt.ramirez@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:45.586Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 43, + "fields": { + "password": "pbkdf2_sha256$600000$WfCAPCGWhVSFvlfjDyFM5l$pQ8EC814iSIHrk77DYm58hDQr10vjLe35jRNQKS9/cY=", + "last_login": null, + "is_superuser": false, + "username": "nora.reed@horilla.com", + "first_name": "", + "last_name": "", + "email": "nora.reed@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:46.194Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 44, + "fields": { + "password": "pbkdf2_sha256$600000$HQGnfURHSzwDSyHvStGfYe$zQIF+lGpfM4oe0/BuQQH0/ipdCN+0eGRn5nphEek36s=", + "last_login": null, + "is_superuser": false, + "username": "jack.rivera@horilla.com", + "first_name": "", + "last_name": "", + "email": "jack.rivera@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:46.963Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 45, + "fields": { + "password": "pbkdf2_sha256$600000$D8UUCKmBR7jTXaLiM7SbcD$DvlcUv0wBP90EpKm6H/cRTp9gO+GM1avKRffgLuJgr4=", + "last_login": null, + "is_superuser": false, + "username": "ellie.rogers@horilla.com", + "first_name": "", + "last_name": "", + "email": "ellie.rogers@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:47.622Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 46, + "fields": { + "password": "pbkdf2_sha256$600000$9q52vPdNSUjCESr536gvCl$OjMvvtazj53vjD8FLTo1Ls/kOfm9GZL4Yihf92UIz/Q=", + "last_login": null, + "is_superuser": false, + "username": "levi.sanders@horilla.com", + "first_name": "", + "last_name": "", + "email": "levi.sanders@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:48.228Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 47, + "fields": { + "password": "pbkdf2_sha256$600000$uHA7jguJGyZrcUc0Oes0mY$nQADyIeNaRsMrz3YiG6s8bj5CiHiOcM20vFLmJhRS/g=", + "last_login": null, + "is_superuser": false, + "username": "penelope.scott@horilla.com", + "first_name": "", + "last_name": "", + "email": "penelope.scott@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:48.774Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 48, + "fields": { + "password": "pbkdf2_sha256$600000$H14pYLRzXJYGgW0XOTy5RB$M6hyOc+5PU0mGA3Roduzc09dyvr1Cw/vW5IIuw4JzZA=", + "last_login": null, + "is_superuser": false, + "username": "carter.stewart@horilla.com", + "first_name": "", + "last_name": "", + "email": "carter.stewart@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:49.333Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 49, + "fields": { + "password": "pbkdf2_sha256$600000$ZwJOJQo3S2kQXc2N2Xjztv$zpxWhIlZP1s2MR6ZO7t2bDZsFDSDpw5PjcNgsw7LgBI=", + "last_login": null, + "is_superuser": false, + "username": "victoria.turner@horilla.com", + "first_name": "", + "last_name": "", + "email": "victoria.turner@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:49.920Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 50, + "fields": { + "password": "pbkdf2_sha256$600000$PTfbSxghLDCrHd9puTgs1n$PEZHXKsmXqaPDk/yCCdJOcOHm6Bcjc+eSdAxvF+30LY=", + "last_login": null, + "is_superuser": false, + "username": "zoey.watson@horilla.com", + "first_name": "", + "last_name": "", + "email": "zoey.watson@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:50.482Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 51, + "fields": { + "password": "pbkdf2_sha256$600000$0AU24f4BdGemI0orCgLT0e$NQ02A1pvVkXVAMhlMzA8UYVFA6pcTDOao6Fbaz99uqQ=", + "last_login": null, + "is_superuser": false, + "username": "nathaniel.wright@horilla.com", + "first_name": "", + "last_name": "", + "email": "nathaniel.wright@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:51.077Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 52, + "fields": { + "password": "pbkdf2_sha256$600000$LX6n5ZkdlaXiADDyBnaqMS$r2SPoy9Ux/QFfmKBPzPh1ZBo/iDOoO2erJRl86bL+qw=", + "last_login": null, + "is_superuser": false, + "username": "hazel.adams@horilla.com", + "first_name": "", + "last_name": "", + "email": "hazel.adams@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:51.649Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 53, + "fields": { + "password": "pbkdf2_sha256$600000$CAAZazkfEN3XPUvLOH5SN6$UKPe1a0IAFJQizRXhG90s/fgcokIpMgMgLg3VcFUx3o=", + "last_login": null, + "is_superuser": false, + "username": "julian.barnes@horilla.com", + "first_name": "", + "last_name": "", + "email": "julian.barnes@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:52.231Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 54, + "fields": { + "password": "pbkdf2_sha256$600000$z7ZYoD2WLwUPvMs6U6vXUh$KVFdmj2x1f4FwlxUIUEsqPebxbqw+60TFH8kwZ3c7xA=", + "last_login": null, + "is_superuser": false, + "username": "stella.bell@horilla.com", + "first_name": "", + "last_name": "", + "email": "stella.bell@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:52.847Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 55, + "fields": { + "password": "pbkdf2_sha256$600000$oBqpssiHST9YXplxfHuMOz$1HV7mhRMj8wFoU3V8q51X+2dDrVd1lN9y54ivi+lqs8=", + "last_login": null, + "is_superuser": false, + "username": "ryan.bennett@horilla.com", + "first_name": "", + "last_name": "", + "email": "ryan.bennett@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:53.395Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 56, + "fields": { + "password": "pbkdf2_sha256$600000$Y9aJSrYAdNgH36M62WabdB$M+aZQ9NQh/w9wTOvV0CZqk9w6nWg7J3kmAJgoThOQLI=", + "last_login": null, + "is_superuser": false, + "username": "hannah.brooks@horilla.com", + "first_name": "", + "last_name": "", + "email": "hannah.brooks@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:53.953Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 57, + "fields": { + "password": "pbkdf2_sha256$600000$dK8QqcZtaWD5Ie4a6Cd6zM$TCXxDgR1BjbAmsR2FDzuhGw8iCYW3nH/3ykSwERPyTk=", + "last_login": null, + "is_superuser": false, + "username": "hunter.butler@horilla.com", + "first_name": "", + "last_name": "", + "email": "hunter.butler@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:54.513Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 58, + "fields": { + "password": "pbkdf2_sha256$600000$LdkLRnP4GqGv0w1fRFFgk6$tnnCrqQ4bCKuxZH5pX2WCWzhi5N9CEvujhuw9rJIfbs=", + "last_login": null, + "is_superuser": false, + "username": "ruby.cook@horilla.com", + "first_name": "", + "last_name": "", + "email": "ruby.cook@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:55.086Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 59, + "fields": { + "password": "pbkdf2_sha256$600000$IAOEz4Pklzaigdo7hwU9Dy$MiyzO5RMdBi6eQ9ofj1WiHVTQaZfHW1urMLdzwmz6v0=", + "last_login": null, + "is_superuser": false, + "username": "elijah.cox@horilla.com", + "first_name": "", + "last_name": "", + "email": "elijah.cox@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:55.668Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 60, + "fields": { + "password": "pbkdf2_sha256$600000$mfWDDRe6qsFLsAZEErEs0F$p36OS4iwLZOwD+XatI9MHi4LPfS4A8jfCF9lLKTH1Do=", + "last_login": null, + "is_superuser": false, + "username": "lucy.cruz@horilla.com", + "first_name": "", + "last_name": "", + "email": "lucy.cruz@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:56.228Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 61, + "fields": { + "password": "pbkdf2_sha256$600000$WTz0VgxQRZyd4pGY4rpDki$vUmGP+UFwTrBbMTgzD0x4ckvnw8nhzyrko/3ZIz6de8=", + "last_login": null, + "is_superuser": false, + "username": "joseph.diaz@horilla.com", + "first_name": "", + "last_name": "", + "email": "joseph.diaz@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:56.830Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 62, + "fields": { + "password": "pbkdf2_sha256$600000$dHiS88Bvt205BM69eYQler$yuNOKJa/ZJr8ClLP7rzneoMlR72QrRV6Dejj2/hN19E=", + "last_login": null, + "is_superuser": false, + "username": "sadie.ellis@horilla.com", + "first_name": "", + "last_name": "", + "email": "sadie.ellis@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:57.373Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 63, + "fields": { + "password": "pbkdf2_sha256$600000$IvAaFgkoR64mtsKLUKMmxK$gqzg8rGSwczWbIyHfi80Qdlw+NYkNfabD6ONThm7+KI=", + "last_login": null, + "is_superuser": false, + "username": "caleb.fisher@horilla.com", + "first_name": "", + "last_name": "", + "email": "caleb.fisher@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:58.004Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 64, + "fields": { + "password": "pbkdf2_sha256$600000$E00q87zPWL9oyrquGHxdNd$AkWmc/Joa1MnbHeFfGCByIdjudTJzJHhea0UyeDp6Cc=", + "last_login": null, + "is_superuser": false, + "username": "alice.foster@horilla.com", + "first_name": "", + "last_name": "", + "email": "alice.foster@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:58.569Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 65, + "fields": { + "password": "pbkdf2_sha256$600000$Xm8hvGeg8fBdnpZkgGAw6t$AoSjWdaKm9+WHUfoXVzC1H3zZ9w4G98VAo5guGW3Mgs=", + "last_login": null, + "is_superuser": false, + "username": "nicholas.george@horilla.com", + "first_name": "", + "last_name": "", + "email": "nicholas.george@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:59.163Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 66, + "fields": { + "password": "pbkdf2_sha256$600000$zAE25MnSPUsOGndFXiEgbo$uV+e89JypvX223M2wTaXAg8HyWyUctwoJEo+hqEfLgM=", + "last_login": null, + "is_superuser": false, + "username": "layla.gonzales@horilla.com", + "first_name": "", + "last_name": "", + "email": "layla.gonzales@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:47:59.787Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 67, + "fields": { + "password": "pbkdf2_sha256$600000$wQ1AgCIZWvJ3FzNqf52CYz$SOOk9anUDbyruM1Q5dSk0jt9IiUdAvrOmtCIpfoC4Rs=", + "last_login": null, + "is_superuser": false, + "username": "jonathan.gray@horilla.com", + "first_name": "", + "last_name": "", + "email": "jonathan.gray@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:48:00.544Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 68, + "fields": { + "password": "pbkdf2_sha256$600000$wAFP7kKiE1fA2kmsTXXssQ$Cu0R2TFc+P4dbwLKhPyZoiXsR8Mh/EiZbLb+iw0M2/E=", + "last_login": null, + "is_superuser": false, + "username": "violet.griffin@horilla.com", + "first_name": "", + "last_name": "", + "email": "violet.griffin@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:48:01.394Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 69, + "fields": { + "password": "pbkdf2_sha256$600000$qXs4e56tjxzIMuOMCegoGP$FWHiQxByceR0Av49wiUNFFPayZRKD4GZNx8vrEECdvY=", + "last_login": null, + "is_superuser": false, + "username": "andrew.hayes@horilla.com", + "first_name": "", + "last_name": "", + "email": "andrew.hayes@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:48:02.032Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 70, + "fields": { + "password": "pbkdf2_sha256$600000$5TD7ZYYhKs15qu8XpAA5YT$el+cNHNZh0YVL1apa/0kyIyeQWYznN9i0DjeqprbzHM=", + "last_login": null, + "is_superuser": false, + "username": "sofia.howard@horilla.com", + "first_name": "", + "last_name": "", + "email": "sofia.howard@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:48:02.683Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 71, + "fields": { + "password": "pbkdf2_sha256$600000$ogciHz5n20GhJCuqiWW2Qh$69NtLMsPTejY00k0HurcpzSzld57Vyc/5S8tJT8qxhk=", + "last_login": null, + "is_superuser": false, + "username": "james.davis@horilla.com", + "first_name": "", + "last_name": "", + "email": "james.davis@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:52:50.411Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 72, + "fields": { + "password": "pbkdf2_sha256$600000$UsrOX4E44DcrUYduLD5Nhs$26vGQAcu6eNkVgrZcBXjzI1WnZBx4VFJkabyK2FRBqM=", + "last_login": null, + "is_superuser": false, + "username": "daniel.foster@horilla.com", + "first_name": "", + "last_name": "", + "email": "daniel.foster@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:52:51.064Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 73, + "fields": { + "password": "pbkdf2_sha256$600000$gIxEEOZfnqybr5kerFsdhv$WtV9CEqb2dR5zYafkQGTNyY0+AEVPS0thCyZWjI7enU=", + "last_login": null, + "is_superuser": false, + "username": "olivia.green@horilla.com", + "first_name": "", + "last_name": "", + "email": "olivia.green@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:52:51.663Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 74, + "fields": { + "password": "pbkdf2_sha256$600000$g3KgVPow8garzw7Z7dMnG7$7SDHuVii6KKoG+YjPW5k0nPdNLI0fiz7+kwNptn6FoQ=", + "last_login": null, + "is_superuser": false, + "username": "sophia.johnson@horilla.com", + "first_name": "", + "last_name": "", + "email": "sophia.johnson@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:52:52.232Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 75, + "fields": { + "password": "pbkdf2_sha256$600000$ruDzEDSnKUW4cK87WoH690$EwKAvHRcYQEEWvWoW8dBJbiHiGR2gV8UNkSu7FcQfVk=", + "last_login": null, + "is_superuser": false, + "username": "riley.taylor@horilla.com", + "first_name": "", + "last_name": "", + "email": "riley.taylor@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:52:52.829Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 76, + "fields": { + "password": "pbkdf2_sha256$600000$5eEzDchAsz3NmYtpy18nnn$GxuGEsALF5a7uEAgQYxIlRBNMCKynQADsTobaIH13F8=", + "last_login": null, + "is_superuser": false, + "username": "isaac.torres@horilla.com", + "first_name": "", + "last_name": "", + "email": "isaac.torres@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:52:53.422Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 77, + "fields": { + "password": "pbkdf2_sha256$600000$E3QYNNYkbklX4DMTH74sTc$GwSHo2v+yWMxCKHm8+Myz38MHmzbDULgUOS/bmo+W7I=", + "last_login": null, + "is_superuser": false, + "username": "dylan.ward@horilla.com", + "first_name": "", + "last_name": "", + "email": "dylan.ward@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-05-22T04:52:53.994Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 78, + "fields": { + "password": "pbkdf2_sha256$600000$Vb6DFujRjeDj44wlldpmTH$UI5K8qOQudVNZz/XTJ9HvFtY8wGtuJ06FzKCxW5E2D4=", + "last_login": "2024-07-12T04:20:43.669Z", + "is_superuser": true, + "username": "horillaadmin", + "first_name": "", + "last_name": "", + "email": "", + "is_staff": true, + "is_active": true, + "date_joined": "2024-06-19T10:28:09.383Z", + "groups": [], + "user_permissions": [] + } + }, + { + "model": "auth.user", + "pk": 79, + "fields": { + "password": "pbkdf2_sha256$600000$5wjcv9iYQptE2xcTYjJZvy$CaZiI7MtEHHiOp/wqiaNODNX4wLkGD3g5NfpTey93jI=", + "last_login": null, + "is_superuser": false, + "username": "testItem@horilla.com", + "first_name": "", + "last_name": "", + "email": "testItem@horilla.com", + "is_staff": false, + "is_active": true, + "date_joined": "2024-07-12T05:01:32.469Z", + "groups": [], + "user_permissions": [] + } + } +] diff --git a/load_data/work_info_data.json b/load_data/work_info_data.json new file mode 100644 index 000000000..32118eead --- /dev/null +++ b/load_data/work_info_data.json @@ -0,0 +1,1927 @@ +[ + { + "model": "employee.employeeworkinformation", + "pk": 1, + "fields": { + "employee_id": 2, + "job_position_id": 1, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 1, + "job_role_id": 1, + "reporting_manager_id": null, + "company_id": null, + "location": "Canada", + "email": "michael.brown@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 2, + "fields": { + "employee_id": 3, + "job_position_id": 1, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 2, + "job_role_id": 1, + "reporting_manager_id": null, + "company_id": null, + "location": "india", + "email": "sarah.anderson@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 3, + "fields": { + "employee_id": 4, + "job_position_id": 1, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 1, + "reporting_manager_id": 1, + "company_id": null, + "location": "london", + "email": "emily.clark@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 4, + "fields": { + "employee_id": 5, + "job_position_id": 1, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 2, + "job_role_id": 1, + "reporting_manager_id": null, + "company_id": null, + "location": "Bengaluru", + "email": "jessica.evans@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 5, + "fields": { + "employee_id": 6, + "job_position_id": 2, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 2, + "job_role_id": 2, + "reporting_manager_id": null, + "company_id": null, + "location": "london", + "email": "matthew.harris@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 6, + "fields": { + "employee_id": 7, + "job_position_id": 2, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 2, + "reporting_manager_id": 4, + "company_id": null, + "location": "Bengaluru", + "email": "david.king@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 7, + "fields": { + "employee_id": 8, + "job_position_id": 2, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 2, + "job_role_id": 2, + "reporting_manager_id": 4, + "company_id": null, + "location": "Canada", + "email": "emma.lee@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 8, + "fields": { + "employee_id": 9, + "job_position_id": 2, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 3, + "job_role_id": 2, + "reporting_manager_id": null, + "company_id": null, + "location": "india", + "email": "christopher.miller@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 9, + "fields": { + "employee_id": 10, + "job_position_id": 3, + "department_id": 2, + "work_type_id": 1, + "employee_type_id": 3, + "job_role_id": 3, + "reporting_manager_id": 4, + "company_id": null, + "location": "london", + "email": "mia.nelson@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 10, + "fields": { + "employee_id": 11, + "job_position_id": 3, + "department_id": 2, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 3, + "reporting_manager_id": 1, + "company_id": null, + "location": "kochi", + "email": "benjamin.parker@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 11, + "fields": { + "employee_id": 12, + "job_position_id": 3, + "department_id": 2, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 3, + "reporting_manager_id": 4, + "company_id": null, + "location": "Bengaluru", + "email": "abigail.roberts@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 12, + "fields": { + "employee_id": 13, + "job_position_id": 3, + "department_id": 2, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 3, + "reporting_manager_id": 4, + "company_id": null, + "location": "Canada", + "email": "alexander.smith@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 13, + "fields": { + "employee_id": 14, + "job_position_id": 3, + "department_id": 2, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 3, + "reporting_manager_id": 4, + "company_id": null, + "location": "india", + "email": "isabella.thompson@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 14, + "fields": { + "employee_id": 15, + "job_position_id": 3, + "department_id": 2, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 3, + "reporting_manager_id": 11, + "company_id": null, + "location": "london", + "email": "jacob.walker@horilla.com", + "mobile": null, + "shift_id": 3, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 15, + "fields": { + "employee_id": 16, + "job_position_id": 3, + "department_id": 2, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 4, + "reporting_manager_id": 4, + "company_id": null, + "location": "kochi", + "email": "charlotte.white@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 16, + "fields": { + "employee_id": 17, + "job_position_id": 3, + "department_id": 2, + "work_type_id": 1, + "employee_type_id": 2, + "job_role_id": 5, + "reporting_manager_id": 4, + "company_id": null, + "location": "Bengaluru", + "email": "noah.young@horilla.com", + "mobile": null, + "shift_id": 3, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 17, + "fields": { + "employee_id": 18, + "job_position_id": 3, + "department_id": 2, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 5, + "reporting_manager_id": null, + "company_id": null, + "location": "Canada", + "email": "grace.allen@horilla.com", + "mobile": null, + "shift_id": 3, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 18, + "fields": { + "employee_id": 19, + "job_position_id": 3, + "department_id": 2, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 5, + "reporting_manager_id": 4, + "company_id": null, + "location": "india", + "email": "samuel.baker@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 19, + "fields": { + "employee_id": 20, + "job_position_id": 4, + "department_id": 3, + "work_type_id": 1, + "employee_type_id": 2, + "job_role_id": 6, + "reporting_manager_id": 4, + "company_id": null, + "location": "london", + "email": "lily.campbell@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 20, + "fields": { + "employee_id": 21, + "job_position_id": 5, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 7, + "reporting_manager_id": 11, + "company_id": null, + "location": "kochi", + "email": "lucas.carter@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 21, + "fields": { + "employee_id": 22, + "job_position_id": 6, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 8, + "reporting_manager_id": null, + "company_id": null, + "location": "Bengaluru", + "email": "amelia.cooper@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 22, + "fields": { + "employee_id": 23, + "job_position_id": 6, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 2, + "job_role_id": 8, + "reporting_manager_id": 11, + "company_id": null, + "location": "Canada", + "email": "mason.diaz@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 23, + "fields": { + "employee_id": 24, + "job_position_id": 6, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 8, + "reporting_manager_id": 24, + "company_id": null, + "location": "india", + "email": "harper.edwards@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 24, + "fields": { + "employee_id": 25, + "job_position_id": 6, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 9, + "reporting_manager_id": 11, + "company_id": null, + "location": "london", + "email": "logan.flores@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-02-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.5561643835616439, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 25, + "fields": { + "employee_id": 26, + "job_position_id": 5, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 10, + "reporting_manager_id": 4, + "company_id": null, + "location": "kochi", + "email": "evelyn.garcia@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 26, + "fields": { + "employee_id": 27, + "job_position_id": 5, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 10, + "reporting_manager_id": 11, + "company_id": null, + "location": "Bengaluru", + "email": "ethan.gonzalez@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 27, + "fields": { + "employee_id": 28, + "job_position_id": 5, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 10, + "reporting_manager_id": 11, + "company_id": null, + "location": "Canada", + "email": "avery.hill@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 28, + "fields": { + "employee_id": 29, + "job_position_id": 5, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 10, + "reporting_manager_id": 4, + "company_id": null, + "location": "india", + "email": "william.hughes@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 29, + "fields": { + "employee_id": 30, + "job_position_id": 5, + "department_id": 3, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 10, + "reporting_manager_id": 24, + "company_id": null, + "location": "london", + "email": "ella.jackson@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 30, + "fields": { + "employee_id": 31, + "job_position_id": 7, + "department_id": 4, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 11, + "reporting_manager_id": 24, + "company_id": null, + "location": "kochi", + "email": "owen.jenkins@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 31, + "fields": { + "employee_id": 32, + "job_position_id": 8, + "department_id": 4, + "work_type_id": 1, + "employee_type_id": 2, + "job_role_id": 12, + "reporting_manager_id": 24, + "company_id": null, + "location": "Bengaluru", + "email": "madison.kelly@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 32, + "fields": { + "employee_id": 33, + "job_position_id": 9, + "department_id": 4, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 13, + "reporting_manager_id": 4, + "company_id": null, + "location": "Canada", + "email": "henry.lewis@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 33, + "fields": { + "employee_id": 34, + "job_position_id": 10, + "department_id": 4, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 14, + "reporting_manager_id": 24, + "company_id": null, + "location": "india", + "email": "scarlett.martinez@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 34, + "fields": { + "employee_id": 35, + "job_position_id": 11, + "department_id": 5, + "work_type_id": null, + "employee_type_id": 2, + "job_role_id": 15, + "reporting_manager_id": 24, + "company_id": null, + "location": "london", + "email": "sebastian.mitchell@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 35, + "fields": { + "employee_id": 36, + "job_position_id": 12, + "department_id": 5, + "work_type_id": 1, + "employee_type_id": 3, + "job_role_id": 16, + "reporting_manager_id": 24, + "company_id": null, + "location": "kochi", + "email": "chloe.morgan@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 36, + "fields": { + "employee_id": 37, + "job_position_id": 12, + "department_id": 5, + "work_type_id": 1, + "employee_type_id": 1, + "job_role_id": 16, + "reporting_manager_id": 4, + "company_id": null, + "location": "Bengaluru", + "email": "aiden.murphy@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 37, + "fields": { + "employee_id": 38, + "job_position_id": 12, + "department_id": 5, + "work_type_id": null, + "employee_type_id": 2, + "job_role_id": 16, + "reporting_manager_id": 24, + "company_id": null, + "location": "Canada", + "email": "mila.perez@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 38, + "fields": { + "employee_id": 39, + "job_position_id": 12, + "department_id": 5, + "work_type_id": 1, + "employee_type_id": 3, + "job_role_id": 16, + "reporting_manager_id": 24, + "company_id": null, + "location": "india", + "email": "gabriel.phillips@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 39, + "fields": { + "employee_id": 40, + "job_position_id": 12, + "department_id": 5, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 16, + "reporting_manager_id": 24, + "company_id": null, + "location": "london", + "email": "aria.powell@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 40, + "fields": { + "employee_id": 41, + "job_position_id": 13, + "department_id": 5, + "work_type_id": null, + "employee_type_id": 2, + "job_role_id": 17, + "reporting_manager_id": 4, + "company_id": null, + "location": "kochi", + "email": "wyatt.ramirez@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 41, + "fields": { + "employee_id": 42, + "job_position_id": 13, + "department_id": 5, + "work_type_id": 1, + "employee_type_id": 3, + "job_role_id": 17, + "reporting_manager_id": 24, + "company_id": null, + "location": "Bengaluru", + "email": "nora.reed@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 42, + "fields": { + "employee_id": 43, + "job_position_id": 14, + "department_id": 5, + "work_type_id": 1, + "employee_type_id": 1, + "job_role_id": 18, + "reporting_manager_id": 24, + "company_id": null, + "location": "Canada", + "email": "jack.rivera@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 43, + "fields": { + "employee_id": 44, + "job_position_id": 14, + "department_id": 5, + "work_type_id": 1, + "employee_type_id": 2, + "job_role_id": 18, + "reporting_manager_id": 4, + "company_id": null, + "location": "india", + "email": "ellie.rogers@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 44, + "fields": { + "employee_id": 45, + "job_position_id": 14, + "department_id": 5, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 18, + "reporting_manager_id": 4, + "company_id": null, + "location": "london", + "email": "levi.sanders@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 45, + "fields": { + "employee_id": 46, + "job_position_id": 14, + "department_id": 5, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 18, + "reporting_manager_id": 4, + "company_id": null, + "location": "kochi", + "email": "penelope.scott@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 46, + "fields": { + "employee_id": 47, + "job_position_id": 15, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 2, + "job_role_id": 19, + "reporting_manager_id": 11, + "company_id": null, + "location": "Bengaluru", + "email": "carter.stewart@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 47, + "fields": { + "employee_id": 48, + "job_position_id": 15, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 2, + "job_role_id": 20, + "reporting_manager_id": 4, + "company_id": null, + "location": "london", + "email": "victoria.turner@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 48, + "fields": { + "employee_id": 49, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 11, + "company_id": null, + "location": "Bengaluru", + "email": "zoey.watson@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 49, + "fields": { + "employee_id": 50, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 4, + "company_id": null, + "location": "Canada", + "email": "nathaniel.wright@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 50, + "fields": { + "employee_id": 51, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 4, + "company_id": null, + "location": "india", + "email": "hazel.adams@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 51, + "fields": { + "employee_id": 52, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 11, + "company_id": null, + "location": "london", + "email": "julian.barnes@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 52, + "fields": { + "employee_id": 53, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 11, + "company_id": null, + "location": "kochi", + "email": "stella.bell@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 53, + "fields": { + "employee_id": 54, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 24, + "company_id": null, + "location": "Bengaluru", + "email": "ryan.bennett@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 54, + "fields": { + "employee_id": 55, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 11, + "company_id": null, + "location": "Canada", + "email": "hannah.brooks@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 55, + "fields": { + "employee_id": 56, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 11, + "company_id": null, + "location": "india", + "email": "hunter.butler@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 56, + "fields": { + "employee_id": 57, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 22, + "reporting_manager_id": 11, + "company_id": null, + "location": "london", + "email": "ruby.cook@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 57, + "fields": { + "employee_id": 58, + "job_position_id": 16, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 1, + "job_role_id": 22, + "reporting_manager_id": 11, + "company_id": null, + "location": "kochi", + "email": "elijah.cox@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 58, + "fields": { + "employee_id": 59, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 22, + "reporting_manager_id": 24, + "company_id": null, + "location": "Bengaluru", + "email": "lucy.cruz@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 59, + "fields": { + "employee_id": 60, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 22, + "reporting_manager_id": 11, + "company_id": null, + "location": "Canada", + "email": "joseph.diaz@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 60, + "fields": { + "employee_id": 61, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 23, + "reporting_manager_id": 24, + "company_id": null, + "location": "india", + "email": "sadie.ellis@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 61, + "fields": { + "employee_id": 62, + "job_position_id": 17, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 24, + "reporting_manager_id": 11, + "company_id": null, + "location": "london", + "email": "caleb.fisher@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 62, + "fields": { + "employee_id": 63, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 25, + "reporting_manager_id": 11, + "company_id": null, + "location": "kochi", + "email": "alice.foster@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 63, + "fields": { + "employee_id": 64, + "job_position_id": 17, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 26, + "reporting_manager_id": 11, + "company_id": null, + "location": "Bengaluru", + "email": "nicholas.george@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 64, + "fields": { + "employee_id": 65, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 27, + "reporting_manager_id": 11, + "company_id": null, + "location": "Canada", + "email": "layla.gonzales@horilla.com", + "mobile": null, + "shift_id": 2, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 65, + "fields": { + "employee_id": 66, + "job_position_id": 17, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 1, + "job_role_id": 28, + "reporting_manager_id": 11, + "company_id": null, + "location": "india", + "email": "jonathan.gray@horilla.com", + "mobile": null, + "shift_id": 2, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 66, + "fields": { + "employee_id": 67, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 27, + "reporting_manager_id": 24, + "company_id": null, + "location": "london", + "email": "violet.griffin@horilla.com", + "mobile": null, + "shift_id": 2, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 67, + "fields": { + "employee_id": 68, + "job_position_id": 17, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 28, + "reporting_manager_id": 24, + "company_id": null, + "location": "kochi", + "email": "andrew.hayes@horilla.com", + "mobile": null, + "shift_id": 2, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 68, + "fields": { + "employee_id": 69, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 27, + "reporting_manager_id": 24, + "company_id": null, + "location": "Bengaluru", + "email": "sofia.howard@horilla.com", + "mobile": null, + "shift_id": 2, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 69, + "fields": { + "employee_id": 70, + "job_position_id": 1, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 1, + "job_role_id": 1, + "reporting_manager_id": 4, + "company_id": null, + "location": "kochi", + "email": "james.davis@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 70, + "fields": { + "employee_id": 71, + "job_position_id": 1, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 3, + "job_role_id": 1, + "reporting_manager_id": 4, + "company_id": null, + "location": "Canada", + "email": "daniel.foster@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 71, + "fields": { + "employee_id": 72, + "job_position_id": 1, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 1, + "job_role_id": 1, + "reporting_manager_id": 4, + "company_id": null, + "location": "india", + "email": "olivia.green@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 72, + "fields": { + "employee_id": 73, + "job_position_id": 2, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 2, + "reporting_manager_id": 4, + "company_id": null, + "location": "kochi", + "email": "sophia.johnson@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-01-01", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.6410958904109589, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 73, + "fields": { + "employee_id": 74, + "job_position_id": 15, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 29, + "reporting_manager_id": 4, + "company_id": null, + "location": "Canada", + "email": "riley.taylor@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 74, + "fields": { + "employee_id": 75, + "job_position_id": 15, + "department_id": 1, + "work_type_id": 1, + "employee_type_id": 1, + "job_role_id": 29, + "reporting_manager_id": 4, + "company_id": null, + "location": "india", + "email": "isaac.torres@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 75, + "fields": { + "employee_id": 76, + "job_position_id": 16, + "department_id": 1, + "work_type_id": null, + "employee_type_id": 3, + "job_role_id": 21, + "reporting_manager_id": 4, + "company_id": null, + "location": "kochi", + "email": "dylan.ward@horilla.com", + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 76, + "fields": { + "employee_id": 1, + "job_position_id": null, + "department_id": 1, + "work_type_id": null, + "employee_type_id": null, + "job_role_id": null, + "reporting_manager_id": null, + "company_id": 1, + "location": null, + "email": null, + "mobile": null, + "shift_id": 1, + "date_joining": "2024-05-22", + "contract_end_date": "2024-05-22", + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.25205479452054796, + "tags": [] + } + }, + { + "model": "employee.employeeworkinformation", + "pk": 77, + "fields": { + "employee_id": 77, + "job_position_id": null, + "department_id": null, + "work_type_id": null, + "employee_type_id": null, + "job_role_id": null, + "reporting_manager_id": null, + "company_id": null, + "location": null, + "email": null, + "mobile": null, + "shift_id": null, + "date_joining": null, + "contract_end_date": null, + "basic_salary": 0, + "salary_hour": 0, + "additional_info": null, + "experience": 0.0, + "tags": [] + } + } +] diff --git a/static/index/index.js b/static/index/index.js index 77190c76e..44ba51d56 100644 --- a/static/index/index.js +++ b/static/index/index.js @@ -443,3 +443,19 @@ $(document).on('keydown', function (event) { } } }); +function handleDownloadAndRefresh(event, url) { + // Use in import_popup.html file + event.preventDefault(); + + // Create a temporary hidden iframe to trigger the download + const iframe = document.createElement('iframe'); + iframe.style.display = 'none'; + iframe.src = url; + document.body.appendChild(iframe); + + // Refresh the page after a short delay + setTimeout(function () { + document.body.removeChild(iframe); // Clean up the iframe + window.location.reload(); // Refresh the page + }, 500); // Adjust the delay as needed +} diff --git a/templates/demo_database/animation_load_data.html b/templates/demo_database/animation_load_data.html new file mode 100644 index 000000000..c9bcd66d7 --- /dev/null +++ b/templates/demo_database/animation_load_data.html @@ -0,0 +1,7 @@ +
+ + +

Loading Demo Database...........

+
+ \ No newline at end of file diff --git a/templates/demo_database/auth_load_data.html b/templates/demo_database/auth_load_data.html new file mode 100644 index 000000000..4662cf40b --- /dev/null +++ b/templates/demo_database/auth_load_data.html @@ -0,0 +1,50 @@ +{% load i18n %} +
+ +
+
+
+

+ {% trans "Database Authentication" %} +

+

+ {% trans "Authenticate with your password to load demo database" %} +

+
+ {% csrf_token %} +
+
+
+ +
+ + +
+
+
+
+ +
+
+
+
+
+ \ No newline at end of file diff --git a/templates/import_popup.html b/templates/import_popup.html new file mode 100644 index 000000000..b2bb0cfa6 --- /dev/null +++ b/templates/import_popup.html @@ -0,0 +1,49 @@ +{% load i18n %} +
+

+ + {% if created_count == 0 %} + +
+
!
+
+ +

{{model}} {% trans " Import Warning" %}

+ +
+

No {{model}} were imported.

+

There were {{error_count}} errors during the import.

+
+ + {% else %} +
+
+
+ +

{{model}} {% trans " Import Successful" %}

+ +
+ {% if path_info %} +

{{created_count}} {{model}} were successfully imported.

+

{{error_count}} rows have errors during the import.

+ {% else %} + {{total_count}} {{model}} were successfully imported. + {% endif %} +
+ {% endif %} +
+ {% if path_info %} + + {% trans "Download Error File" %} + + {% endif %} + +
+
+ + \ No newline at end of file diff --git a/templates/login.html b/templates/login.html index 312f74dda..e02e5f503 100644 --- a/templates/login.html +++ b/templates/login.html @@ -1,130 +1,134 @@ {% load static %} {% load i18n %} - + + Login - {{white_label_company_name}} Dashboard - - - + + + - - + + +
-
- {% for message in messages %} -
- {{ message }} -
- {% endfor %} -
-
-
-

- {% trans "Sign In" %} -

-

- {% trans "Please login to access the dashboard." %} -

-
- {% csrf_token %} -
- - +
+ {% for message in messages %} +
+ {{ message }}
-
- -
- +
+
+

+ {% trans "Sign In" %} +

+

+ {% trans "Please login to access the dashboard." %} +

+ + {% csrf_token %} +
+ + +
+
+ +
+ + +
+
+ + {% if not initialize_database %} + + + {% trans "Forgot password" %}? + + + {% endif %} + + {% if initialize_database %} + + + {% endif %} +
+
+ {{white_label_company_name}} - -
+ {% if white_label_company %} +

{{white_label_company}}

+ {% endif %} +
- - {% trans "Forgot password" %}? - -
-
- Horilla - {% if initialize_database %} - {% trans "Initialize Database" %} - {% endif %} -
-
+
- - - + + - - + + +