Commit a51853bc8edd1d37be285bb4e315d3b602a822ca
Exists in
master
Merge branch 'master' into 'develop'
Master See merge request !28
Showing
1 changed file
Show diff stats
src/views/modal-mail.html
1 | <div class="modal-header"> | 1 | <div class="modal-header"> |
2 | <h5 ng-bind="titulo"></h5> | 2 | <h5 ng-bind="titulo"></h5> |
3 | </div> | 3 | </div> |
4 | <div class="modal-body"> | 4 | <div class="modal-body"> |
5 | <div > | 5 | <div > |
6 | <label | 6 | <label |
7 | class="col-12 bg-success text-white" | 7 | class="col-12 bg-success text-white" |
8 | ng-show="correoEnviado">Correo enviado con éxito</label> | 8 | ng-show="correoEnviado">Correo enviado con éxito</label> |
9 | <label | 9 | <label |
10 | class="col-12 bg-danger text-white" | 10 | class="col-12 bg-danger text-white" |
11 | ng-show="correoNoEnviado">Hubo un error al enviar el correo</label> | 11 | ng-show="correoNoEnviado">Hubo un error al enviar el correo</label> |
12 | <label>Enviar correo a</label> | 12 | <label>Enviar correo a</label> |
13 | <div class="d-flex"> | 13 | <div class="d-flex"> |
14 | <input | 14 | <input |
15 | class="form-control col-9" | 15 | class="form-control col-9" |
16 | ng-model="mailCliente" | 16 | ng-model="mailCliente" |
17 | ng-keypress="enviarCorreo($event.keyCode)" | 17 | ng-keypress="enviarCorreo($event.keyCode)" |
18 | teclado-virtual/> | 18 | teclado-virtual/> |
19 | <button | 19 | <button |
20 | type="button" | 20 | type="button" |
21 | class="btn btn-primary ml-auto" | 21 | class="btn btn-enviar ml-auto" |
22 | ng-click="enviarCorreo(13)" | 22 | ng-click="enviarCorreo(13)" |
23 | ladda="esperando" | 23 | ladda="esperando" |
24 | >Enviar</button> | 24 | >Enviar</button> |
25 | </div> | 25 | </div> |
26 | </div> | 26 | </div> |
27 | <hr> | 27 | <hr> |
28 | <div> | 28 | <div> |
29 | <label>Descargar comprobante en este dispositivo</label> | 29 | <label>Descargar comprobante en este dispositivo</label> |
30 | <button | 30 | <button |
31 | class="btn btn-primary float-right" | 31 | class="btn btn-enviar float-right" |
32 | ng-click="imprimir()" | 32 | ng-click="imprimir()" |
33 | ladda="esperando" | 33 | ladda="esperando" |
34 | >Descargar</button> | 34 | >Descargar</button> |
35 | </div> | 35 | </div> |
36 | </div> | 36 | </div> |
37 | <div class="modal-footer"> | 37 | <div class="modal-footer"> |
38 | <button | 38 | <button |
39 | type="button" | 39 | type="button" |
40 | class="btn btn-secondary" | 40 | class="btn btn-secondary" |
41 | ng-click="salir()" | 41 | ng-click="salir()" |
42 | ladda="esperando" | 42 | ladda="esperando" |
43 | >Salir</button> | 43 | >Salir</button> |
44 | <button | 44 | <button |
45 | type="button" | 45 | type="button" |
46 | class="btn btn-primary" | 46 | class="btn btn-primary" |
47 | ng-click="aceptar()" | 47 | ng-click="aceptar()" |
48 | ladda="esperando" | 48 | ladda="esperando" |
49 | ng-disabled="!descargado" | 49 | ng-disabled="!descargado" |
50 | >Aceptar</button> | 50 | >Aceptar</button> |
51 | </div> | 51 | </div> |
52 | 52 |