{{-- This method is called. For career @author co.danh @return view ajax --}} @extends('layouts.master') @section('link') @include('layouts.header') @stop @section('content')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

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

@endif @endforeach @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

クラスごとの数値指標と職能基準の関連性設定

{!! Form::open( array('url'=>route('postNumRelationIndex') . '?group_id=' . $group_id . '&numerical_id=' . $numerical_id , 'name'=>'FormNumerical', 'id'=>'FormNumerical', 'method'=>'post') ) !!} {!! Form::hidden('numerical_id', null, ['id' => 'numerical-id']) !!}
数値指標
職能基準
数値指標
グループ
{!! Form::n_select('NumIndexGroup', $group_numericals, '', Message::get('C00001',['a']) , ['data-url' => route('getNumRelationAjax'), 'class' => 'form-control numerical-group', "style" => "width:170px;"], null) !!}
数値指標
{!! Form::n_select('numerical_id', [], '' , Message::get('C00001',['a']) , ['data-url-form' => route('postNumRelationIndex'), 'data-url' => route('getBaseSkillAjax'), 'class' => 'form-control list-numerical-indexs', "style" => "width:250px;"], null) !!}
【評価観点】
【POINT】
【数値指標と職能基準との関連性及びその比重】
関連性の表示 個人評価への影響度
★★★★★ 関連性が高い
★★★★
★★★
★★
関連性が低い
{!! Form::close() !!}
@stop @section('optionalJs') @append @include ('layouts.footer')