_form_backup.php 8.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
<div class="form">


<?php $form = $this->beginWidget('GxActiveForm', array(
	'id' => 'mzgtbancoautores-form',
	'enableAjaxValidation' => false,
));
?>

	<p class="note">
		<?php echo Yii::t('app', 'Campos con'); ?> <span class="required">*</span> <?php echo Yii::t('app', 'son requeridos'); ?>.
	</p>

	<?php echo $form->errorSummary($model); ?>

                <div class="row">
		<?php echo $form->labelEx($model,'FK1_MZGTBANCOAUTORES_INV_MZGTINSTITUCIONES_PK'); ?>
		<?php echo $form->dropDownList($model, 'FK1_MZGTBANCOAUTORES_INV_MZGTINSTITUCIONES_PK', GxHtml::listDataEx(Mzgtinstituciones::model()->findAllAttributes(null, true))); ?>
		<?php echo $form->error($model,'FK1_MZGTBANCOAUTORES_INV_MZGTINSTITUCIONES_PK'); ?>
		</div><!-- row -->
                <div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_TIPODOCUMENTO'); ?>
		<?php echo $form->dropDownList($model, 'MZGTBANCOAUTORES_TIPODOCUMENTO', array('CEDULA' => 'Cédula', 'PASAPORTE'=>'Pasaporte')); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_TIPODOCUMENTO'); ?>
		</div><!-- row -->
		<div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_CEDULA'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_CEDULA', array('maxlength' => 255)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_CEDULA'); ?>
		</div><!-- row -->
		<div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_TRATO'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_TRATO', array('maxlength' => 5, 'size'=>5)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_TRATO'); ?>
		</div><!-- row -->
		<div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_APELLIDO_PATERNO'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_APELLIDO_PATERNO', array('maxlength' => 255, 'size'=>100)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_APELLIDO_PATERNO'); ?>
		</div><!-- row -->
		<div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_APELLIDO_MATERNO'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_APELLIDO_MATERNO', array('maxlength' => 255, 'size'=>100)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_APELLIDO_MATERNO'); ?>
		</div><!-- row -->
		<div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_PRIMER_NOMBRE'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_PRIMER_NOMBRE', array('maxlength' => 255, 'size'=>100)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_PRIMER_NOMBRE'); ?>
		</div><!-- row -->
		<div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_SEGUNDO_NOMBRE'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_SEGUNDO_NOMBRE', array('maxlength' => 255, 'size'=>100)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_SEGUNDO_NOMBRE'); ?>
		</div><!-- row -->
                <fieldset>
                    <legend>Pertenece:</legend>
                        <div class="row">
                        <?php echo '<label for="Mzgtbancoautores_PK_MZGTCAMPUS">Campus</label>'; ?>
                        <?php echo $form->dropDownList($model, 'PK_MZGTCAMPUS', 
                                GxHtml::listDataEx(Mzgtcampus::model()->findAllAttributes(null, true, 'MZGTCAMPUS_ESTADO = 1')),
                                array('ajax'=>array('type'=>'POST',
                                    'url'=>CController::createUrl('Mzgtdepartamentos/cargarDepartamentos'),
                                    'update'=>'#'.CHtml::activeId($model,'PK_MZGTDEPARTAMENTOS'),
                                    'beforeSend'=>'function(){
                                        $("#'.CHtml::activeId($model,'mzgtcarrerases').'").find("options").remove();
                                        }',
                                    'data'=>array('PK_MZGTCAMPUS'=>'js:this.value')),
                                    'prompt'=>'Seleccione..'
                                )); ?>
                        </div>
                        <div class="row">
                        <?php echo '<label for="Mzgtbancoautores_PK_MZGTDEPARTAMENTOS">Departamentos</label>'; ?>
                        <?php echo $form->dropDownList($model, 'PK_MZGTDEPARTAMENTOS',
                                GxHtml::listDataEx(Mzgtdepartamentos::model()->findAllAttributes(null, true
                                        ,array('with'=>'mzgtcampuses'
                                            ,'condition'=>'MZGTDEPARTAMENTOS_ESTADO = 1'
                                            ,'condition'=>'mzgtcampuses.PK_MZGTCAMPUS = '.$model->PK_MZGTCAMPUS
                                            )
                                        )),
                                array('ajax'=>array('type'=>'POST', 
                                    'url'=>CController::createUrl('Mzgtcarreras/cargarCarreras'),
                                    'update'=>'#'.CHtml::activeId($model,'mzgtcarrerases'),
                                    'data'=>array('PK_MZGTDEPARTAMENTOS'=>'js:this.value')),
                                    'prompt'=>'Seleccione..'
                                    ), array('empty'=>'Seleccione un campus')); ?>
                        </div>
                        <label><?php echo GxHtml::encode($model->getRelationLabel('mzgtcarrerases')); ?></label>
                        <?php echo $form->dropDownList($model, 'mzgtcarrerases', GxHtml::encodeEx(GxHtml::listDataEx(Mzgtcarreras::model()->findAllAttributes(null, true,
                                array('with'=>'mzgtdepartamentoses'
                                    ,'condition'=>'MZGTCARRERAS_ESTADO = 1'
                                    ,'condition'=>'mzgtdepartamentoses.PK_MZGTDEPARTAMENTOS = '.$model->PK_MZGTDEPARTAMENTOS
                                    )
                                )), false, true)
                                ,array('empty'=>'Seleccione un departamento', 'multiple'=>'true')
                                ); ?>
                        <div class="row">
                        <?php
                            if(!empty($model->mzgtcarrerases)){
                                echo '<label>Carreras ya registradas</label>';
                                echo GxHtml::openTag('ul');
                                foreach($model->mzgtcarrerases as $relatedModel) {
                                        echo GxHtml::openTag('li');
                                        echo GxHtml::link(GxHtml::encode(GxHtml::valueEx($relatedModel)), array('mzgtcarreras/view', 'id' => GxActiveRecord::extractPkValue($relatedModel, true)));
                                        echo GxHtml::closeTag('li');
                                }
                                echo GxHtml::closeTag('ul');
                            }
                        ?>
                        </div>
                </fieldset>
		<div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_PAIS'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_PAIS', array('maxlength' => 255)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_PAIS'); ?>
		</div><!-- row -->
		<div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_DEPARTAMENTO_CENTRO'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_DEPARTAMENTO_CENTRO', array('maxlength' => 300)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_DEPARTAMENTO_CENTRO'); ?>
		</div><!-- row -->

		<label><?php //echo GxHtml::encode($model->getRelationLabel('mzgtpublicaciones')); ?></label>
		<?php //echo $form->listBox($model, 'mzgtpublicaciones', GxHtml::encodeEx(GxHtml::listDataEx(Mzgtpublicaciones::model()->findAllAttributes(null, true)), false, true)); ?>
		<label><?php //echo GxHtml::encode($model->getRelationLabel('mzgtlibroses')); ?></label>
		<?php //echo $form->listBox($model, 'mzgtlibroses', GxHtml::encodeEx(GxHtml::listDataEx(Mzgtlibros::model()->findAllAttributes(null, true)), false, true)); ?>
                
                <div class="row">
		<?php echo $form->labelEx($model,'MZGTBANCOAUTORES_CODIGO'); ?>
		<?php echo $form->textField($model, 'MZGTBANCOAUTORES_CODIGO', array('maxlength' => 255)); ?>
		<?php echo $form->error($model,'MZGTBANCOAUTORES_CODIGO'); ?>
		</div><!-- row -->

<?php
echo GxHtml::submitButton(Yii::t('app', 'Guardar'));
$this->endWidget();
?>
</div><!-- form -->