Commit c8ad496f18679d0415de88fe6383100fdfdd9d44
1 parent
61cf6ef413
Exists in
master
DNI input type text
Showing
1 changed file
with
13 additions
and
13 deletions
Show diff stats
src/views/foca-abm-choferes-item.html
1 | <div class="row"> | 1 | <div class="row"> |
2 | <foca-cabecera-facturador | 2 | <foca-cabecera-facturador |
3 | titulo="'Chofer'" | 3 | titulo="'Chofer'" |
4 | fecha="now" | 4 | fecha="now" |
5 | class="mb-0 col-lg-12" | 5 | class="mb-0 col-lg-12" |
6 | ></foca-cabecera-facturador> | 6 | ></foca-cabecera-facturador> |
7 | </div> | 7 | </div> |
8 | <div class="row"> | 8 | <div class="row"> |
9 | <form name="formChofer" class="col-md-12"> | 9 | <form name="formChofer" class="col-md-12"> |
10 | <input type="hidden" name="id" ng-model="chofer.id" /> | 10 | <input type="hidden" name="id" ng-model="chofer.id" /> |
11 | <div class="form-group row"> | 11 | <div class="form-group row"> |
12 | <label class="offset-sm-1 col-sm-2 col-form-label">Transportista</label> | 12 | <label class="offset-sm-1 col-sm-2 col-form-label">Transportista</label> |
13 | <div class="col-sm-4"> | 13 | <div class="col-sm-4"> |
14 | <input | 14 | <input |
15 | class="form-control" | 15 | class="form-control" |
16 | type="text" | 16 | type="text" |
17 | teclado-virtual | 17 | teclado-virtual |
18 | ng-model="chofer.transportista.NOM" | 18 | ng-model="chofer.transportista.NOM" |
19 | readonly | 19 | readonly |
20 | /> | 20 | /> |
21 | </div> | 21 | </div> |
22 | </div> | 22 | </div> |
23 | <div class="form-group row"> | 23 | <div class="form-group row"> |
24 | <label class="offset-sm-1 col-sm-2 col-form-label">Nombre</label> | 24 | <label class="offset-sm-1 col-sm-2 col-form-label">Nombre</label> |
25 | <div class="col-sm-4"> | 25 | <div class="col-sm-4"> |
26 | <input | 26 | <input |
27 | class="form-control" | 27 | class="form-control" |
28 | type="text" | 28 | type="text" |
29 | teclado-virtual | 29 | teclado-virtual |
30 | ng-model="chofer.nombre" | 30 | ng-model="chofer.nombre" |
31 | ng-required="true" | 31 | ng-required="true" |
32 | ng-keypress="next($event.keyCode)" | 32 | ng-keypress="next($event.keyCode)" |
33 | foca-focus="focused == 1" | 33 | foca-focus="focused == 1" |
34 | ng-focus="focused = 1" | 34 | ng-focus="focused = 1" |
35 | /> | 35 | /> |
36 | </div> | 36 | </div> |
37 | </div> | 37 | </div> |
38 | <div class="form-group row"> | 38 | <div class="form-group row"> |
39 | <label class="offset-sm-1 col-sm-2 col-form-label">DNI</label> | 39 | <label class="offset-sm-1 col-sm-2 col-form-label">DNI</label> |
40 | <div class="col-sm-4"> | 40 | <div class="col-sm-4"> |
41 | <input | 41 | <input |
42 | class="form-control" | 42 | class="form-control" |
43 | type="number" | 43 | type="text" |
44 | teclado-virtual | 44 | teclado-virtual |
45 | ng-model="chofer.dni" | 45 | ng-model="chofer.dni" |
46 | ng-required="true" | 46 | ng-required="true" |
47 | ng-keypress="next($event.keyCode)" | 47 | ng-keypress="next($event.keyCode)" |
48 | foca-focus="focused == 2" | 48 | foca-focus="focused == 2" |
49 | ng-focus="focused = 2" | 49 | ng-focus="focused = 2" |
50 | /> | 50 | /> |
51 | </div> | ||
52 | </div> | 51 | </div> |
52 | </div> | ||
53 | <div class="form-group row"> | 53 | <div class="form-group row"> |
54 | <label class="offset-sm-1 col-sm-2 col-form-label">Teléfono</label> | 54 | <label class="offset-sm-1 col-sm-2 col-form-label">Teléfono</label> |
55 | <div class="col-sm-4"> | 55 | <div class="col-sm-4"> |
56 | <input | 56 | <input |
57 | class="form-control" | 57 | class="form-control" |
58 | type="text" | 58 | type="text" |
59 | teclado-virtual | 59 | teclado-virtual |
60 | ng-model="chofer.telefono" | 60 | ng-model="chofer.telefono" |
61 | ng-required="true" | 61 | ng-required="true" |
62 | ng-keypress="next($event.keyCode)" | 62 | ng-keypress="next($event.keyCode)" |
63 | foca-focus="focused == 3" | 63 | foca-focus="focused == 3" |
64 | ng-focus="focused = 3" | 64 | ng-focus="focused = 3" |
65 | /> | 65 | /> |
66 | </div> | 66 | </div> |
67 | </div> | 67 | </div> |
68 | </form> | 68 | </form> |
69 | </div> | 69 | </div> |