AssetsAdm |
|||
Work Order Report - Group by {{$groupby}} |
Summary View - {{ $groupbyName}} |
Group By | @if($assignedcount > 0)Assigned | @else @endif @if($completedcount > 0)Completed | @else @endif @if($holdcount > 0)Hold | @else @endif @if ($wipcount > 0)WIP | @else @endif @if($pendingcount > 0)Pending | @else @endifTotal |
---|---|---|---|---|---|---|
{{$work_order->labels}} | @if($assignedcount > 0){{$work_order->assigned}} | @else @endif @if ($completedcount > 0){{$work_order->completed}} | @else @endif @if($holdcount > 0){{$work_order->hold}} | @else @endif @if($wipcount > 0){{$work_order->wip}} | @else @endif @if($pendingcount > 0){{$work_order->pending}} | @else @endif{{$work_order->total}} |
|
@forelse(array_slice($work_orders['all'], 0, $pageLength) as $key => $row)
@if($key == 0)
Detail View |
Work Order | Work Due | Assets | Company | Work Priority | HR Cost | Supplier | Technician | Request | Status | Type | Material Cost | Estimated Time | Total Consumed Time | Total HR Cost | Total Material Cost | Contact Name | Contact Number | Remarks | Status Date | Created At | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ @$inner_row['ref'] }} | {{ @$inner_row['work_due'] }} | {{ @$inner_row['asset']['name'] }} | {{ @$inner_row['company']['name'] }} | {{ @$inner_row['work_priority'] }} | {{ number_format(@$inner_row['totalhrcost'], @$inner_row['company']['no_of_decimal_in_currency']) }} | {{ @$inner_row['supplier']['name'] }} | {{ @$technician_name }} | {{ @$inner_row['request_type'] }} | {{ @$inner_row['work_status'] }} | {{ @$inner_row['workorder_type'] }} | {{ number_format(@$inner_row['totalmaterialcost'], @$inner_row['company']['no_of_decimal_in_currency']) }} | {{ @$inner_row['estimated_time'] }} | {{ secondsToHoursMinutes(@$inner_row['consumed_time_seconds']) }} | {{ @$inner_row['totalhrcost'] }} | {{ @$inner_row['totalmaterialcost'] }} | {{ @$inner_row['contact_name'] }} | {{ @$inner_row['contact_no'] }} | {{ @$inner_row['remark'] }} | {{ @$inner_row['status_date'] }} | {{ @$inner_row['created_at'] }} | |
No work orders found. |
No work orders found.
--}} @endforelse