{% extends 'att/report/base.html' %}
{% load i18n %}
{% block opts_modify %}
$.extend(opts, {
cols: [[
{field:'emp_code', width:120, title: "{% trans 'report_column_empCode' %}", sort: true}
,{field:'first_name', title: "{% trans 'report_column_firstName' %}"}
,{field:'last_name', title: "{% trans 'report_column_lastName' %}"}
,{field:'dept_code', title: "{% trans 'report_column_departmentCode' %}"}
,{field:'dept_name', width:140, title: "{% trans 'report_column_departmentName' %}"}
,{field:'position_code', title: "{% trans 'report_column_positionCode' %}"}
,{field:'position_name', title: "{% trans 'report_column_positionName' %}"}
,{field:'att_date', width:80, title: "{% trans 'report_column_attendanceDate' %}"}
,{field:'alias', width:80, title: "{% trans 'report_column_attendanceshift' %}"}
,{field:'clock_in', title: "{% trans 'report_column_clockInTime' %}"}
,{field:'clock_out', title: "{% trans 'report_column_clockOutTime' %}"}
,{field:'total_worked', title: "{% trans 'report_column_totalWorkedDuration' %}"}
,{field:'total_time', title: "{% trans 'report_column_totalTimeDuration' %}"}
]]
,method: "get"
,url: "/att/api/dailyBasicReport/"
});
{% endblock %}