TaxOptionController.php 5.96 KB
<?php
    
    namespace common\modules\rubrication\controllers;
    
    use common\modules\rubrication\models\TaxGroup;
    use Yii;
    use common\modules\rubrication\models\TaxOption;
    use common\modules\rubrication\models\TaxOptionSearch;
    use yii\web\Controller;
    use yii\web\NotFoundHttpException;
    use yii\filters\VerbFilter;
    
    /**
     * TaxOptionController implements the CRUD actions for TaxOption model.
     */
    class TaxOptionController extends Controller
    {
        
        /**
         * @inheritdoc
         */
        public function behaviors()
        {
            return [
                'verbs' => [
                    'class'   => VerbFilter::className(),
                    'actions' => [
                        'delete' => [ 'POST' ],
                    ],
                ],
            ];
        }
        
        /**
         * Lists all TaxOption models.
         * @return mixed
         */
        public function actionIndex()
        {
            $searchModel = new TaxOptionSearch();
            $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
            
            $group = TaxGroup::findOne(Yii::$app->request->queryParams[ 'group' ]);
            
            return $this->render('index', [
                'searchModel'  => $searchModel,
                'dataProvider' => $dataProvider,
                'group'        => $group,
            ]);
        }
        
        /**
         * Displays a single TaxOption model.
         *
         * @param string $id
         *
         * @return mixed
         */
        public function actionView($id)
        {
            $model = $this->findModel($id);
            $group = TaxGroup::findOne($model->tax_group_id);
            return $this->render('view', [
                'model' => $model,
                'group' => $group,
            ]);
        }
        
        /**
         * Creates a new TaxOption model.
         * If creation is successful, the browser will be redirected to the 'view' page.
         * @return mixed
         */
        public function actionCreate()
        {
            $model = new TaxOption();
            $model_langs = $model->generateLangs();
            $group = TaxGroup::findOne(Yii::$app->request->queryParams[ 'group' ]);
            
            if($model->load(Yii::$app->request->post()) && $model->save()) {
                $model->loadLangs(\Yii::$app->request, $model_langs);
                
                if($model->linkLangs($model_langs) && $model->saveLangs($model_langs)) {
                    return is_null(Yii::$app->request->post('create_and_new')) ? $this->redirect([
                        'view',
                        'id' => $model->tax_option_id,
                    ]) : $this->redirect(array_merge([ 'create' ], Yii::$app->request->queryParams));
                } else {
                    return $this->redirect([
                        'update',
                        'id' => $model->tax_option_id,
                    ]);
                }
                
            }
            $model->tax_group_id = $group->tax_group_id;
            if(!empty( Yii::$app->request->queryParams[ 'parent' ] )) {
                $model->parent_id = Yii::$app->request->queryParams[ 'parent' ];
            }
            return $this->render('create', [
                'model'       => $model,
                'model_langs' => $model_langs,
                'group'       => $group,
            ]);
        }
        
        /**
         * Updates an existing TaxOption model.
         * If update is successful, the browser will be redirected to the 'view' page.
         *
         * @param string $id
         *
         * @return mixed
         */
        public function actionUpdate($id)
        {
            $model = $this->findModel($id);
            $model_langs = $model->generateLangs();
            $group = TaxGroup::findOne($model->tax_group_id);
            
            if($model->load(Yii::$app->request->post()) && $model->save()) {
                $model->loadLangs(\Yii::$app->request, $model_langs);
                
                TaxOption::find()
                         ->rebuildMP($model->tax_group_id);
                if($model->linkLangs($model_langs) && $model->saveLangs($model_langs)) {
                    return $this->redirect([
                        'view',
                        'id' => $model->tax_option_id,
                    ]);
                }
            }
            return $this->render('update', [
                'model'       => $model,
                'model_langs' => $model_langs,
                'group'       => $group,
            ]);
        }
        
        /**
         * Deletes an existing TaxOption model.
         * If deletion is successful, the browser will be redirected to the 'index' page.
         *
         * @param string $id
         *
         * @return mixed
         */
        public function actionDelete($id)
        {
            $model = $this->findModel($id);
            $group_id = $model->tax_group_id;
            
            $model->delete();
            
            return $this->redirect([
                'index',
                'group' => $group_id,
            ]);
        }
        
        /**
         * Finds the TaxOption model based on its primary key value.
         * If the model is not found, a 404 HTTP exception will be thrown.
         *
         * @param string $id
         *
         * @return TaxOption the loaded model
         * @throws NotFoundHttpException if the model cannot be found
         */
        protected function findModel($id)
        {
            if(( $model = TaxOption::findOne($id) ) !== NULL) {
                return $model;
            } else {
                throw new NotFoundHttpException('The requested page does not exist.');
            }
        }
    }