protected function updatePrice($params) { $categories = PriceCategory::find()->all(); foreach ($categories as $category) { $price = Price::findOne(['id_product' => $params['id_product'], 'id_price_category' => $category->id_price_category]); if (!$price) { $price = new Price(); $price->setAttributes(['id_product' => $params['id_product'], 'id_price_category' => $category->id_price_category, 'id_uom' => $params['id_uom'], 'price' => 0]); } if ($price->canSetProperty('logParams')) { $logParams = []; foreach (['app', 'id_ref'] as $key) { if (isset($params[$key]) || array_key_exists($key, $params)) { $logParams[$key] = $params[$key]; } } $price->logParams = $logParams; } $price->price = $this->executePriceFormula($category->formula, $params['price']); if (!$price->save()) { throw new UserException(implode(",\n", $price->firstErrors)); } } return true; }
public static function updatePrice($params, $logs = []) { $categories = PriceCategory::find()->all(); foreach ($categories as $category) { $price = Price::findOne(['id_product' => $params['id_product'], 'id_price_category' => $category->id_price_category]); if (!$price) { $price = new Price(); $price->setAttributes(['id_product' => $params['id_product'], 'id_price_category' => $category->id_price_category, 'id_uom' => $params['id_uom'], 'price' => 0]); } if (!empty($logs) && $price->canSetProperty('logParams')) { $price->logParams = $logs; } $price->price = self::executePriceFormula($category->formula, $params['price']); if (!$price->save()) { throw new UserException(implode(",\n", $price->firstErrors)); } } return true; }
/** * Finds the Price 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_price_category * @return Price the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id_product, $id_price_category) { if (($model = Price::findOne(['id_product' => $id_product, 'id_price_category' => $id_price_category])) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }