Пример #1
0
 public function actionAdmin()
 {
     $model = new ModelosVehiculos('search');
     $model->unsetAttributes();
     if (isset($_GET['ModelosVehiculos'])) {
         $model->setAttributes($_GET['ModelosVehiculos']);
     }
     $this->render('admin', array('model' => $model));
 }
Пример #2
0
 public function actionACModelo()
 {
     if (isset($_GET['term'])) {
         $searchTerm = $_GET['term'];
         $result = array();
         $vehiculos = ModelosVehiculos::model()->findAll('nombre LIKE :nombre', array(':nombre' => '%' . $searchTerm . '%'));
         foreach ($vehiculos as $vehiculo) {
             $result[] = array('label' => $vehiculo->nombre, 'value' => $vehiculo->nombre, 'id' => $vehiculo->id);
         }
         echo CJSON::encode($result);
     }
 }
Пример #3
0
<?php

$this->breadcrumbs = array($model->label(2) => array('index'), Yii::t('app', 'Administrar'));
$this->menu = array(array('label' => Yii::t('app', 'Listar') . ' ' . $model->label(2), 'url' => array('index')), array('label' => Yii::t('app', 'Agregar') . ' ' . $model->label(), 'url' => array('create')));
Yii::app()->clientScript->registerScript('search', "\n\$('.search-button').click(function(){\n\t\$('.search-form').toggle();\n\treturn false;\n});\n\$('.search-form form').submit(function(){\n\t\$.fn.yiiGridView.update('vehiculos-grid', {\n\t\tdata: \$(this).serialize()\n\t});\n\treturn false;\n});\n");
?>

<h1><?php 
echo Yii::t('app', 'Administrar') . ' ' . GxHtml::encode($model->label(2));
?>
</h1>

<?php 
echo GxHtml::link(Yii::t('app', 'Busqueda Avanzada'), '#', array('class' => 'search-button'));
?>
<div class="search-form" style="display:none">
<?php 
$this->renderPartial('_search', array('model' => $model));
?>
</div><!-- search-form -->

<?php 
$this->widget('zii.widgets.grid.CGridView', array('id' => 'vehiculos-grid', 'dataProvider' => $model->search(), 'filter' => $model, 'summaryText' => 'Mostrando del {start} al {end} de {count} resultado(s).', 'pager' => array('header' => '', 'prevPageLabel' => 'Anterior', 'nextPageLabel' => 'Siguiente'), 'columns' => array(array('name' => 'patente', 'value' => '$data->patente', 'htmlOptions' => array('width' => '60')), array('name' => 'idMarca', 'value' => 'GxHtml::valueEx($data->idMarca0)', 'filter' => GxHtml::listDataEx(MarcasVehiculos::model()->findAllAttributes(null, true))), array('name' => 'idModelo', 'value' => 'GxHtml::valueEx($data->idModelo0)', 'filter' => GxHtml::listDataEx(ModelosVehiculos::model()->findAllAttributes(null, true))), array('name' => 'idTipoVehiculo', 'value' => 'GxHtml::valueEx($data->idTipoVehiculo0)', 'filter' => GxHtml::listDataEx(TiposVehiculos::model()->findAllAttributes(null, true))), array('name' => 'idColor', 'value' => 'GxHtml::valueEx($data->idColor0)', 'filter' => GxHtml::listDataEx(ColoresVehiculos::model()->findAllAttributes(null, true)), 'htmlOptions' => array('width' => '80')), array('name' => 'ano', 'value' => '$data->ano', 'htmlOptions' => array('width' => '50')), array('name' => 'estado', 'value' => '$data->estado == 1 ? "EN USO" : ($data->estado == 0 ? "EN VENTA" : "VENDIDO")', 'filter' => array(1 => 'EN USO', 0 => 'EN VENTA', 2 => 'VENDIDO')), array('class' => 'CButtonColumn', 'header' => 'Opciones', 'htmlOptions' => array('width' => 100), 'template' => '{view}{update}{delete}', 'buttons' => array('view' => array('label' => 'Ver', 'url' => 'Yii::app()->createUrl("vehiculos/view", array("id"=>$data->id))', 'imageUrl' => Yii::app()->baseUrl . '/images/ver.png'), 'update' => array('label' => 'Editar', 'url' => 'Yii::app()->createUrl("vehiculos/update", array("id"=>$data->id))', 'imageUrl' => Yii::app()->baseUrl . '/images/editar.png'), 'delete' => array('label' => 'Borrar', 'url' => 'Yii::app()->createUrl("vehiculos/delete", array("id"=>$data->id))', 'imageUrl' => Yii::app()->baseUrl . '/images/delete.png'))))));
Пример #4
0
	<div class="row">
		<?php 
echo $form->label($model, 'idMarca');
?>
		<?php 
echo $form->dropDownList($model, 'idMarca', GxHtml::listDataEx(MarcasVehiculos::model()->findAllAttributes(null, true)), array('prompt' => Yii::t('app', 'All')));
?>
	</div>

	<div class="row">
		<?php 
echo $form->label($model, 'idModelo');
?>
		<?php 
echo $form->dropDownList($model, 'idModelo', GxHtml::listDataEx(ModelosVehiculos::model()->findAllAttributes(null, true)), array('prompt' => Yii::t('app', 'All')));
?>
	</div>

	<div class="row">
		<?php 
echo $form->label($model, 'idColor');
?>
		<?php 
echo $form->dropDownList($model, 'idColor', GxHtml::listDataEx(ColoresVehiculos::model()->findAllAttributes(null, true)), array('prompt' => Yii::t('app', 'All')));
?>
	</div>

	<div class="row">
		<?php 
echo $form->label($model, 'Año');
Пример #5
0
<?php

$this->breadcrumbs = array(ModelosVehiculos::label(2), Yii::t('app', 'Index'));
$this->menu = array(array('label' => Yii::t('app', 'Agregar') . ' ' . ModelosVehiculos::label(), 'url' => array('create')), array('label' => Yii::t('app', 'Administrar') . ' ' . ModelosVehiculos::label(2), 'url' => array('admin')));
?>

<h1><?php 
echo GxHtml::encode(ModelosVehiculos::label(2));
?>
</h1>

<?php 
$this->widget('zii.widgets.CListView', array('dataProvider' => $dataProvider, 'emptyText' => 'No hay resultados', 'summaryText' => 'Mostrando del {start} al {end} de {count} resultado(s).', 'pager' => array('header' => '', 'prevPageLabel' => 'Anterior', 'nextPageLabel' => 'Siguiente'), 'itemView' => '_view'));