
        <h3 style="text-align: center;">Retenci&oacute;n excluida </h3>

 <?php $form=$this->beginWidget('bootstrap.widgets.TbActiveForm',array(
    'id'=>'datos-txt-tabla-amortizacion-form',
    'enableAjaxValidation'=>false,
)); ?>
    <fieldset><legend style=" font-size: 17px;"><b>Datos del asociado</b></legend>

                    <table class="table table-condensed table-bordered">
                        <tr>
                            <th>C&eacute;dula de identidad</th>
                            <th>Nombre</th>
                            <th>Apellido</th>
                            <th>Unidad</th>
                            <th>Fecha de Ingreso</th>
                            <th>Estatus</th>
                        </tr>
                        <tr>
                            <td  id="cedula_excl" class="datos"></td>
                            <td id="nombre_excl" class="datos"></td>
                            <td id="apellido_excl" class="datos"></td>
                            <td id="unidad_excl" class="datos"></td>
                            <td id="fechaingreso_excl" class="datos"></td>
                            <td id="estatus_excl" class="datos"></td>
                        </tr>
                    </table>
    </fieldset>

    <fieldset>
        <legend>Datos de la cuota </legend>
            <table class="table table-condensed table-bordered">
            <tr>
                <td><b>Categor&iacute;a</b></td>
                <td id="categoria_excl" class="datos"></td>
                <td><b>Plazo del préstamo</b></td>
                <td id="plazo_excl" class="datos"></td>
            </tr>


        </table>
            </table>
        </fieldset>
            <a role="button" class="btn btn-success btn-lg" data-toggle="modal" onclick="botonModalCuotasExcluidas();">Consultar pr&eacute;stamos del asociado</a>
        <br>
        <div id="mensajeCuotasExcluidas"></div>
        <div class="col-md-12">
            <?= $form->dropDownListRow($modelCuotasExcluidas,'id_estatus_cuota_excluida',
                  CHtml::listData(EstatusCuotaTablaAmortizacionDiferido::model()->findAll('id in (5, 6, 7, 8, 12) AND blnborrado=FALSE'), 'id', 'nombre_estatus') ,array('class'=>'span6','prompt' => '... Seleccione ...')); ?>

        </div>
        <div class="col-md-12">
            <?= $form->textAreaRow($modelCuotasExcluidas,'observaciones', array('style'=>'width: 100%;')); ?>
        </div>
        <div align="center">
            <?php $this->widget('bootstrap.widgets.TbButton', array(
                        'buttonType'=>'button',
                        'type'=>'primary',
                        'label'=>'Definir cuota',
                        'icon'=>'edit',
                        'htmlOptions'=> array('onclick' => 'definirCuotasExcluida()'),
                    )); ?>
            <?php $this->widget('bootstrap.widgets.TbButton', array(
                        'buttonType'=>'button',
                        'type'=>'danger',
    //                  'label'=>'Agregar Observación',
                        'label' => 'Cerrar',
    //                  'context' => 'info',
                        'icon'=>'remove',
                        'htmlOptions'=> array('onclick' => 'cerrarCuotaExcluida()'),
                    )); ?>
        </div>

        <?php $this->endWidget(); ?>
