/**
  * Creates a new ProductUom model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new ProductUom();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'product_id' => $model->product_id, 'uom_id' => $model->uom_id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }