foca-abm-choferes-item.html
2.36 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
<div class="row">
<foca-cabecera-facturador
titulo="'Chofer'"
fecha="now"
class="mb-0 col-lg-12"
></foca-cabecera-facturador>
</div>
<div class="row">
<form name="formChofer" class="col-md-12">
<input type="hidden" name="id" ng-model="chofer.id" />
<div class="form-group row">
<label class="offset-sm-1 col-sm-2 col-form-label">Transportista</label>
<div class="col-sm-4">
<input
class="form-control"
type="text"
teclado-virtual
ng-model="chofer.transportista.NOM"
readonly
/>
</div>
</div>
<div class="form-group row">
<label class="offset-sm-1 col-sm-2 col-form-label">Nombre</label>
<div class="col-sm-4">
<input
class="form-control"
type="text"
teclado-virtual
ng-model="chofer.nombre"
ng-required="true"
ng-keypress="next($event.keyCode)"
foca-focus="focused == 1"
ng-focus="focused = 1"
/>
</div>
</div>
<div class="form-group row">
<label class="offset-sm-1 col-sm-2 col-form-label">DNI</label>
<div class="col-sm-4">
<input
class="form-control"
type="text"
teclado-virtual
ng-model="chofer.dni"
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">Teléfono</label>
<div class="col-sm-4">
<input
class="form-control"
type="text"
teclado-virtual
ng-model="chofer.telefono"
ng-required="true"
ng-keypress="next($event.keyCode)"
foca-focus="focused == 3"
ng-focus="focused = 3"
/>
</div>
</div>
</form>
</div>