-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (66 loc) · 1.87 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
<html>
<head>
<meta charset='utf-8'>
<title>Calculadora de Taxas de Administradoras de Cartão</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="scripts.js"></script>
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<input type="number" id="valor" value="" placeholder="Valor" size="10"/>
<select id=lista></select>
<button type="button" onclick="calculaValor()">Calcula Valor</button>
<table>
<tr>
<th></th>
<th>Taxa</th>
<th>Cobrar</th>
</tr>
<tr>
<td>Crédito à Vista: </td>
<td id="txCredAV"></td>
<td id="valCredAV"></td>
</tr>
<tr>
<td>Crédito 14 Dias: </td>
<td id="txCredAV14d"></td>
<td id="valCredAV14d"></td>
</tr>
<tr>
<td>Crédito 30 Dias: </td>
<td id="txCredAV30d"></td>
<td id="valCredAV30d"></td>
</tr>
<tr>
<td>Crédito Parcelado à Vista: </td>
<td id="txCredParAV"></td>
<td id="valCredParAV"></td>
</tr>
<tr>
<td>Crédito Parcelado 14 Dias: </td>
<td id="txCredPar14d"></td>
<td id="valCredPar14d"></td>
</tr>
<tr>
<td>Crédito Parcelado 30 Dias: </td>
<td id="txCredPar30d"></td>
<td id="valCredPar30d"></td>
</tr>
<tr>
<td>Débito: </td>
<td id="txDebito"></td>
<td id="valDebito"></td>
</tr>
<tr>
<td>Débito Caixa Tem: </td>
<td id="txDebitoCT"></td>
<td id="valDebitoCT"></td>
</tr>
<tr>
<td>Pix: </td>
<td id="txPix"></td>
<td id="valPix"></td>
</tr>
</table>
</body>
</html>