-
Notifications
You must be signed in to change notification settings - Fork 0
/
Colors Site.txt
78 lines (69 loc) · 3.24 KB
/
Colors Site.txt
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
#212529(--ROSA)
#212529 (--PRETO)
<table class="table table-sm">
<thead>
<tr class="trF">
<th class="quantidade" scope="col">QUANT</th>
<th scope="col">PRODUTO/SERVIÇO</th>
<th scope="col">UNIT</th>
<th scope="col">TOTAL</th>
</tr>
</thead>
<tbody>
<tr>
<td class="quantidade">
<input id="quant1" type="text" oninput="numberIs(this)" size="3" maxlength="4" />
</td>
<td class="produto"><input size="38" type="text" maxlength="38" id="pro1"></td>
<td class="unitario"><input id="uni1" type="text" oninput="numberIs(this)" size="10" maxlength="10" /></td>
<td class="total"><input id="tot1" disabled="disabled" type="text" oninput="numberIs(this)" size="10"
maxlength="10" /></td>
</tr>
<tr>
<td class="quantidade">
<input id="quant2" type="text" oninput="numberIs(this)" size="3" maxlength="4" />
</td>
<td class="produto"><input size="38" type="text" maxlength="38" id="pro2"></td>
<td class="unitario"><input id="uni2" type="text" oninput="numberIs(this)" size="10" maxlength="10" /></td>
<td class="total"><input id="tot2" disabled="disabled" type="text" oninput="numberIs(this)" size="10"
maxlength="10" /></td>
</tr>
<tr>
<td class="quantidade">
<input id="quant3" type="text" oninput="numberIs(this)" size="3" maxlength="4" />
</td>
<td class="produto"><input size="38" type="text" maxlength="38" id="pro3"></td>
<td class="unitario"><input id="uni3" type="text" oninput="numberIs(this)" size="10" maxlength="10" /></td>
<td class="total"><input id="tot3" disabled="disabled" type="text" oninput="numberIs(this)" size="10"
maxlength="10" /></td>
</tr>
<tr>
<td class="quantidade">
<input id="quant4" type="text" oninput="numberIs(this)" size="3" maxlength="4" />
</td>
<td class="produto"><input size="38" type="text" maxlength="38" id="pro4"></td>
<td class="unitario"><input id="uni4" type="text" oninput="numberIs(this)" size="10" maxlength="10" /></td>
<td class="total"><input id="tot4" disabled="disabled" type="text" oninput="numberIs(this)" size="10"
maxlength="10" /></td>
</tr>
<tr>
<td class="quantidade">
<input id="quant5" type="text" oninput="numberIs(this)" size="3" maxlength="4" />
</td>
<td class="produto"><input size="38" type="text" maxlength="38" id="pro5"></td>
<td class="unitario"><input id="uni5" type="text" oninput="numberIs(this)" size="10" maxlength="10" /></td>
<td class="total"><input id="tot5" disabled="disabled" type="text" oninput="numberIs(this)" size="10"
maxlength="10" /></td>
</tr>
<tr>
<td class="quantidade"> </td>
<td class="produto"> </td>
<td class="unitario"> </td>
<td class="total"> </td>
</tr>
<tr>
<td class="produto" colspan="3"></td>
<td><span id="totall">TOTAL</span></td>
</tr>
</tbody>
</table>