<h4 class="text-center" >Mini-plan de Compras Pre-definido</h4>
<table id="tablaOperaciones-adquisiciones{{ hash_vista }}" class="table table-striped table-bordered tablaOperaciones tablaOperaciones-adquisiciones{{hash_vista}}" cellspacing="0" width="100%">
<thead>
<tr>
<th><input type="checkbox" id="checkTodosOperacionesActividadPredefinida-adquisiciones{{hash_vista}}"
value="{{ operacionP.operacionPredefinidaID }}" class="check " /></th>
<!--<th>Código</th>-->
<th>Título</th>
<th>Clase de Operación</th>
<!--<th>Centro de Costos</th>-->
<!--<th>Rubro</th>-->
</tr>
</thead>
<tbody>
{% for operacionP in operacionesPredefinidas %}
{% if operacionP.tipoOperacionCODIGO == 'ADQUISICION' %}
<tr id="{{ operacionP.operacionPredefinidaID }}">
<td>
<input type="checkbox" id="checkb{{ operacionP.operacionPredefinidaID }}"
name="checkb[]" value="{{ operacionP.operacionPredefinidaID }}" class="check checkOperacionesActividadPreconfigurada checkOper" />
<input type="hidden" name="actividadOperacionPredefinidaID[]" value="{{ operacionP.operacionPredefinidaID }}" />
</td>
<!--<td>{{ operacionP.operacionPredefinidaCODIGO }}</td>-->
<td>{{ operacionP.operacionPredefinidaTITULO }}</td>
<td>{{ operacionP.claseOperacionTITULO }}</td>
<!--<td>{{ operacionP.centroCostosTITULO }}</td>-->
<!--<td>{{ operacionP.rubroTITULO }}</td>-->
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<script type="text/javascript">
$(document).ready(function () {
crearTablaVertical('tablaOperaciones-adquisiciones{{hash_vista}}', '410');
});
$(document).ready( function(){
checkBoxSICAM('#checkTodosOperacionesActividadPredefinida-adquisiciones{{hash_vista}}');
checkBoxSICAM('.checkOperacionesActividadPreconfigurada');
activarSeleccionarTodos("checkTodosOperacionesActividadPredefinida-adquisiciones{{hash_vista}}", "tablaOperaciones-adquisiciones{{hash_vista}} .checkOperacionesActividadPreconfigurada");
});
</script>