Commit c98885c822b5b2330de9c7cdaf57ff34b8c5c94c
1 parent
5361147c7a
Exists in
develop
comento funcionalidad de mail mientras no este funcionando para instalar en servidores
Showing
1 changed file
with
2 additions
and
2 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 > | 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="enviarComprobante($event.keyCode)" | 17 | ng-keypress="enviarComprobante($event.keyCode)" |
| 18 | teclado-virtual/> | 18 | teclado-virtual/> |
| 19 | <button | 19 | <button |
| 20 | type="button" | 20 | type="button" |
| 21 | class="btn btn-enviar ml-auto" | 21 | class="btn btn-enviar ml-auto" |
| 22 | ng-click="enviarComprobante(13)" | 22 | ng-click="enviarComprobante(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</label> | 29 | <label>Descargar comprobante</label> |
| 30 | <div class="col my-1 d-flex justify-content-end"> | 30 | <div class="col my-1 d-flex justify-content-end"> |
| 31 | <button | 31 | <button |
| 32 | class="btn btn-enviar float-right" | 32 | class="btn btn-enviar float-right" |
| 33 | ng-click="validarImpresion()" | 33 | ng-click="validarImpresion()" |
| 34 | ladda="esperando" | 34 | ladda="esperando" |
| 35 | >Descargar</button> | 35 | >Descargar</button> |
| 36 | </div> | 36 | </div> |
| 37 | </div> | 37 | </div> |
| 38 | </div> | 38 | </div> |
| 39 | <div class="modal-footer"> | 39 | <div class="modal-footer"> |
| 40 | <div class="custom-control custom-checkbox my-auto mr-5"> | 40 | <div class="custom-control custom-checkbox my-auto mr-5"> |
| 41 | <input | 41 | <input |
| 42 | type="checkbox" | 42 | type="checkbox" |
| 43 | class="custom-control-input mr-5" | 43 | class="custom-control-input mr-5" |
| 44 | id="check" | 44 | id="check" |
| 45 | ng-click="checkboxVar = !checkboxVar"> | 45 | ng-click="checkboxVar = !checkboxVar"> |
| 46 | <label class="custom-control-label disable-selection" for="check"> | 46 | <label class="custom-control-label disable-selection" for="check"> |
| 47 | Combrobante sin valorizar | 47 | Combrobante sin valorizar |
| 48 | </label> | 48 | </label> |
| 49 | </div> | 49 | </div> |
| 50 | <button | 50 | <button |
| 51 | type="button" | 51 | type="button" |
| 52 | class="btn btn-secondary" | 52 | class="btn btn-secondary" |
| 53 | ng-click="salir()" | 53 | ng-click="salir()" |
| 54 | ladda="esperando" | 54 | ladda="esperando" |
| 55 | >Salir</button> | 55 | >Salir</button> |
| 56 | <button | 56 | <button |
| 57 | type="button" | 57 | type="button" |
| 58 | class="btn btn-primary" | 58 | class="btn btn-primary" |
| 59 | ng-click="aceptar()" | 59 | ng-click="aceptar()" |
| 60 | ladda="esperando" | 60 | ladda="esperando" |
| 61 | ng-disabled="!descargado" | 61 | ng-disabled="!descargado" |
| 62 | >Aceptar</button> | 62 | >Aceptar</button> |
| 63 | </div> | 63 | </div> |
| 64 | 64 |