Jump to content

яндекс метрика портит корзину - undefined index product_id


Recommended Posts

OP3 

 

Модуль Яндекс метрика (взят с их сайта) выдает такую ошибку в момент удаления некоторых товаров из корзины при быстром заказе, и может удалить половину корзины, что он делает не так? Я конечно, отпишу в поддержку яши, но вдруг кто-то наметанным глазом найдет, где собака зарыта.

 

image.png.bb9ec36e6a2d61e0cae9980f1c3986f7.png

 

в product.php это класс

 

Спойлер

           public function getProductDataForYandexMetrica() {
              $this->load->model('catalog/category');
              $this->load->model('catalog/product');

              if (isset($this->request->post['event'])) {
                $event = $this->request->post['event'];
              } else {
                $event = 'add';
              }

              if (isset($this->request->post['id_type']) && $this->request->post['id_type'] == 'key') {
                $this->load->model('extension/module/yandex_metrica');
                $product_data_from_cart = $this->model_extension_module_yandex_metrica->getProductFromCart($this->request->post['id']);
  1916->              $product_id = $product_data_from_cart['product_id'];
              } elseif (isset($this->request->post['id'])) {
                $product_id = (int)$this->request->post['id'];
              } else {
                $product_id = 0;
              }

              if (isset($this->request->post['quantity']) && $this->request->post['quantity'] === 'null' && $this->request->post['id_type'] === 'key') {
  1924->              $quantity = $product_data_from_cart['quantity'];
              } elseif (isset($this->request->post['quantity']) && $this->request->post['quantity'] === 'null' && $this->request->post['id_type'] === 'product_id' && $event === 'add') {
                $quantity = 1;
              } else {
                $quantity = (int)$this->request->post['quantity'];
              }

              if ($product_id === 0) {
                $this->load->model('setting/setting');
                $log_status = $this->model_setting_setting->getSettingValue('analytics_yandex_metrica_log');
                if ($log_status) {
                  $log_ym = new Log('log_yandex_metrica.log');
                  $log_ym->write('Required parameters not found (ID)', true);
                }
              }
 

 

Link to comment
Share on other sites

Происходит все из-за того, что

$product_data_from_cart = $this->model_extension_module_yandex_metrica->getProductFromCart($this->request->post['id']);

возвращает пустой массив.

В метрику при такой работе будут неверные данные отправляться. Что там именно не так, я не скажу.
Чтобы корзину починить, можете отключить в настройках магазина (вкладка Сервер) показ ошибок. Это позволить избавиться от ошибки "SyntaxError...."

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...