@extends('layouts.master') @section('header-title') Supplier Quality - Other Configuration @endsection @section('content')

Supplier Quality Internal Contact

{{-- More Info --}}

Here you can select the titles of the users that are the internal contacts, which are showed in the Scorecard page.


@foreach($plants as $plant) @endforeach
Plant Title
{{$plant->name }}

Background Tasks

Here you can see all the background tasks that are running on the system, you can activate or deactivate them.
@foreach($background_tasks as $task) @endforeach
Name Description Plant Configuration
{{$task['name'] }} {{$task['description']}} @foreach($plants as $plant) @endforeach
{{$plant->name}}
@if($task['plants'][$plant->id]['active'] == true ) @else @endif

Automatic QPRs

Here you can see all the automatic QPRs that are triggered by a bad evaluation, or other aspect.
@foreach($automatic_qprs as $item) @endforeach
Name Description Plant Configuration
{{$item['name'] }} {{$item['description']}} @foreach($plants as $plant) @endforeach
{{$plant->name}}
@if($item['plants'][$plant->id]['active'] == true ) @else @endif
@endsection @section('plugin-scripts') @include('scripts.datatablesjs') @endsection @section('app-scripts') @endsection