Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. function downloadPDF () {
  2. $log.debug('btn descargar PDF');
  3.  
  4. var url = Constants.BaseURLBack + '/mir/reportes/matriz?idMir=' + idMir;
  5. RestService.getFile(url,'application/pdf')
  6. .then(function(response) {
  7. var blob = new Blob([response.data], { type: "application/pdf" });
  8. saveAs(blob, "matriz.pdf");
  9. })
  10. .catch(function(err){
  11. message("error","Excel sin datos","Por favor seleccione un proyecto con datos");
  12. console.log("Error al descargar el excel", err);
  13. });
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement