<link rel="stylesheet" type="text/css" href="<?= Yii::app()->request->baseUrl; ?>/css/pdf.css" />
<?php //echo "<pre>";print_r($datos_aportes_nd);exit; ?>
<table class="tabla-datos" bordercolor="#000" border="1" width="100%">
  <thead>
    <tr>
      <th colspan="8" class="titulo"><span><b>Aportantes no definidos</b></span></th>
    </tr>
  </thead>
  <tbody>
    <tr>
        <th width="15%" style="border-left: 0 solid #000;">C&eacute;dula</th>
        <th width="25%">Unidad</th>
        <th width="20%">Sueldo</th>
        <th width="15%">Aporte asociado</th>
        <th width="15%">Aporte patrono</th>
        <th width="15%">Total aporte</th>
        <th width="15%">Aporte pendiente</th>
        <th width="15%">Estatus</th>
    </tr>

    <?php foreach ($datos_aportes_nd as $key => $value): ?>        
    <tr>
      <td><span><?= $value['cedula']; ?></span></td>
      <td><span><?= $value['descripcion']; ?></span></td>
      <td align="right"><span>Bs. <?= Yii::app()->format->number($value['sueldo']) ?></span></td>
      <td align="right"><span>Bs. <?= Yii::app()->format->number($value['aporte_asociado']) ?></span></td>
      <td align="right"><span>Bs. <?= Yii::app()->format->number($value['aporte_patrono']) ?></span></td>
      <td align="right"><span>Bs. <?= Yii::app()->format->number($value['total_aporte']) ?></span></td>
      <td align="right"><span>Bs. <?= Yii::app()->format->number($value['aporte_pendiente']) ?></span></td>
      <td align="center"><span><?= $value['nombre_estatus']; ?></span></td>
    </tr>
    <?php endforeach ?>

  </tbody>
</table>
