<?php

class AfianzadoraController extends Controller
{
	/**
	 * @var string the default layout for the views. Defaults to '//layouts/column2', meaning
	 * using two-column layout. See 'protected/views/layouts/column2.php'.
	 */
	public $layout='//layouts/column2';

	/**
	 * @return array action filters
	 */
	public function filters()
	{
			return array(
			'accessControl', // perform access control for CRUD operations
                        'postOnly + delete',
                        array('CrugeAccessControlFilter')
		);
	}

	/**
	 * Specifies the access control rules.
	 * This method is used by the 'accessControl' filter.
	 * @return array access control rules
	 */
	public function accessRules()
	{
		return array(
			array('allow',  // allow all users to perform 'index' and 'view' actions
				'actions'=>array('index','view'),
				'users'=>array('@'),
			),
			array('allow', // allow authenticated user to perform 'create' and 'update' actions
				'actions'=>array('create','update','configurarAsignacion','Periodicidad'),
				'users'=>array('@'),
			),
			array('allow', // allow admin user to perform 'admin' and 'delete' actions
				'actions'=>array('admin','delete'),
				'users'=>array('@'),
			),
			array('deny',  // deny all users
				'users'=>array('*'),
			),
		);
	}

	/**
	 * Displays a particular model.
	 * @param integer $id the ID of the model to be displayed
	 */
	public function actionView($id)
	{
		$this->render('view',array(
			'model'=>$this->loadModel($id),
		));
	}

	/**
	 * Creates a new model.
	 * If creation is successful, the browser will be redirected to the 'view' page.
	 */
	public function actionCreate()
	{
		$model=new Afianzadora('create');

		// Uncomment the following line if AJAX validation is needed
		// $this->performAjaxValidation($model);

		if(isset($_POST['Afianzadora']))
		{
			$model->attributes=$_POST['Afianzadora'];
			if($model->save())
				$this->redirect(array('view','id'=>$model->id));
		}

		$this->render('create',array(
			'model'=>$model,
		));
	}

