forked from sistema-stay-green/sistema-stay-green.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatrimonio.html
More file actions
158 lines (141 loc) · 7.81 KB
/
Patrimonio.html
File metadata and controls
158 lines (141 loc) · 7.81 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Mei Fagundes">
<meta name="author" content="Sávio Cardoso">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Controle de Patrimônio</title>
<link rel="stylesheet" type="text/css" href="CSS/staygreen.css"/>
<link rel="stylesheet" type="text/css" href="CSS/Patrimonio/Patrimonio.css"/>
<link rel="icon" type="image/png" href="imgs/icons/favicon.png">
</head>
<body>
<nav>
<a href="perfil.html">Perfil</a>
<a href="agendaEletronica.html">Agenda</a>
<a href="controleMaquinas.html">Maquinas</a>
<a href="index.html"><img src="imgs/staygreen.png" ></a>
<a href="Patrimonio.html">Patrimônio</a>
<a href="controleProducao.html">Produção</a>
<a href="paginaVendasProdutor.html">Vendas</a>
</nav>
<div class="mascara"></div>
<section id="main">
<section id="tabela">
<h1>Controle de Patrimônio</h1>
<section id="toolbar">
<span>
<label for="filtroSelect">Filtrar: </label>
<select id="filtroSelect">
<option value="" selected>Todos</option>
<option value="EM_POSSE">Em Posse</option>
<option value="EM_MANUTENCAO">Em Manutenção</option>
<option value="ALUGADO">Alugados</option>
<option value="VENDIDO">Vendidos</option>
<option value="DESCARTADO">Descartados</option>
</select>
</span>
</section>
<table id="patrimonioTable" class="shadow">
<thead>
<tr>
<th>ID</th>
<th>Nome</th>
<th>Tipo</th>
<th>Finalidade</th>
<th>Status</th>
<th>Índice de Depreciação</th>
<th>Valor da Compra/Procução</th>
<th>Valor Atual</th>
<th>Data da Compra/Procução</th>
<th>Data da última Saída</th>
<th>Data do último Retorno</th>
<th>Data da última Baixa</th>
<th>Opções</th>
</tr>
</thead>
<tbody></tbody>
</table>
<span id="noResults">
<p>Nenhum Patrimônio foi encontrado.</p>
<p>Tente mudar o filtro selecionado, registrar um novo Patrimônio ou verificar se o servidor está ativo.</p>
</span>
</section>
<!-- Div Modal Formulário -->
<section id="form" class="modal shadow esconde">
<div class="conteudo">
<label for="nomeInput">Nome do Patrimônio:</label>
<input type="text" name="nomeInput" placeholder="Digite...">
<label for="tipoInput">Tipo do Patrimônio:</label>
<select name="tipoInput">
<option value="MAQUINA" selected>Máquina</option>
<option value="ANIMAL">Animal</option>
<option value="IMOVEL">Imóvel</option>
<option value="MERCADORIA">Mercadoria</option>
<option value="UTENSILIO">Utensilio</option>
<option value="VEICULO">Veículo</option>
<option value="TERRENO">Terreno</option>
<option value="OUTROS">Outros</option>
</select>
<label for="finalidadeInput">Descrição da finalidade do Patrimônio:</label>
<input type="text" name="finalidadeInput" placeholder="Digite...">
<label for="indiceDepreciacaoInput">Índice de Depreciação por Ano (%):</label>
<input type="number" step="0.1" min="0" max="100" name="indiceDepreciacaoInput" placeholder="Digite...">
<label for="valorCompraInput">Valor da Compra/Produção (R$):</label>
<input type="number" step="0.01" min="0" name="valorCompraInput" placeholder="Digite...">
<label for="dataCompraInput">Data da Compra/Produção:</label>
<input type="date" name="dataCompraInput">
<div id="statusOptions">
<label for="statusOptions">Registrar Entrada/Saída:</label>
<button name="entradaOptionButton" class="botaoFantasma">Retorno</button>
<button name="saidaOptionButton" class="botaoFantasma">Saída</button>
</div>
<div name="entrada" class="esconde">
<label for="dataEntradaInput">Data do Retorno:</label>
<input type="date" name="dataEntradaInput">
</div>
<div name="saida" class="esconde">
<label for="tipoSaidaInput">Saída: </label>
<select name="tipoSaidaInput">
<option value="EM_POSSE" selected>Em Posse</option>
<option value="VENDIDO">Venda</option>
<option value="DESCARTADO">Descarte</option>
<option value="ALUGADO">Aluguel</option>
<option value="EM_MANUTENCAO">Manutenção</option>
</select>
<label for="dataSaidaInput">Data da Saída:</label>
<input type="date" name="dataSaidaInput">
</div>
</div>
<div class="container-modal">
<button name="cancelarModalButton" class="shadow">Cancelar</button>
<button name="enviar" class="shadow">Enviar</button>
</div>
</section>
<section id="relatorio" class="modal shadow esconde">
<div></div>
<div>
<button name="printRelatorio" class="shadow">Imprimir</button>
<button name="closeRelatorio" class="shadow">Cancelar</button>
</div>
</section>
<section id="errorModal" class="modal esconde shadow">
<p>ERRO!!!</p>
</section>
<div id="floatingButtons">
<button name="addButton" class="shadow" title="Registrar Patrimônio Comprado."><img src="imgs/Patrimonio/add-material-design.png" alt=""></button>
<button name="relatorioButton" class="shadow" title="Gerar Relatório."><img src="imgs/Patrimonio/library-material-design.png" alt=""></button>
</div>
</section>
<script src="JS/staygreen.js"></script>
<script src="JS/Patrimonio/Patrimonio.js"></script>
<script src="JS/Patrimonio/PatrimonioFilter.js"></script>
<script src="JS/Patrimonio/PatrimonioConnection.js"></script>
<script src="JS/Patrimonio/PatrimonioPage.js"></script>
<script src="JS/Patrimonio/PatrimonioDebug.js"></script>
<script src="JS/Patrimonio/PatrimonioManipulation.js"></script>
<script src="JS/Patrimonio/PatrimonioInit.js"></script>
</body>
</html>