@extends('layout.default') @section('head') @stop @section('content')
{!! Session::get('flash_msg')!!}
{!! Session::forget('flash_msg') !!} @endif{{ $filelogs->count() }} 件ヒットしました。
{{ Form::open(['method' => 'post']) }}操作 | 組織名 | ユーザ名 | IPアドレス | ファイル名 | ファイルサイズ(KB) | 処理時間(秒) | ステータス | 開始時間 | @if ($flow_available)方向 | 申請者 | 承認者 | 申請者コメント | 申請日時 | 承認日時 | 承認者コメント | @endif||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $line->operation }} | {{-- 組織名 --}} @if ($line->filelogs_organization){{ $line->filelogs_organization }} | @else{{ $line->scvflow_logs_organization }} | @endif {{-- ユーザ名 --}} @if ($line->filelogs_user){{ $line->filelogs_user }} | @else{{ $line->scvflow_logs_user }} | @endif {{-- IPアドレス --}} @if ($line->filelogs_ipaddress){{ $line->filelogs_ipaddress }} | @else{{ $line->scvflow_logs_ipaddress }} | @endif {{-- ファイル名 --}} @if ($line->filelogs_filename){{ $line->filelogs_filename }} | @else{{ $line->scvflow_logs_filename }} | @endif {{-- ファイルサイズ(KB) --}} @if ($line->filelogs_filename){{ number_format($line->filelogs_filesize) }} KB | @else{{ number_format($line->scvflow_logs_filesize / 1024 + 1) }} KB | @endif {{-- 処理時間(秒) --}} @if ($line->operation){{ $line->elapsed_time }} | @else- | @endif {{-- ステータス --}} @if ($line->filelogs_status){{ $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){{ $line->created_at }} | @else{{ $line->requested_at }} | @endif @if ($flow_available) {{-- 方向 --}}{{ $line->action_type }} | {{-- 申請者 --}}{{ $line->applicant_summary }} | {{-- 承認者 --}}{{ $line->authorizer_summary }} | {{-- 申請者コメント --}}{{ $line->scvflow_logs_comment }} | {{-- 申請日時 --}}{{ $line->requested_at }} | {{-- 承認日時(承認待ちのとき "0000-00-00" のように表示されるので判定を入れる) --}} @if (strpos($line->authorized_at, '00') !== 0){{ $line->authorized_at }} | @else- | @endif {{-- 承認者コメント --}}{{ $line->why_denied }} | @endif