Commit 94281d4302bde18710cbd8e9e09e323514aefeb9
Exists in
master
and in
2 other branches
Merge branch 'master' into 'master'
fix vendedor input no deberia aparecer See merge request modulos-npm/foca-admin-seguimiento!7
Showing
1 changed file
 
Show diff stats
src/views/foca-admin-seguimiento.html
| 1 | <div class="foca-admin-seguimiento"> | 1 | <div class="foca-admin-seguimiento"> | 
| 2 | <div class="row"> | 2 | <div class="row"> | 
| 3 | <div class="offset-1 col-9"> | 3 | <div class="offset-1 col-9"> | 
| 4 | <osm | 4 | <osm | 
| 5 | latitud="-32.89214159952345" | 5 | latitud="-32.89214159952345" | 
| 6 | longitud="-68.84572999101856" | 6 | longitud="-68.84572999101856" | 
| 7 | zoom="14" | 7 | zoom="14" | 
| 8 | marcadores="marcadores" | 8 | marcadores="marcadores" | 
| 9 | /> | 9 | /> | 
| 10 | </div> | 10 | </div> | 
| 11 | <div class="col-2 pl-0"> | 11 | <div class="col-2 pl-0"> | 
| 12 | <input | 12 | <input | 
| 13 | type="date" | 13 | type="date" | 
| 14 | ng-model="now" | 14 | ng-model="now" | 
| 15 | class="btn col-12 my-1" | 15 | class="btn col-12 my-1" | 
| 16 | foca-focus="true" | 16 | foca-focus="true" | 
| 17 | ng-blur="fecha()" | 17 | ng-blur="fecha()" | 
| 18 | hasta-hoy | 18 | hasta-hoy | 
| 19 | /> | 19 | /> | 
| 20 | <button | 20 | <button | 
| 21 | type="button" | 21 | type="button" | 
| 22 | ng-class="{'active': idUsuario == 0}" | 22 | ng-class="{'active': idUsuario == 0}" | 
| 23 | class="btn col-12 my-1" | 23 | class="btn col-12 my-1" | 
| 24 | ng-click="general()" | 24 | ng-click="general()" | 
| 25 | >General</button> | 25 | >General</button> | 
| 26 | <button | 26 | <button | 
| 27 | type="button" | 27 | type="button" | 
| 28 | ng-class="{'active': idUsuario != 0}" | 28 | ng-class="{'active': idUsuario != 0}" | 
| 29 | class="btn col-12 my-1" | 29 | class="btn col-12 my-1" | 
| 30 | ng-click="individual()" | 30 | ng-click="individual()" | 
| 31 | >Individual</button> | 31 | >Individual</button> | 
| 32 | <div class="form-group" ng-show="idUsuario == -1"> | 32 | <div class="form-group" ng-show="idUsuario == -1"> | 
| 33 | <input | 33 | <input | 
| 34 | type="text" | 34 | type="text" | 
| 35 | placeholder="Vendedor" | 35 | placeholder="Vendedor" | 
| 36 | class="form-control" | 36 | class="form-control" | 
| 37 | ng-model="idUsuarioInput" | 37 | ng-model="idUsuarioInput" | 
| 38 | ng-show="actividad" | ||
| 39 | ng-keypress="search($event.keyCode)" | 38 | ng-keypress="search($event.keyCode)" | 
| 40 | foca-focus="idUsuario == -1" | 39 | foca-focus="idUsuario == -1" | 
| 41 | ng-show="actividad == 'Nota de pedido'" | 40 | ng-show="actividad == 'Nota de pedido'" | 
| 42 | > | 41 | > | 
| 43 | <input | 42 | <input | 
| 44 | type="text" | 43 | type="text" | 
| 45 | placeholder="Vehiculo" | 44 | placeholder="Vehiculo" | 
| 46 | class="form-control" | 45 | class="form-control" | 
| 47 | ng-model="idUsuarioInput" | 46 | ng-model="idUsuarioInput" | 
| 48 | ng-keypress="search($event.keyCode)" | 47 | ng-keypress="search($event.keyCode)" | 
| 49 | foca-focus="idUsuario == -1" | 48 | foca-focus="idUsuario == -1" | 
| 50 | ng-show="actividad == 'Entrega de producto'" | 49 | ng-show="actividad == 'Entrega de producto'" | 
| 51 | > | 50 | > | 
| 52 | </div> | 51 | </div> | 
| 53 | <button | 52 | <button | 
| 54 | type="button" | 53 | type="button" | 
| 55 | class="btn col-12 my-1 boton-salir" | 54 | class="btn col-12 my-1 boton-salir" | 
| 56 | ng-click="salir()" | 55 | ng-click="salir()" | 
| 57 | > | 56 | > | 
| 58 | Salir | 57 | Salir | 
| 59 | </button> | 58 | </button> | 
| 60 | </div> | 59 | </div> | 
| 61 | </div> | 60 | </div> | 
| 62 | </div> | 61 | </div> | 
| 63 | 62 |