@extends('layouts.master') @section('link') @include('layouts.header') @stop @section('content') {!! Form::open(array('url'=>'numstaff/nst001', 'class'=>'form-inline', 'id'=>'SubmitForm','method'=>'Post')) !!} {!! Form::hidden('IsBack','false', ['id'=>'IsBack']) !!} {!! Form::hidden('IsTeamGroup','false', ['id'=>'IsTeamGroup']) !!} {!! Form::hidden('IsChangeValue','false', ['id'=>'IsChangeValue']) !!} {!! Form::hidden('IsRegister','false', ['id'=>'IsRegister']) !!}
@if(count(Session::get('_flash')['new']) >0) @foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }} ×

@endif @endforeach @endif

結果入力

@if(Auth::user()->auth === 3) {!! Form::hidden('StaffName',$StaffName, ['id'=>'StaffName']) !!} @else
検索条件
@endif

個人結果: {{ $TotalPoint }} / {{ $TotalScoreAllocation }}

@if(count($SearchResult)>0) @foreach($SearchResult as $index => $data) {!! Form::hidden('NumId []', isset($data->numberical_id) ? $data->numberical_id : '') !!} {!! Form::hidden('NumName []', isset($data->numberical_name) ? $data->numberical_name : '') !!} {!! Form::hidden('EvaId []', isset($EvaluationId) ? $EvaluationId : '') !!} {!! Form::hidden('MstViewPoint []', isset($data->viewpoint) ? $data->viewpoint : '' ) !!} {!! Form::hidden('MstRule []', isset($data->rule) ? $data->rule : '' ) !!} {!! Form::hidden('MstZeroValueCondition []', isset($data->zero_value_condition) ? $data->zero_value_condition : '' ) !!} {!! Form::hidden('MstPerfectValueCondition []', isset($data->perfect_value_condition) ? $data->perfect_value_condition : '' ) !!} {!! Form::hidden('MstPoint []', isset($data->point) ? $data->point : '' ) !!} {!! Form::hidden('MstNote []', isset($data->note) ? $data->note : '' ) !!} {!! Form::hidden('DispOrder []', isset($data->disp_order) ? $data->disp_order : '' ) !!}
数値指標:{{ $index +1 }}

{{ $data->numberical_name }}

入力方法
{!! Form::cd_select('InputMethod []', Config::get('cd_const.INPUT_METHOD'), $data->input_method, true, null, null, ['id' => 'InputMethod'.$index, 'class' => 'form-control normal-input input-method'], null) !!}
成果({{ $data->unit }})
4月
5月
6月
7月
8月
9月
10月
11月
12月
1月
2月
3月
@if($data->input_method === Config::get('cd_const.INPUT_METHOD_BULK')) {!! Form::cd_label(Config::get('cd_const.INPUT_METHOD'), $data->input_method) !!} @else {!! Form::cd_label(Config::get('cd_const.AGGREGATE_PATTERN'), $data->aggregate_pattern) !!} @endIf
@if($data->input_method === Config::get('cd_const.INPUT_METHOD_BULK')) @else @endIf
{{ $data->unit }}
得点
{!! Form::hidden('Scores []',isset($data->score) ? $data->score : 0, ['id'=>'HiddenScore'.$index]) !!}
{{ isset($data->score)?$data->score:'0.00' }} / {{ $data->score_allocation }}
@endforeach @endif
{!! Form::close() !!} @stop @include ('layouts.footer')