@extends('admin.layouts.master') @section('title', 'كفاءة الماكينات OEE') @push('styles') @endpush @section('page-header') @include('admin.reports._header', [ 'title' => 'كفاءة الماكينات (OEE)', 'subtitle' => 'مؤشر الكفاءة الكلية - المعيار العالمي لقياس أداء المعدات', 'icon' => 'ti-gauge', 'color' => 'purple', ]) @endsection @section('content') @include('admin.reports._filters', ['from'=>$from, 'to'=>$to, 'showCompare'=>false]) {{-- شرح OEE --}}
Overall Equipment Effectiveness هو المعيار العالمي لقياس كفاءة الماكينات في المصانع. يجمع 3 عوامل: التوافر (Availability) × الأداء (Performance) × الجودة (Quality)
| الماكينة | النوع | التوافر | الأداء | الجودة | OEE | ساعات | إنتاج | فاقد |
|---|---|---|---|---|---|---|---|---|
| {{ $row['machine']->name }} {{ $row['machine']->code }} |
{{ $row['machine']->machineType?->name ?? '-' }} | {{ $row['availability'] }}% |
{{ $row['performance'] }}% |
{{ $row['quality'] }}% |
@php $cls = $row['oee'] >= 85 ? 'oee-excellent' : ($row['oee'] >= 60 ? 'oee-good' : 'oee-poor'); @endphp {{ $row['oee'] }}% | {{ $row['actual_hours'] }} | {{ number_format($row['output']) }} | {{ number_format($row['waste']) }} |
| لا توجد بيانات | ||||||||