Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. $('.facturardetalles').on( 'click', function () {
  2. var pedido_id = document.getElementById("facturaid").value;
  3. var cliente = document.getElementById("nombre").value;
  4.  
  5. $.post( 'backend/ajax/punto_venta_generar_pdf.php', { pedido_id:pedido_id,cliente:cliente })
  6.  
  7. .done(function( data ) {
  8.  
  9. $('#facaca').html('');
  10. $('#facaca').prepend(data);
  11.  
  12.  
  13.  
  14.  
  15. setTimeout(function() {
  16. var fecha = $(".fecha").val();
  17. var total = $(".totals").val();
  18. var doc = new jsPDF();
  19. doc.centertext("LIBRERIA MARLENE - CAXARAVILLE 573 - GONZALEZ CATAN",{align: "center"},1,20);
  20. doc.centertext("FECHA GENERADO: " + fecha,{align: "center"},1,30);
  21. doc.centertext("TOTAL: $" + total,{align: "center"},1,40);
  22. doc.autoTable({
  23. startY: doc.pageCount > 1? doc.autoTableEndPosY() + 20 : 50,
  24. columnStyles: {
  25. 0: {cellWidth: '100'}
  26. },
  27. theme: 'grid',
  28. html: '#facturaciones'
  29. });
  30. var nombre = "Factura - " + cliente + " - " + fecha;
  31. doc.save(nombre + '.pdf');
  32.  
  33. $('#finalizar_form')[0].reset();
  34. $('#finalizar_modal').modal('hide');
  35. window.location.href = "index.php?view=punto_venta";
  36.  
  37. }, 500);
  38.  
  39.  
  40.  
  41. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement