@extends('layouts.master') @section('link') @include('layouts.header') @stop @section('content') {!! Form::open(array('url'=>'/numstaff/nst003/backMenu', 'class'=>'form-inline', 'id'=>'BackForm','method'=>'Post')) !!} {!! Form::close() !!} {!!Form::open(array('url'=>'numstaff/nst003', 'class'=>'form-inline','id'=>'SubmitForm','method'=>'Post')) !!} {!! Form::hidden('IsPrint','false', ['id'=>'IsPrint']) !!} {!! Form::hidden('IsTeamGroup','false', ['id'=>'IsTeamGroup']) !!} {!! Form::hidden('IsChangeValue','false', ['id'=>'IsChangeValue']) !!} @if(!$StaffName || ($StaffName && count($GraphTitle) >0))

推移グラフ閲覧・印刷

@if(3 === Auth::user()->auth)
職員名
{{sprintf('%s %s', $StaffInfo->last_name, $StaffInfo->first_name)}}
@else
検索条件
@endif
数値指標総合点の推移:
数値指標:
    @foreach($GraphTitle as $index => $data) @if($NumIndexFlg[$index] !== 1)
  1. {{ $data }}
  2. @else
  3. {{ $data }}
  4. @endif @endforeach
※現在、登録されていない数値指標はグレーで表示されています。
@foreach($GraphTitle as $index => $data)
@if($NumIndexFlg[$index] !== 1)
{{ '  '. ($index +1) .'. ' .$data }}
@else
{{ '  '. ($index +1) .'. ' .$data }}
@endif
@if(count($GraphData[$index]) === 6 )
@if($GraphData[$index][1] !== null) {{ $GraphData[$index][1] }} 点 @else - 点 @endif @if($GraphData[$index][2] !== null) {{ $GraphData[$index][2] }} 点 @else - 点 @endif @if($GraphData[$index][3] !== null) {{ $GraphData[$index][3] }} 点 @else - 点 @endif @if($GraphData[$index][4] !== null) {{ $GraphData[$index][4] }} 点 @else - 点 @endif @if($GraphData[$index][5] !== null) {{ $GraphData[$index][5] }} 点 @else - 点 @endif
- @if($GraphData[$index][1] !== null && $GraphData[$index][2] !== null) {{ $GraphData[$index][2] - $GraphData[$index][1]>0?'+':'' }} {{ number_format($GraphData[$index][2] - $GraphData[$index][1],2,'.','') }} @else - @endif @if($GraphData[$index][2] !== null && $GraphData[$index][3] !== null) {{ $GraphData[$index][3] - $GraphData[$index][2]>0?'+':'' }} {{ number_format($GraphData[$index][3] - $GraphData[$index][2],2,'.','') }} @else - @endif @if($GraphData[$index][3] !== null && $GraphData[$index][4] !== null) {{ $GraphData[$index][4] - $GraphData[$index][3]>0?'+':'' }} {{ number_format($GraphData[$index][4] - $GraphData[$index][3],2,'.','') }} @else - @endif @if($GraphData[$index][4] !== null && $GraphData[$index][5] !== null) {{ $GraphData[$index][5] - $GraphData[$index][4]>0?'+':'' }} {{ number_format($GraphData[$index][5] - $GraphData[$index][4],2,'.','') }} @else - @endif
@endif @if(count($GraphData[$index]) === 5 )
@if($GraphData[$index][1] !== null) {{ $GraphData[$index][1] }} 点 @else - 点 @endif @if($GraphData[$index][2] !== null) {{ $GraphData[$index][2] }} 点 @else - 点 @endif @if($GraphData[$index][3] !== null) {{ $GraphData[$index][3] }} 点 @else - 点 @endif @if($GraphData[$index][4] !== null) {{ $GraphData[$index][4] }} 点 @else - 点 @endif
- @if($GraphData[$index][1] !== null && $GraphData[$index][2] !== null) {{ $GraphData[$index][2] - $GraphData[$index][1]>0?'+':'' }} {{ number_format($GraphData[$index][2] - $GraphData[$index][1],2,'.','') }} @else - @endif @if($GraphData[$index][2] !== null && $GraphData[$index][3] !== null) {{ $GraphData[$index][3] - $GraphData[$index][2]>0?'+':'' }} {{ number_format($GraphData[$index][3] - $GraphData[$index][2],2,'.','') }} @else - @endif @if($GraphData[$index][3] !== null && $GraphData[$index][4] !== null) {{ $GraphData[$index][4] - $GraphData[$index][3]>0?'+':'' }} {{ number_format($GraphData[$index][4] - $GraphData[$index][3],2,'.','') }} @else - @endif
@endif @if(count($GraphData[$index]) === 4 )
@if($GraphData[$index][1] !== null) {{ $GraphData[$index][1] }} 点 @else - 点 @endif @if($GraphData[$index][2] !== null) {{ $GraphData[$index][2] }} 点 @else - 点 @endif @if($GraphData[$index][3] !== null) {{ $GraphData[$index][3] }} 点 @else - 点 @endif
- @if($GraphData[$index][1] !== null && $GraphData[$index][2] !== null) {{ $GraphData[$index][2] - $GraphData[$index][1]>0?'+':'' }} {{ number_format($GraphData[$index][2] - $GraphData[$index][1],2,'.','') }} @else - @endif @if($GraphData[$index][2] !== null && $GraphData[$index][3] !== null) {{ $GraphData[$index][3] - $GraphData[$index][2]>0?'+':'' }} {{ number_format($GraphData[$index][3] - $GraphData[$index][2],2,'.','') }} @else - @endif
@endif @if(count($GraphData[$index]) === 3 )
@if($GraphData[$index][1] !== null) {{ $GraphData[$index][1] }} 点 @else - 点 @endif @if($GraphData[$index][2] !== null) {{ $GraphData[$index][2] }} 点 @else - 点 @endif
- @if($GraphData[$index][1] !== null && $GraphData[$index][2] !== null) {{ $GraphData[$index][2] - $GraphData[$index][1]>0?'+':'' }} {{ number_format($GraphData[$index][2] - $GraphData[$index][1],2,'.','') }} @else - @endif
@endif @if(count($GraphData[$index]) === 2 )
{{ $GraphData[$index][1] }} 点
-
@endif
@endforeach
@endif {!! Form::close() !!} @stop @include ('layouts.footer')