form.html
8.25 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
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>
<script src="{{ url_for('static', filename = 'src/ajax.js') }}"></script>
<script src="{{ url_for('static', filename = 'src/div.js') }}"></script>
<script src="{{ url_for('static', filename = 'src/pdf1.js') }}"></script>
<script src="{{ url_for('static', filename = 'src/pdf2.js') }}"></script>
<script src="{{ url_for('static', filename = 'src/pdf3.js') }}"></script>
<script src="{{ url_for('static', filename = 'src/forms.js') }}"></script>
<link rel="stylesheet" href="{{ url_for('static', filename = 'styles/general.css') }}">
<!--INCLUIMOS LA FUENTE-->
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/cmu-typewriter" type="text/css" />
<title>Pruebas de Alineamiento</title>
</head>
<body>
<div id="report" style="display: {% if bypass %} block {% else %} none {% endif %};">
<div class="MessageFixed">
Los datos con signo de pregunta '?' son datos no encontrados o faltantes.<br>
Pueden ser completados a mano antes de convertir a PDF.<br>
De no ser completados, se completaran automáticamente con el valor del campo 'Por defecto' al final de la página.
</div>
<div class="DataCard">
<h1>Datos Generales</h1>
Patente <input sub="header" type="text" name="patente">
<br>
Fecha <input sub="header" type="text" name="fecha">
<br>
Hora <input sub="header" type="text" name="hora">
<br>
Ingeniero <input sub="header" type="text" name="ingeniero">
<br>
Cantidad Ejes <select type="text" sub="alineador" id="cantidad_ejes" name="cantidad_ejes">
<option value="2" selected>2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
<br>
Peso Total <input sub="suspension" type="text" name="peso_estatico_general" id="peso_estatico_general">
<h1>Alineador</h1>
<br>
Eje Delantero <input sub="alineador" type="text" name="eje_delantero">
<br>
Eje Trazero <input sub="alineador" type="text" name="eje_trazero">
<br>
<h1>Suspensión</h1>
{% for eje in range(2) %}
<h3>Eje {{ eje + 1 }}</h3>
Rend. Izquerdo <input sub="suspension" type="text" name="rendimiento_izquierdo_{{ eje + 1 }}">
<br>
Rend. Derecho <input sub="suspension" type="text" name="rendimiento_derecho_{{ eje + 1 }}">
<br>
Peso Total <input sub="suspension" type="text" name="peso_estatico_{{ eje + 1 }}" id="peso_estatico_{{ eje + 1 }}">
<br>
<br>
{% endfor %}
<h1>Frenos</h1>
{% for eje in range(4) %}
<!--Aca Trabajamos para repoorte cliente corrientes-->
<h3>Eje {{ eje + 1 }}</h3>
Fuerza Izquierda <input sub="frenos" type="text" id="fuerza_izquierda_{{ eje + 1 }}" name="fuerza_izquierda_{{ eje + 1 }}">
<br>
Fuerza Derecha <input sub="frenos" type="text" id="fuerza_derecha_{{ eje + 1 }}" name="fuerza_derecha_{{ eje + 1 }}">
<br>
Resist. Izquierda <input sub="frenos" type="text" id="resistencia_izquierda_{{ eje + 1 }}" name="resistencia_izquierda_{{ eje + 1 }}" value="---">
<br>
Resist. Derecha <input sub="frenos" type="text" id="resistencia_derecha_{{ eje + 1 }}" name="resistencia_derecha_{{ eje + 1 }}" value="---">
<br>
Ovalidad Izquierda <input sub="frenos" type="text" name="ovalidad_izquierda_{{ eje + 1 }}">
<br>
Ovalidad Derecha <input sub="frenos" type="text" name="ovalidad_derecha_{{ eje + 1 }}">
<br>
Peso Total <input sub="frenos" type="text" id="peso_freno_estatico_{{ eje + 1 }}" name="peso_estatico_{{ eje + 1 }}">
<br>
Diferencia <input sub="frenos" type="text" id="diferencia_freno_{{ eje + 1 }}" name="diferencia_freno_{{ eje + 1 }}" value="---" readonly>
<br>
Eficacia <input sub="frenos" type="text" id="eficacia_freno_{{ eje + 1 }}" name="eficacia_freno_{{ eje + 1 }}" value="---" readonly>
<br>
<br>
{% endfor %}
<h3>Resultados finales freno serrvicio</h3>
Fuerza Fre. max. <input sub="frenos" type="text" id="rf_servicio_fuerza_max" name="rf_servicio_fuerza_max" value="---">
<br>
Diferencia <input sub="frenos" type="text" id="rf_servicio_fuerza_diferencia" name="rf_servicio_fuerza_diferencia" value="---">
<br>
Eficacia estic. <input sub="frenos" type="text" id="rf_servicio_eficacia_estatica" name="rf_servicio_eficacia_estatica" value="---">
<br>
<h1>Freno Estacionamiento</h1>
Fuerza Izquierda <input sub="trasero" type="text" name="fuerza_izquierda" id="fuerza_izquierda_freno_mano">
<br>
Fuerza Derecha <input sub="trasero" type="text" name="fuerza_derecha" id="fuerza_derecha_freno_mano">
<br>
Diferencia <input sub="frenos" type="text" id="diferencia_freno_mano" name="diferencia_freno_mano" value="---" readonly>
<br>
Eficacia <input sub="frenos" type="text" id="eficacia_freno_mano" name="eficacia_freno_mano" value="---" readonly>
<br>
Eje Nº <input sub="trasero" type="text" name="eje">
<br>
<!--Peso Total hidden-->
Peso Total<input sub="trasero" type="text" name="peso_estatico" id="peso_estatico_freno_mano">
<br>
<h3>Resultados finales freno servicio</h3>
Fuerza Fre. max. <input sub="frenos" type="text" id="rf_estacionamiento_fuerza_max" name="rf_estacionamiento_fuerza_max" value="---">
<br>
Diferencia <input sub="frenos" type="text" id="rf_estacionamiento_fuerza_diferencia" name="rf_estacionamiento_fuerza_diferencia" value="---">
<br>
Eficacia estic. <input sub="frenos" type="text" id="rf_estacionamiento_eficacia_estatica" name="rf_estacionamiento_eficacia_estatica" value="---">
<br>
<h1>Gases y Humos</h1>
Gases <input sub="gaseshumos" type="text" name="opacidad_logaritmica">
<br>
CO <input sub="gaseshumos" type="text" name="co">
<br>
HC <input sub="gaseshumos" type="text" name="hc">
<br>
<br>
<br>
Por defecto: <input type="text" name="defecto" value="---">
<br>
</div>
<div class="PDFButtonContainerFixed">
<!--
<button class="PDFButton" id="boton_pdf_maha_reporte">
Linea 1
</button>
-->
<button class="PDFButton" id="boton_pdf_maha_reporte2">
Linea 1
</button>
<!--
<button class="PDFButton" onclick=
"window.open(
compile(
(new PDF2()).pdf( collectToConvert() ),
new jsPDF('portrait', 'pt', 'a4')
)
.output('bloburl')
)";
>
Linea 2
</button>
-->
<img id="maha" src="{{ url_for('static', filename = 'assets/maha2.png') }}" style="display: none;">
</div>
<div class="PDFButtonContainerFixed" style="bottom: 40%;">
<button class="PDFButton" style="bottom: 40%; display: {% if bypass %} none {% else %} block {% endif %};"
onclick="location.reload()">
Volver
</button>
</div>
</div>
<div id="anomalies" class="DataCard" style="height: auto; display: none;">
</div>
<div id="form" class="DataCard" style="height: auto; display: {% if bypass %} none {% else %} block {% endif %};">
<h1>Generación de PDF</h1>
Patente <input required type="text" sub="header" name="patente">
<br>
<h1>Datos de Suspensión</h1>
Rendimiento Izquierdo - Eje 1 <input type="number" step="any" sub="suspension" name="rendimiento_izquierdo_1">
<br>
Rendimiento Derecho - Eje 1 <input type="number" step="any" sub="suspension" name="rendimiento_derecho_1">
<br>
Rendimiento Izquierdo - Eje 2 <input type="number" step="any" sub="suspension" name="rendimiento_izquierdo_2">
<br>
Rendimiento Derecho - Eje 2 <input type="number" step="any" sub="suspension" name="rendimiento_derecho_2">
<br>
Por defecto: <input name="defecto" type="text" value="---">
<div class="PDFButtonContainer">
<button class="PDFButton" onclick="collectToSearch('anomalies')">
Anomalías
</button>
<button class="PDFButton" onclick="collectToSearch('data')">
Ticket Fosa
</button>
</div>
<button class="PDFButton loginB" onclick= "location.href='/login'">
Login
</button>
</div>
<div id="message" class="MessageContainer" onclick="this.style.display = 'none'" style="display: none;">
<div class="Message" style="text-align: center;">
<p id = "msg"></p>
<span class = "X">x<span>
</div>
</div>
<script src="{{ url_for('static', filename = 'src/report.js') }}"></script>
</body>
</html>