	/**
	 * Updates a particular model.
	 * If update is successful, the browser will be redirected to the 'view' page.
	 * @param integer $id the ID of the model to be updated
	 */
	public function actionUpdate($id)
	{
		$model=$this->loadModel($id);
                $model->scenario='update';
		// Uncomment the following line if AJAX validation is needed
		// $this->performAjaxValidation($model);

		if(isset($_POST['Afianzadora']))
		{
			$model->attributes=$_POST['Afianzadora'];
			if($model->save())
				$this->redirect(array('view','id'=>$model->id));
		}

		$this->render('update',array(
			'model'=>$model,
		));
	}
	public function actionConfigurarAsignacion()
	{
                $model = new Afianzadora('configuracionMetodo');
		//$modelPeriodicidad[] = new PeriodicidadAfianzadora();
                $modelPeriodicidades = PeriodicidadAfianzadora::model()->findAll();
                if($modelPeriodicidades){
                    
                    $model->periodicidad = $modelPeriodicidades[0]->id_periodicidad;
//                    if($model->periodicidad ==1)
//                        $items = 6;
//                    else
//                        $items = 0;
//
                    for($i = 0; $i <= 6; $i++)
                        $modelPeriodicidad[$i] = new PeriodicidadAfianzadora();

                    foreach($modelPeriodicidades as $keySolicitudes=>$valueSolicitudes) {
                            $modelPeriodicidad[$valueSolicitudes->dia]->dia = 1;
                            $modelPeriodicidad[$valueSolicitudes->dia]->id_afianzadora = $valueSolicitudes->id_afianzadora;
                    }
                    
                    
                }
                else{
                    $modelPeriodicidad[]= new PeriodicidadTipoCredito;
                }
                
		// Uncomment the following line if AJAX validation is needed
		// $this->performAjaxValidation($model);

		if(isset($_POST['Afianzadora']))
		{
                    unset($modelPeriodicidad);$modelPeriodicidad=array();
                    $valido = TRUE;
                    
                    $model->attributes=$_POST['Afianzadora'];
                    $valido = $model->validate()&&$valido;
                 
                    if(isset($_POST['PeriodicidadAfianzadora'])){   
                        if($model->periodicidad==1){
                          $scenario = 'Diarias';
                        } //Semanal
                        else{
                            $scenario = 'paritario';
                        }
                        foreach($_POST['PeriodicidadAfianzadora'] as $iSolicitud=>$dataSolicitud){
                            $item = new PeriodicidadAfianzadora($scenario);
                            $item->attributes=$dataSolicitud;
                            $item->numeroDia = $iSolicitud;

                            $valido =$item->validate()&&$valido;
                            $modelPeriodicidad[] = $item;

                            unset($item);
                        }                  

                    }
                    if($valido){
                       $transaction = Yii::app()->db->beginTransaction();
//                        try {
                            if($model->validate()){ 
                                $guardado = TRUE;
                                if($model->periodicidad!=''){
                                    PeriodicidadAfianzadora::model()->deleteAll();
                                    foreach($modelPeriodicidad as $keySolicitudes=>$valueSolicitudes) {
                                        
                                        if($valueSolicitudes->dia ==1 || $valueSolicitudes->id_afianzadora!=''){
                                            $valueSolicitudes->id_periodicidad =$model->periodicidad;
                                            $valueSolicitudes->dia = $valueSolicitudes->numeroDia;
                                            if(!$valueSolicitudes->save()){  
                                                $guardado= $guardado&& false;
                                            }   
                                        }
                                    }   
                                }
                                if($guardado){
                                    $transaction->commit();
                                    Yii::app()->user->setFlash('success', 'Los datos han sido registrado exitosamente');
                                    $this->redirect(array('admin'));
                                }
                                else{ 
                                    $transaction->rollBack();
                                    Yii::app()->user->setFlash('error', 'Ha ocurrido un error al tratar de registrar los datos.');
                                    $this->redirect(array('admin'));
                                }
                              
                            }   
                            else{
                                    $transaction->rollBack();
                                    Yii::app()->user->setFlash('error', 'Ha ocurrido un error al tratar de registrar los datos.');
                                    $this->redirect(array('admin'));
                                }
//                        } catch (Exception $e){
//                            $transaction->rollBack();
//                            Yii::app()->user->setFlash('error', 'Ha ocurrido un error al tratar de registrar los datos.');
//                            $this->redirect(array('admin'));
//                        }
                    }
				
		}

		$this->render('configurarAsignacion',array(
			'modelPeriodicidad'=>$modelPeriodicidad,
			'model'=>$model,
		));
	}
        public function actionPeriodicidad(){
        
            if(isset($_POST['periodicidad']) && $_POST['periodicidad']!=''){
                $id= $_POST['periodicidad'];
                $items = 0;
                if($id==1){
                  $scenario = 'Diarias';
                  $items = 6;
                } //Semanal
                elseif($id==2){
                    $scenario = 'Semanal';
                }
                else{ //Monto
                    $scenario = 'Monto';
                }
                $items = 6;
                for($i=0;$i<=$items;$i++){
                $model[$i]= new PeriodicidadAfianzadora($scenario);
                }  
                $this->renderPartial('_form_periodicidad',array(
			'model'=>$model,
                        'id'=>$id
		)); 
               
          
            }
            
        }

	/**
	 * Deletes a particular model.
	 * If deletion is successful, the browser will be redirected to the 'admin' page.
	 * @param integer $id the ID of the model to be deleted
	 */
	public function actionDelete($id)
	{
		if(Yii::app()->request->isPostRequest)
		{
			// we only allow deletion via POST request
			$this->loadModel($id)->delete();

			// if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
			if(!isset($_GET['ajax']))
				$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin'));
		}
		else
			throw new CHttpException(400,'Invalid request. Please do not repeat this request again.');
	}

	/**
	 * Lists all models.
	 */
	public function actionIndex()
	{
		$dataProvider=new CActiveDataProvider('Afianzadora');
		$this->render('index',array(
			'dataProvider'=>$dataProvider,
		));
	}

	/**
	 * Manages all models.
	 */
	public function actionAdmin()
	{
		$model=new Afianzadora('search');
		$model->unsetAttributes();  // clear any default values
		if(isset($_GET['Afianzadora']))
			$model->attributes=$_GET['Afianzadora'];

		$this->render('admin',array(
			'model'=>$model,
		));
	}

	/**
	 * Returns the data model based on the primary key given in the GET variable.
	 * If the data model is not found, an HTTP exception will be raised.
	 * @param integer the ID of the model to be loaded
	 */
	public function loadModel($id)
	{
		$model=Afianzadora::model()->findByPk($id);
		if($model===null)
			throw new CHttpException(404,'The requested page does not exist.');
		return $model;
	}

	/**
	 * Performs the AJAX validation.
	 * @param CModel the model to be validated
	 */
	protected function performAjaxValidation($model)
	{
		if(isset($_POST['ajax']) && $_POST['ajax']==='afianzadora-form')
		{
			echo CActiveForm::validate($model);
			Yii::app()->end();
		}
	}
}
