Example #1
0
 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;
 }
Example #2
0
 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;
 }