@extends('layout.default') @section('head') @stop @section('content') @if(Session::has('flash_msg'))

{!! Session::get('flash_msg')!!}

{!! Session::forget('flash_msg') !!} @endif

{{ $filelogs->count() }} 件ヒットしました。

{{ Form::open(['method' => 'post']) }} {{ Form::close() }} @if ($flow_available) @endif @foreach ($filelogs as $line) {{-- 操作 --}} {{-- 組織名 --}} @if ($line->filelogs_organization) @else @endif {{-- ユーザ名 --}} @if ($line->filelogs_user) @else @endif {{-- IPアドレス --}} @if ($line->filelogs_ipaddress) @else @endif {{-- ファイル名 --}} @if ($line->filelogs_filename) @else @endif {{-- ファイルサイズ(KB) --}} @if ($line->filelogs_filename) @else @endif {{-- 処理時間(秒) --}} @if ($line->operation) @else @endif {{-- ステータス --}} @if ($line->filelogs_status) @else @if ($line->scvflow_logs_status === 'waiting') @elseif ($line->scvflow_logs_status === 'canceled') @elseif ($line->scvflow_logs_status === 'permitted') @elseif ($line->scvflow_logs_status === 'denied') @endif @endif {{-- 開始時間 --}} @if (!$line->scvflow_logs_user) @else @endif @if ($flow_available) {{-- 方向 --}} {{-- 申請者 --}} {{-- 承認者 --}} {{-- 申請者コメント --}} {{-- 申請日時 --}} {{-- 承認日時(承認待ちのとき "0000-00-00" のように表示されるので判定を入れる) --}} @if (strpos($line->authorized_at, '00') !== 0) @else @endif {{-- 承認者コメント --}} @endif @endforeach
操作 組織名 ユーザ名 IPアドレス ファイル名 ファイルサイズ(KB) 処理時間(秒) ステータス 開始時間方向 申請者 承認者 申請者コメント 申請日時 承認日時 承認者コメント
{{ $line->operation }}{{ $line->filelogs_organization }}{{ $line->scvflow_logs_organization }}{{ $line->filelogs_user }}{{ $line->scvflow_logs_user }}{{ $line->filelogs_ipaddress }}{{ $line->scvflow_logs_ipaddress }}{{ $line->filelogs_filename }}{{ $line->scvflow_logs_filename }}{{ number_format($line->filelogs_filesize) }} KB{{ number_format($line->scvflow_logs_filesize / 1024 + 1) }} KB {{ $line->elapsed_time }} - {{ $line->filelogs_status }}承認待ち申請取消承認済み否認済み{{ $line->created_at }}{{ $line->requested_at }}{{ $line->action_type }}{{ $line->applicant_summary }}{{ $line->authorizer_summary }}{{ $line->scvflow_logs_comment }}{{ $line->requested_at }}{{ $line->authorized_at }}-{{ $line->why_denied }}
@stop @section('script') @stop