Пример #1
0
 /**
  * @return integer
  */
 public static function getQtyProductUom($id_product, $id_uom)
 {
     $pu = ProductUom::findOne(['id_product' => $id_product, 'id_uom' => $id_uom]);
     return $pu ? $pu->isi : false;
 }
 public function actionDeleteUom($id_product, $id_uom)
 {
     $puom = ProductUom::findOne(['id_product' => $id_product, 'id_uom' => $id_uom]);
     $puom->delete();
     Yii::$app->session->setFlash('_flash_action', 'uom');
     return $this->redirect(['view', 'id' => $id_product]);
 }
 /**
  * Finds the ProductUom model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param  integer               $id_product
  * @param  integer               $id_uom
  * @return ProductUom            the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id_product, $id_uom)
 {
     if (($model = ProductUom::findOne(['id_product' => $id_product, 'id_uom' => $id_uom])) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }