Commit a22a8c90dd94e5d3b19b55fc4bf7d51e62df8a88
1 parent
c98885c822
Exists in
develop
comento funcionalidad de mail mientras no este funcionando para instalar en servidores
Showing
1 changed file
with
0 additions
and
23 deletions
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 > | ||
| 6 | <label | ||
| 7 | class="col-12 bg-success text-white" | ||
| 8 | ng-show="correoEnviado">Correo enviado con éxito</label> | ||
| 9 | <label | ||
| 10 | class="col-12 bg-danger text-white" | ||
| 11 | ng-show="correoNoEnviado">Hubo un error al enviar el correo</label> | ||
| 12 | <label>Enviar correo a</label> | ||
| 13 | <div class="d-flex"> | ||
| 14 | <input | ||
| 15 | class="form-control col-9" | ||
| 16 | ng-model="mailCliente" | ||
| 17 | ng-keypress="enviarComprobante($event.keyCode)" | ||
| 18 | teclado-virtual/> | ||
| 19 | <button | ||
| 20 | type="button" | ||
| 21 | class="btn btn-enviar ml-auto" | ||
| 22 | ng-click="enviarComprobante(13)" | ||
| 23 | ladda="esperando" | ||
| 24 | >Enviar</button> | ||
| 25 | </div> | ||
| 26 | </div> | ||
| 27 | <hr> --> | ||
| 28 | <div> | 5 | <div> |
| 29 | <label>Descargar comprobante</label> | 6 | <label>Descargar comprobante</label> |
| 30 | <div class="col my-1 d-flex justify-content-end"> | 7 | <div class="col my-1 d-flex justify-content-end"> |
| 31 | <button | 8 | <button |
| 32 | class="btn btn-enviar float-right" | 9 | class="btn btn-enviar float-right" |
| 33 | ng-click="validarImpresion()" | 10 | ng-click="validarImpresion()" |
| 34 | ladda="esperando" | 11 | ladda="esperando" |
| 35 | >Descargar</button> | 12 | >Descargar</button> |
| 36 | </div> | 13 | </div> |
| 37 | </div> | 14 | </div> |
| 38 | </div> | 15 | </div> |
| 39 | <div class="modal-footer"> | 16 | <div class="modal-footer"> |
| 40 | <div class="custom-control custom-checkbox my-auto mr-5"> | 17 | <div class="custom-control custom-checkbox my-auto mr-5"> |
| 41 | <input | 18 | <input |
| 42 | type="checkbox" | 19 | type="checkbox" |
| 43 | class="custom-control-input mr-5" | 20 | class="custom-control-input mr-5" |
| 44 | id="check" | 21 | id="check" |
| 45 | ng-click="checkboxVar = !checkboxVar"> | 22 | ng-click="checkboxVar = !checkboxVar"> |
| 46 | <label class="custom-control-label disable-selection" for="check"> | 23 | <label class="custom-control-label disable-selection" for="check"> |
| 47 | Combrobante sin valorizar | 24 | Combrobante sin valorizar |
| 48 | </label> | 25 | </label> |
| 49 | </div> | 26 | </div> |
| 50 | <button | 27 | <button |
| 51 | type="button" | 28 | type="button" |
| 52 | class="btn btn-secondary" | 29 | class="btn btn-secondary" |
| 53 | ng-click="salir()" | 30 | ng-click="salir()" |
| 54 | ladda="esperando" | 31 | ladda="esperando" |
| 55 | >Salir</button> | 32 | >Salir</button> |
| 56 | <button | 33 | <button |
| 57 | type="button" | 34 | type="button" |
| 58 | class="btn btn-primary" | 35 | class="btn btn-primary" |
| 59 | ng-click="aceptar()" | 36 | ng-click="aceptar()" |
| 60 | ladda="esperando" | 37 | ladda="esperando" |
| 61 | ng-disabled="!descargado" | 38 | ng-disabled="!descargado" |
| 62 | >Aceptar</button> | 39 | >Aceptar</button> |
| 63 | </div> | 40 | </div> |
| 64 | 41 |