forked from Rutemberg/Drugstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Busca_nomeProdutodalixeira.php
75 lines (69 loc) · 5.38 KB
/
Busca_nomeProdutodalixeira.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
<?php session_start(); ?>
<?php
if (!empty($_GET["valor"])) {
require_once './Modelos/ClasseProduto.php';
require_once 'Controle/DAO/ClasseBuscaProduto.php';
$produtoDAO = new ClasseBuscaProduto;
$produtos = array();
$produtos = $produtoDAO->listarProduto();
if ($produtos != NULL) {
?>
<!--//EXECUTA UM LOOP PARA MOSTRAR OS NOMES DAS PESSOAS
// VALE LEMBRAR QUE TODOS ESSES RESULTADOS SERAO MOSTRADOS DENTRO DO DIV 'PAGINA'-->
<ul class="listarestiloprod" >
<?php foreach ($produtos as $produto) { ?>
<?php if ($produto->estatusprod == "Removido") { ?>
<a href="Restrito.php?PAGINA=alterarProduto&&codProduto=<?php echo $produto->codProduto; ?>">
<li style="opacity: 0.4">
<div style="float: left;text-align: center;width: 30%;height: 70%;overflow: hidden;margin-left: 10px;margin-top: 35px;"><?php echo '<img src="Img/ImagensBanco/' . $produto->imagem . '" style="width: 100%;height: auto;margin: 0px;margin-top:10%"/>' ?></div>
<p class="nomelistar" style="margin-top: 30px;color: #555;font-size: 17px;overflow: hidden;height: 20px;text-align: right;font-weight: bolder"><?php echo $produto->nome; ?></p>
<p style="margin-top: 10px;font-size: 15px;width: 60%;height: 100px;overflow: hidden"> <?php echo $produto->descricao; ?></p>
<p style="margin-top: 5px;font-size: 13px;width: 60%;height: 30px;overflow: hidden">Quantidade em estoque: <?php echo $produto->quantidade; ?></p>
<p style="font-size: 25px;color: #f94c3b;margin-top: 10px;text-align: right ">Preço: R$<?php echo $produto->valor=number_format($produto->valor, 2, ',', '.'); ?></p>
<p style="color: #8e8e8e; position: absolute;top: 5px;left: 0;width: 27%;background:#212121;color: white;height: 25px;line-height: 25px;text-align: center"><?php echo $produto->categoria; ?></p>
<?php if (isset($_SESSION['FuncionarioLogado']) && ($_SESSION['PerfilFuncionarioLogado'] < 3)) { ?>
<a class="excluirpermanente" onclick="return confirm('Tem certeza de que deseja exclui-lo permanentemente?');" href="Restrito.php?PAGINA=ExcluirProduto&&codProduto=<?php echo $produto->codProduto; ?>"></a>
<?php } ?>
<a class="alterar" style="color: white" href="Restrito.php?PAGINA=AdicionarnovamenteProduto&&codProduto=<?php echo $produto->codProduto; ?>">Mover para o estoque</a>
</li>
</a>
<?php } ?>
<?php } ?>
</ul>
<?php
}
if ($produtos == null) {
echo "<div style='margin: 0 auto;margin-top: 50px;font-size: 20px;color: #555;width: 70%;height: 100px;line-height: 100px;background: white'>Nenhunm resultado encontrado!<div>";
}
}
?>
<?php if (!empty($_GET["valor"]) == null) { ?>
<?php
require_once './Modelos/ClasseProduto.php';
require_once 'Controle/DAO/ClasseBuscaProduto.php';
$produtoDAO = new ClasseBuscaProduto;
$produtos = array();
$produtos = $produtoDAO->listarProduto();
?>
<ul class="listarestiloprod" >
<?php foreach ($produtos as $produto) { ?>
<?php if ($produto->estatusprod == "Removido") { ?>
<a href="Restrito.php?PAGINA=alterarProduto&&codProduto=<?php echo $produto->codProduto; ?>">
<li style="opacity: 0.4">
<div style="float: left;text-align: center;width: 30%;height: 70%;overflow: hidden;margin-left: 10px;margin-top: 35px;"><?php echo '<img src="Img/ImagensBanco/' . $produto->imagem . '" style="width: 100%;height: auto;margin: 0px;margin-top:10%"/>' ?></div>
<p class="nomelistar" style="margin-top: 30px;color: #555;font-size: 17px;overflow: hidden;height: 20px;text-align: right;font-weight: bolder"><?php echo $produto->nome; ?></p>
<p style="margin-top: 10px;font-size: 15px;width: 60%;height: 100px;overflow: hidden"> <?php echo $produto->descricao; ?></p>
<p style="margin-top: 5px;font-size: 13px;width: 60%;height: 30px;overflow: hidden">Quantidade em estoque: <?php echo $produto->quantidade; ?></p>
<p style="font-size: 25px;color: #f94c3b;margin-top: 10px;text-align: right ">Preço: R$<?php echo $produto->valor=number_format($produto->valor, 2, ',', '.'); ?></p>
<p style="color: #8e8e8e; position: absolute;top: 5px;left: 0;width: 27%;background:#212121;color: white;height: 25px;line-height: 25px;text-align: center"><?php echo $produto->categoria; ?></p>
<?php if (isset($_SESSION['FuncionarioLogado']) && ($_SESSION['PerfilFuncionarioLogado'] < 3)) { ?>
<a class="excluirpermanente" onclick="return confirm('Tem certeza de que deseja exclui-lo permanentemente?');" href="Restrito.php?PAGINA=ExcluirProduto&&codProduto=<?php echo $produto->codProduto; ?>"></a>
<?php } ?>
<a class="alterar" style="color: white" href="Restrito.php?PAGINA=AdicionarnovamenteProduto&&codProduto=<?php echo $produto->codProduto; ?>">Mover para o estoque</a>
</li>
</a>
<?php } ?>
<?php } ?>
</ul>
<?php
}