-
Notifications
You must be signed in to change notification settings - Fork 0
/
itemPendente.php
66 lines (59 loc) · 2.11 KB
/
itemPendente.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
require('cabecalho.php');
?>
<section class="section">
<div class="container">
<?php
echo "<table class='table is-striped is-narrow is-fullwidth is-hoverable is-bordered' >";
echo "
<div class='columns'>
<div class='column is-10'>
<h1 class='title'>Relatório de Itens Pendentes</h1>
</div>
<div class='column is-2'>
<button class='button is-link is-medium' onclick='window.print()'>Imprimir <i class='far fa-file-pdf fa-md pl-5'></i> </button>
</div>
<thead class='has-background-grey-lighter'>
<tr>
<th> ID </th>
<th> Data de Cadastro </th>
<th> Item </th>
<th> Mutuante </th>
<th> Mutuário </th>
<th> Data devolução </th>
</tr>
</thead>";
// //$conexao = mysqli_connect()('localhost', 'root', '', 'prestare') or die('Erro no banco de dados');
//$conexao = mysqli_connect()('localhost', 'root', 'R64S1m/JVu947bye', 'prestare') or die('Não conseguimos conectar no banco de dados!');
$sql = "select * from itens where data_devolucao = '0000-00-00 00:00:00.000000'";
$resultado = mysqli_query($conexao, $sql) or die('Não foi possível realizar consulta');
function data($data)
{
if ($data == '0000-00-00 00:00:00.000000') {
$msg = '<p class="has-text-danger has-text-weight-medium">Aguardando</p>';
return $msg;
} else {
return date("d/m/Y", strtotime($data));
}
}
while ($registro = mysqli_fetch_array($resultado)) {
$id = $registro['item_id'];
$data_cadastro = $registro['data_cadastro'];
$item = $registro['item'];
$mutuante = $registro['mutuante'];
$mutuario = $registro['mutuario'];
$data_devolucao = $registro['data_devolucao'];
echo "<tr>";
echo "<td>" . "$id" . "</td>";
echo "<td>" . data($data_cadastro) . "</td>";
echo "<td>" . "$item" . "</td>";
echo "<td>" . "$mutuante" . "</td>";
echo "<td>" . "$mutuario" . "</td>";
echo "<td>" . data($data_devolucao) . "</td>";
echo "</tr>";
}
// mysqli_close($conexao);
echo "</table>";
?>
</div>
</section>