foca-abm-cisterna-item.html
2.06 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
<div class="row">
<foca-cabecera-facturador
titulo="'Vehículo cisterna'"
fecha="now"
class="mb-0 col-lg-12"
></foca-cabecera-facturador>
</div>
<div class="row"></div>
<form name="formCisterna">
<div class="form-group row">
<label class="offset-sm-1 col-sm-2 col-form-label">Código de cisterna</label>
<div class="col-sm-4">
<input
class="form-control"
type="text"
ng-required="true"
ng-model="cisterna.codigo"
ng-keypress="next($event.keyCode)"
foca-focus="focused == 1"
ng-focus="focused = 1"
ng-disabled="!nuevo"
teclado-virtual
/>
</div>
</div>
<div class="form-group row">
<label class="offset-sm-1 col-sm-2 col-form-label">Capacidad</label>
<div class="col-sm-4">
<input
class="form-control"
type="text"
teclado-virtual
foca-tipo-input
ng-model="cisterna.capacidad"
ng-required="true"
ng-keypress="next($event.keyCode)"
foca-focus="focused == 2"
ng-focus="focused = 2"
/>
</div>
</div>
<div class="form-group row">
<label class="offset-sm-1 col-sm-2 col-form-label">Unidad de medida</label>
<div class="col-sm-4 input-group">
<input
ng-model="cisterna.unidadMedida.NOM"
class="form-control"
readonly
/>
<div class="input-group-append">
<button
ladda="searchLoading"
class="btn btn-outline-secondary form-control"
type="button"
ng-click="seleccionarUnidadMedida()"
foca-focus="focused == 3"
>
<i class="fa fa-search" aria-hidden="true"></i>
</button>
</div>
</div>
</div>
</form>