-
Notifications
You must be signed in to change notification settings - Fork 0
/
relatorio-estoque.php
106 lines (103 loc) · 3.45 KB
/
relatorio-estoque.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
if (!isset($_SESSION['id_usuario'])) {
header("location: login.php");
exit();
}
require_once 'classes/produto.php';
$p = new produto();
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Relatorio de Estoque</title>
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="./assets/css/gerenciamento_produto.css">
<link rel="stylesheet" href="https://use.typekit.net/tvf0cut.css">
</head>
<body>
<header>
<div class="container">
<a href="index.php" class="logo">
<img src="assets/images/ho.svg" alt="" />
</a>
<div class="blc-user">
<img src="assets/images/icon-feather-user.svg" alt="" />
<span>
Olá, <br />
Lorem Ipsum
</span>
<img src="assets/images/arrow-down.svg" alt="" />
<div class="menu-drop">
<a href="gerenciamento-cliente.php">Gerenciar clientes</a>
<a href="gerenciamento-produto.php">Gerenciar produtos</a>
<a href="gerenciamento-usuario.php">Gerenciar usuarios</a>
<a href="cadastro-cliente.php">Cadastrar cliente</a>
<a href="cadastro-usuario.php">Cadastrar usuário</a>
<a href="cadastro-produto.php">Cadastrar produto</a>
<a href="novo-pedido.php">Novo pedido</a>
<a href="alterar-senha.php?id_usuario=<?php echo $_SESSION['id_usuario']; ?>">Alterar senha</a>
<a href="relatorio-estoque.php">Relatorio de estoque</a>
<a href="logout.php">Sair da conta</a>
</div>
</div>
</div>
</header>
<section class="page-gerenciamento-produto paddingBottom50">
<div class="container">
<div class="d-flex justify-content-between">
<a href="index.php" class="link-voltar">
<img src="assets/images/arrow.svg" alt="">
<span>Relatorio de estoque</span>
</a>
</div>
<div class="shadow-table">
<table>
<thead>
<tr>
<th>ID</th>
<th>Imagem</th>
<th>Nome</th>
<th>SKU</th>
<th>Descrição</th>
<th>Quantidade</th>
</tr>
</thead>
<tbody>
<?php
$dados = $p->buscarDados();
if (count($dados) > 0) {
foreach ($dados as $produto) {
echo "<tr>";
echo "<td>" . $produto['id_produto'] . "</td>";
echo "<td>
<div class='produto-imagem'>
<img class='img-produto' src='" . htmlspecialchars($produto['caminho']) . "' alt='" . htmlspecialchars($produto['nome']) . "'>
</div>
</td>";
echo "<td>
<span>" . htmlspecialchars($produto['nome']) . "</span>
</td>";
echo "<td>" . $produto['sku'] . "</td>";
echo "<td>" . $produto['descricao'] . "</td>";
echo "<td>" . $produto['quantidade'] . "</td>";
?>
<?php
echo "</tr>";
}
} else {
echo "<tr><td colspan='8'>Ainda não existem produtos cadastradas!</td></tr>";
}
?>
</tbody>
</table>
</div>
</div>
</section>
</body>
</html>