-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
228 lines (225 loc) · 7.89 KB
/
index.html
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculadora de Metas</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<div class="container">
<!-- Card de Vendas -->
<div class="card">
<h2>Vendas Totais</h2>
<div class="input-group currency">
<label for="totalSales">Total de Vendas</label>
<input
type="text"
id="totalSales"
value="0"
placeholder="Digite o valor total de vendas"
/>
</div>
<div class="input-group currency">
<label for="egpSales"
>Total Vendido de EGP -
<span id="egpPercentage">0%</span></label
>
<input
type="text"
id="egpSales"
value="0"
class="with-percentage"
placeholder="Digite o valor vendido de EGP"
/>
</div>
<div class="input-group currency">
<label for="perfumerySales"
>Total Vendido de Perfumaria -
<span id="perfumeryPercentage">0%</span></label
>
<input
type="text"
id="perfumerySales"
value="0"
class="with-percentage"
placeholder="Digite o valor vendido de Perfumaria"
/>
</div>
<div class="input-group">
<label for="felizVitSales">Unidades Vendidas de Feliz Vit</label>
<input
type="number"
id="felizVitSales"
value="0"
placeholder="Digite as unidades vendidas de Feliz Vit"
/>
</div>
<div class="input-group currency">
<label for="winterSales">Total Vendido de Inverno</label>
<input
type="text"
id="winterSales"
value="0"
placeholder="Digite o valor vendido de Inverno"
/>
</div>
<div class="input-group currency">
<label for="katiguaSales">Total Vendido de Katiguá</label>
<input
type="text"
id="katiguaSales"
value="0"
placeholder="Digite o valor vendido de Katiguá"
/>
</div>
</div>
<!-- Card de Metas -->
<div class="card goals-card">
<h2>Definir Metas</h2>
<div class="input-group currency">
<label for="totalGoal">Meta de Vendas Totais</label>
<input
type="text"
id="totalGoal"
value="0"
placeholder="Digite a meta de vendas totais"
/>
</div>
<div class="input-group double currency">
<label for="egpGoal">Meta de Vendas de EGP</label>
<input
type="text"
id="egpGoal"
value="0"
placeholder="Digite a meta de vendas de EGP"
/>
<!-- <input
type="text"
id="egpGoalPerc"
value="0"
class='pct'
placeholder="Digite porcentagem meta"
/> -->
</div>
<div class="input-group currency">
<label for="perfumeryGoal">Meta de Vendas de Perfumaria</label>
<input
type="text"
id="perfumeryGoal"
value="0"
placeholder="Digite a meta de vendas de Perfumaria"
/>
</div>
<div class="input-group">
<label for="felizVitGoal">Meta de Unidades de Feliz Vit</label>
<input
type="number"
id="felizVitGoal"
value="0"
placeholder="Digite a meta de unidades de Feliz Vit"
/>
</div>
<div class="input-group currency">
<label for="winterGoal">Meta de Vendas de Inverno</label>
<input
type="text"
id="winterGoal"
value="0"
placeholder="Digite a meta de vendas de Inverno"
/>
</div>
<div class="input-group currency">
<label for="katiguaGoal">Meta de Vendas de Katiguá</label>
<input
type="text"
id="katiguaGoal"
value="0"
placeholder="Digite a meta de vendas de Katiguá"
/>
</div>
</div>
<!-- Card de Projeções -->
<div class="card">
<h2>Projeção no Mês</h2>
<div class="input-group">
<label for="daysPassed">Dias Passados no Mês</label>
<input
type="number"
id="daysPassed"
placeholder="Digite o número de dias passados"
/>
</div>
<div class="input-group currency">
<label for="totalProjection">Projeção de Vendas Totais</label>
<input type="text" id="totalProjection" value="0" readonly />
</div>
<div class="input-group currency">
<label for="egpProjection">Projeção de Vendas de EGP</label>
<input type="text" id="egpProjection" value="0" readonly />
</div>
<div class="input-group currency">
<label for="perfumeryProjection"
>Projeção de Vendas de Perfumaria</label
>
<input type="text" id="perfumeryProjection" value="0" readonly />
</div>
<div class="input-group">
<label for="felizVitProjection"
>Projeção de Unidades de Feliz Vit</label
>
<input type="text" id="felizVitProjection" value="0" readonly />
</div>
<div class="input-group currency">
<label for="winterProjection">Projeção de Vendas de Inverno</label>
<input type="text" id="winterProjection" value="0" readonly />
</div>
<div class="input-group currency">
<label for="katiguaProjection">Projeção de Vendas de Katiguá</label>
<input type="text" id="katiguaProjection" value="0" readonly />
</div>
</div>
<div class="card">
<span>
<h2>Configurações</h2>
<div class="sub">
<h3>Relatório</h3>
<div class="checkbox-container" title="Funcionalidade indisponível. Padrão: Ativado">
<label style="opacity: .5" for="showCategories">Mostrar Categorias</label>
<input type="checkbox" id="showCategories" disabled checked="true" />
</div>
<div class="checkbox-container">
<label for="showSales">Mostrar Vendas</label>
<input type="checkbox" id="showSales" checked="true" />
</div>
<div class="checkbox-container">
<label for="showGoals">Mostrar Metas</label>
<input type="checkbox" id="showGoals" checked="true" />
</div>
<div class="checkbox-container">
<label for="showProjections">Mostrar Projeções</label>
<input type="checkbox" id="showProjections" checked="true" />
</div>
<div class="checkbox-container">
<label for="showStatus">Mostrar Status</label>
<input type="checkbox" id="showStatus" checked="true" />
</div>
<div class="checkbox-container">
<label for="autoPrint">Imprimir Automaticamente</label>
<input type="checkbox" id="autoPrint" checked="true" />
</div>
</div>
</span>
<button
id="generateReport"
class="button max-width"
onclick="generateReport()"
>
Gerar Relatório
</button>
</div>
</div>
<script src="/script.js"></script>
</body>
</html>