eOSP2/resources/views/trainings.blade.php

200 lines
8.1 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('layout.app')
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<meta name="csrf-token" content="{{ csrf_token() }}">
@section('left-menu')
@parent
<ul>
<a href="/strazacy"><li>Strażacy<img src="/img/left_menu_icon/more.png"></li></a>
@if(auth()->user()->accessLevel() == 50)
<form id="myForm" action="{{ route('trainings.pdfALL') }}" method="post" style="display:inline;">
{{ csrf_field() }}
<input type="hidden" class="form-control" name="fireStationID" value="{{auth()->user()->fireStationID}}">
<li onclick="myForm.submit();">Drukuj badania</li>
</form>
@endif
</ul>
@stop
@section('center-area')
<meta name="csrf-token" content="{{ csrf_token() }}">
@parent
@if( auth()->check())
@if( auth()->user()->fireStationID == NULL)
Jednostka nie istnieje
@else
<p align='center'>
<form method="POST" action="/szkolenia">
{{ csrf_field() }}
<div class="form-group">
<label for="name">Nazwa nowego szkolenia/badania:</label>
<input type="text" class="form-control" id="name" name="name" value="{{ old('name') }} ">
</div>
<div class="form-group">
<button style="cursor:pointer" type="submit" class="btn btn-primary">Dodaj</button>
</div>
@include('inc.formerrors')
</form>
<table class='table'>
<tr class='table-header'>
<thead>
<th>#</th>
<th>Nazwa Szkolenia</th>
<th>Ilość z ukończonym</th>
<th>Operacja</th>
<th>Szczegóły</th>
</thead>
<tbody>
@php
$i=1;
@endphp
@foreach($trainings as $training)
<tr id="{{$training->id}}">
<th>{{$i}}</th>
<td id="name{{ $training->id }}">{{ $training->trainingName }}</td>
<td id="amount{{ $training->id }}">{{$howMuch[$training->id]}}</td>
<td>
<button class="btn btn-success " type="submit" onclick="renameTraining('{{$training->id}}')" id="{{$training->id}}">Zmień nazwę</button>
<a href="{{ URL::asset('szkolenia/addTrainingsFireFighters/'.$training->id) }}" class="btn btn-secondary" role="button">Zarządzaj</a>
<button class="btn btn-danger" type="submit" id="{{$training->id}}" onclick="deleteButton('{{$training->id}}')">Usuń</button>
<form action="{{ route('trainings.pdfSingle') }}" method="post" style="display:inline;">
{{ csrf_field() }}
<input type="hidden" class="form-control" name="trainingID" value="{{$training->id}}">
<button class="btn btn-dark" type="submit">Drukuj badania</button>
</form>
</td>
<td>
<button class="btn btn-info" onclick="showMoreInformation('{{$training->id}}')" id="more{{$training->id}}">Więcej</button>
</td>
</tr>
<tr id="moreInformation{{$training->id}}" style="visibility:collapse;" >
<td colspan="5">
<table class="table table-dark">
<thead>
<tr>
<th>Imię i Nazwisko</th>
<th>Ważne od:</th>
<th>Ważne do:</th>
</tr>
</thead>
<tbody>
@foreach($fireFighters[$training->id] as $fireFighter)
@if($fireFighter->dateOfComplete != null and $fireFighter->dateOfExpiry != null)
<tr id="{{$fireFighter->userID}}">
<td>{{$fireFighter->name}} {{$fireFighter->surname}}</td>
<td>{{$fireFighter->dateOfComplete}}</td>
<td>{{$fireFighter->dateOfExpiry}}</td>
</tr>
@endif
@endforeach
</tbody>
</table>
</td>
</tr>
@php
$i++;
@endphp
@endforeach
</tbody>
</table>
{{ $trainings->links() }}
</p>
@endif
@else
Brak autoryzacji
@endif
@stop
<script>
function showMoreInformation(operationID){
if( $('#more'+operationID).val() == "Więcej"){
$('#more'+operationID).val("Ukryj");
$("#moreInformation"+operationID).css('visibility', 'visible');
} else{
$('#more'+operationID).val("Więcej");
$("#moreInformation"+operationID).css('visibility', 'collapse');
}
}
function renameTraining(trainingID){
swal.fire({
title: "Podaj nową nazwę",
width: 'auto',
input: 'text',
confirmButtonText: 'Zapisz',
cancelButtonText: 'Anuluj',
showCancelButton: true,
inputValidator: (value) => {
if (!value) {
return 'To pole nie może zostać puste'
}
}
}).then((result) => {
if(result.value){
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
$.ajax({
type: 'post',
url: '/szkolenia/rename',
data: {
'trainingID': trainingID,
'trainingName': result.value,
},
success: function(data) {
$('.btn-info', '#'+trainingID).parents("tr").find("td:eq(0)").html(result.value);
}
});
}
}
)
}
function deleteButton(trainingID){
swal.fire({
title: "Czy chcesz usunąć badanie/szkolenie?",
width: 'auto',
confirmButtonText: 'Tak',
cancelButtonText: 'Nie',
showCancelButton: true,
}).then((result) => {
if(result.value){
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
$.ajax({
url: "szkolenia/"+trainingID,
type: 'DELETE',
data: {
"id": trainingID,
},
success: function (){
console.log("it Works");
location.reload();
}
});
}
})
}
</script>