@php global $paginate; @endphp
{{-- header --}} @include('feedback.sheet.template.header', array('paginate' => ++$paginate, 'title' => '目標達成度の振り返り 2/2'))
{{-- subHeader --}} @include('feedback.sheet.template.sub_header')
{{-- leftContainer --}}
{{-- 昇格要件[能力判定] --}}
昇格要件[能力判定]
職責獲得に必要な能力判定:
@foreach($page_2['mst_duty_req_skills'] as $mst_duty_req_skill) @php $mst_duty_req_skill_count = 0; @endphp @foreach($mst_duty_req_skill as $key => $mst_skill) @if($mst_duty_req_skill_count === 0 && $key === 0) @php $class_checkbox = $mst_skill->allcheck === 1 ? 'glyphicon-check' : 'glyphicon-unchecked'; if($mst_skill->pattern === 1){ $titleCheck = '以下のすべてのスキルを満たしていること'; }else if($mst_skill->pattern === 2){ $titleCheck = '以下のいずれかのスキルを'.$mst_skill->necessary_num.'つ以上満たしていること'; }else{ $titleCheck = ''; } @endphp
{{$titleCheck}}
@endif @php $mst_duty_req_skill_count++; if($mst_skill->mst_evaluation >= $mst_skill->trz_evaluation){ $stylecss = ' font-weight-bold'; }else{ $stylecss = ''; } @endphp @endforeach
要件 結果
{{$mst_skill->name}} {{TnHelper::getRank($mst_skill->mst_evaluation)}} {{TnHelper::getRank($mst_skill->trz_evaluation)}}
@endforeach
{{-- 昇格要件[研修及び訓練の受講] --}}
昇格要件[研修及び訓練の受講]
職責獲得に必要な研修及び訓練:
@foreach($page_2['mst_duty_req_lectures'] as $mst_duty_req_lecture) @php $mst_duty_req_lecture_count = 0; @endphp @foreach($mst_duty_req_lecture as $key => $mst_lecture) @if($mst_duty_req_lecture_count === 0 && $key === 0) @php $class_checkbox = $mst_lecture->allcheck === 1 ? 'glyphicon-check' : 'glyphicon-unchecked'; if($mst_lecture->pattern === 1){ $titleCheck = '以下のすべての研修及び訓練を受講していること'; }else if($mst_lecture->pattern === 2){ $titleCheck = '以下のいずれかの研修及び訓練を'.$mst_lecture->necessary_num.'つ以上受講していること'; }else{ $titleCheck = ''; } @endphp
{{$titleCheck}}
@endif @php $mst_duty_req_lecture_count++; $lecture_checkbox = $mst_lecture->checked !== null ? 'glyphicon-check' : 'glyphicon-unchecked'; @endphp
{{sprintf("%s(主催:%s)", $mst_lecture->name, $mst_lecture->promoter)}}
@endforeach @endforeach
取得済みの研修及び訓練: @foreach ($page_1['mst_lectures'] as $trzLecture)
{{sprintf("・%s(主催:%s) %s", $trzLecture->name, $trzLecture->promoter, $trzLecture->attending_date)}}
@endforeach
今後取得が必要な研修及び訓練: @foreach($page_2['mst_duty_req_lectures'] as $mst_duty_req_lecture) @foreach($mst_duty_req_lecture as $mst_lecture) @if($mst_lecture->checked === null)

{{sprintf("・%s(主催:%s)", $mst_lecture->name, $mst_lecture->promoter)}}

@endif @endforeach @endforeach
{{-- leftContainer --}}
{{-- 昇格要件[資格の取得] --}}
昇格要件[資格の取得]
職責獲得に必要な資格: @foreach($page_2['mst_duty_req_qualifications'] as $mst_duty_req_qualification) @php $mst_duty_req_qualification_count = 0; @endphp @foreach($mst_duty_req_qualification as $key => $mst_qualification) @if($mst_duty_req_qualification_count === 0 && $key === 0) @php $class_checkbox = $mst_qualification->allcheck === 1 ? 'glyphicon-check' : 'glyphicon-unchecked'; if($mst_qualification->pattern === 1){ $titleCheck = '以下のすべての資格を取得していること'; }else if($mst_qualification->pattern === 2){ $titleCheck = '以下のいずれかの資格を'.$mst_qualification->necessary_num.'つ以上取得していること'; }else{ $titleCheck = ''; } @endphp
{{$titleCheck}}
@endif @php $mst_duty_req_qualification_count++; $lecture_checkbox = $mst_qualification->checked !== null ? 'glyphicon-check' : 'glyphicon-unchecked'; @endphp
{{$mst_qualification->name}}
@endforeach @endforeach
取得済みの資格: @foreach ($page_1['mst_position_up_req_qualification_arrays'] as $mst_position_up_req_qualification_array)

・{{$mst_position_up_req_qualification_array->name}} {{$mst_position_up_req_qualification_array->acquire_date}}

@endforeach
今後取得が必要な資格: @foreach($page_2['mst_duty_req_qualifications'] as $mst_duty_req_qualification) @foreach($mst_duty_req_qualification as $mst_qualification) @if($mst_qualification->checked === null)

・{{$mst_qualification->name}}

@endif @endforeach @endforeach
{{-- 個人別の数値指標: --}}
@foreach ($page_2['trz_individual_results'] as $key => $trz_individual_result) @php $score = $trz_individual_result->score; $before_score = $trz_individual_result->before_score; $score_scoreAgo = number_format($score - $before_score, 2); if($score_scoreAgo > 0){ $score_scoreAgo = $score_scoreAgo . '点↑'; }else{ $score_scoreAgo = $score_scoreAgo . '点'; } @endphp @endforeach
個人別の数値指標: 前回 今回 前回比
{{sprintf("%s. %s(%s点)", $key + 1, $trz_individual_result->numberical_name, $trz_individual_result->score_allocation)}} {{$before_score}}点 {{$score}}点 {{$score_scoreAgo}}