@extends('layouts.default') @section('title','考勤信息') @section('content') @include('shared._messages') @include('shared._errors')

{{ $year }}年{{ $month }}月 考勤汇总

@foreach ($total_attendances as $ta) @if ($ta->abnormal == false) @else @endif @endforeach
员工编号 员工姓名 英文名 所属部门 职位 总应 总实 总基本 总额外 总加班 总请假 总迟到 总早退 出勤天数 工时差值 总增补 是否异常 操作
{{ $ta->staff->id }} {{ $ta->staff->staffname }} {{ $ta->staff->englishname }} {{ $ta->staff->department_name }} {{ $ta->staff->position_name }} {{ $ta->total_should_duration }} {{ $ta->total_actual_duration }} {{ $ta->total_basic_duration }} {{ $ta->total_more_duration }} {{ $ta->total_lieu_work_duration }} / @if ($ta->total_extra_work_duration == $ta->total_lieu_work_duration) 0.00 @else {{$ta->total_salary_work_duration}} @endif {{ $ta->total_absence_duration }} {{ $ta->total_late_work }}分,{{ $ta->total_is_late }}次 {{ $ta->total_early_home }}分,{{ $ta->total_is_early }}次 应:{{ $ta->should_attend }}天/实:{{ $ta->actual_attend }}天 {{ $ta->difference }} {{ $ta->total_add_duration }} 查看
@if (count($total_attendances)>config('page.PAGE_SIZE')) @include('shared._pagination') @endif
返回考勤管理   
@stop