Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php $departamento = ""; foreach($salidas AS $rowS): ?>
  2.  
  3. <?php if ($departamento != $rowS['nombreDepartamento']): $departamento = $rowS['nombreDepartamento'];?>
  4.  
  5. <h4>DEPARTAMENTO: <?=$departamento?></h4>
  6.  
  7. <table style="width: 100%;" border="1" cellpadding="3">
  8. <thead>
  9. <tr>
  10. <th>Fecha</th>
  11. <th>Departamento</th>
  12. <th>Doc</th>
  13. <th>Numero</th>
  14. <th>Orden</th>
  15. <th>Subtotal</th>
  16. <th>Descuento</th>
  17. <th>Itbis</th>
  18. <th>Total</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22.  
  23. <?php endif; ?>
  24.  
  25. <tr>
  26. <td><?=$rowS['fecha']?></td>
  27. <td><?=$rowS['nombreDepartamento']?></td>
  28. <td><?=$rowS['documento']?></td>
  29. <td><?=$rowS['numero']?></td>
  30. <td><?=$rowS['orden']?></td>
  31. <td><?=$rowS['bruto']?></td>
  32. <td><?=$rowS['tdesc']?></td>
  33. <td><?=$rowS['itbis']?></td>
  34. <td><?=$rowS['neto']?></td>
  35. </tr>
  36.  
  37. <?php if ($departamento != $rowS['nombreDepartamento']): ?>
  38.  
  39. </tbody>
  40. </table>
  41. <hr>
  42. <?php endif; ?>
  43.  
  44. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement