@extends('layouts.general') @section('layouts.header') @include('layouts.header') @stop @section('optionalCss') @stop @section('content') {!! Form::open(array('url'=>'numstaff/modify', 'class'=>'form-inline', 'id'=>'GetModifyForm','method'=>'Get')) !!} {!! Form::hidden('Id','' , ['id'=>'ModifyId']) !!} {!! Form::close() !!} {!! Form::open(array('url'=>'numstaff/copyregister', 'class'=>'form-inline', 'id'=>'GetCopyRegister','method'=>'Get')) !!} {!! Form::hidden('Id','' , ['id'=>'CopyId']) !!} {!! Form::close() !!} {!! Form::open(array('url'=>'numstaff/backMenu', 'class'=>'form-inline', 'id'=>'BackForm','method'=>'Post')) !!} {!! Form::close() !!} {!! Form::open(array('url'=>'numstaff/modify', 'class'=>'form-inline', 'id'=>'ArrowGetFailForm','method'=>'Get')) !!} {!! Form::hidden('Id','' , ['id'=>'ArrowMoveId']) !!} {!! Form::close() !!} @if($IsModify) {!! Form::open(array('url'=>'/numstaff/modify/submit', 'class'=>'form-inline', 'id'=>'SubmitForm','method'=>'Post')) !!} {!! Form::hidden('Version',$Version) !!} {!! Form::hidden('Id',$Id) !!} {!! Form::hidden('Password','' , ['id'=>'Password']) !!} {!! Form::hidden('IsDelete','false' , ['id'=>'IsDelete']) !!} @else {!! Form::open(array('url'=>'/numstaff/register', 'class'=>'form-inline', 'id'=>'SubmitForm','method'=>'Post')) !!} @endIf {!! Form::hidden('IsCopy','false' , ['id'=>'IsCopy']) !!}

数値指標の登録・編集

{{$errors->first('Error')}} @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
@foreach($ListData as $index => $item) @if($index == count($ListData)-1) @else @endif @if($index == 0) @else @endif @endforeach
数値指標 編集 コピーして
新規作成
{{ $item -> name}}
@if($IsModify)
数値指標編集
@else
数値指標登録
@endIf
@if($IsModify)
@endIf
数値指標
{!! Form::text('Name', $Name, array('id'=>'Name','maxlength'=>'20','class' => 'form-control')) !!}
評価観点
{!! Form::text('ViewPoint', $ViewPoint, array('maxlength'=>'64','id'=>'ViewPoint','class' => 'form-control')) !!}
計算ルール
{!! Form::textarea('Rule', $Rule, array('maxlength'=>'1024','rows'=>'6','id'=>'Rule','class' => 'form-control','cols'=>'50')) !!}
単位
{!! Form::text('Unit', $Unit, array('maxlength'=>'3','id'=>'Unit','class' => 'form-control')) !!}
求める値
{!! Form::cd_select('AggregatePattern', Config::get('cd_const.AGGREGATE_PATTERN'), $AggregatePattern, true, Message::get('C00001') , null, ['id' => 'AggregatePattern', 'class' => 'form-control'], null) !!}
0点指標
{!! Form::text('ZeroValue', $ZeroValue, array('maxlength'=>'8','id'=>'ZeroValue','class' => 'text-center form-control')) !!}
{{ isset($Unit)?$Unit:'-' }}
{!! Form::cd_select('ZeroValueCondition', Config::get('cd_const.ZERO_VALUE_CONDITION'), $ZeroValueCondition, true, Message::get('C00001') , null, ['id' => 'ZeroValueCondition', 'class' => 'form-control'], null) !!}
*単位を入力すると、0点指標・満点指標に単位が自動反映されます。
満点指標
{!! Form::text('PerfectValue', $PerfectValue, array('maxlength'=>'8','id'=>'PerfectValue','class' => 'text-center form-control')) !!}
{{ isset($Unit)?$Unit:'-' }}
{!! Form::cd_select('PerfectValueCondition', Config::get('cd_const.PERFECT_CONDITION'), $PerfectValueCondition , true, Message::get('C00001') , null, ['id' => 'PerfectValueCondition', 'class' => 'form-control'], null) !!}
POINT
{!! Form::textarea('Point', $Point, array('maxlength'=>'256','rows'=>'6','id'=>'Point','class' => 'form-control')) !!}
得点配分
{!! Form::text('Score', $Score, array('maxlength'=>'3','id'=>'Score','class' => 'form-control short-input')) !!}
 点満点
備 考
{!! Form::text('Note', $Note, array('maxlength'=>'64','id'=>'Note','class' => 'form-control')) !!}
@if($IsModify) @endif
{!! Form::close() !!} @stop @section('modal') @include('layouts.modal') @stop @section('layouts.footer') @include ('layouts.footer') @stop @section('optionalJs') @append