<?php
/* @var $this LiquidacionController */
/* @var $data Liquidacion */
?>

<div class="view">

	<b><?php echo CHtml::encode($data->getAttributeLabel('idliquidacion')); ?>:</b>
	<?php echo CHtml::link(CHtml::encode($data->idliquidacion), array('view', 'id'=>$data->idliquidacion)); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('idtrabajador')); ?>:</b>
	<?php echo CHtml::encode($data->idtrabajador); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('aprobado')); ?>:</b>
	<?php echo CHtml::encode($data->aprobado); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('total_haberes')); ?>:</b>
	<?php echo CHtml::encode($data->total_haberes); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('total_deuda')); ?>:</b>
	<?php echo CHtml::encode($data->total_deuda); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('monto_cuotas')); ?>:</b>
	<?php echo CHtml::encode($data->monto_cuotas); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('remanente')); ?>:</b>
	<?php echo CHtml::encode($data->remanente); ?>
	<br />

	<?php /*
	<b><?php echo CHtml::encode($data->getAttributeLabel('fecha_solicitud')); ?>:</b>
	<?php echo CHtml::encode($data->fecha_solicitud); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('fecha_aprobacion')); ?>:</b>
	<?php echo CHtml::encode($data->fecha_aprobacion); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('blnborrado')); ?>:</b>
	<?php echo CHtml::encode($data->blnborrado); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('id_usuario_aprueba')); ?>:</b>
	<?php echo CHtml::encode($data->id_usuario_aprueba); ?>
	<br />

	*/ ?>

</div>