Рекомендуемые статьи и товары

This commit is contained in:
Konstantin
2026-05-31 11:48:41 +03:00
parent 5a677f7db7
commit 15446a6402
14 changed files with 275 additions and 50 deletions
+62 -10
View File
@@ -375,11 +375,23 @@ $data['price_n'] = $product_info['price'];
$results = $this->model_catalog_product->getProductRelated($this->request->get['product_id']);
if (!$results) {
$results = $this->model_catalog_product->getRandomProductsFromSameCategories($this->request->get['product_id'], 4);
}
foreach ($results as $result) {
if ($result['image']) {
$image = $this->model_tool_image->resize($result['image'], $this->config->get('theme_' . $this->config->get('config_theme') . '_image_related_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_related_height'));
$image = $this->model_tool_image->resize($result['image'], $this->config->get('theme_' . $this->config->get('config_theme') . '_image_product_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_product_height'));
} else {
$image = $this->model_tool_image->resize('placeholder.png', $this->config->get('theme_' . $this->config->get('config_theme') . '_image_related_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_related_height'));
$image = $this->model_tool_image->resize('placeholder.png', $this->config->get('theme_' . $this->config->get('config_theme') . '_image_product_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_product_height'));
}
$product_images = $this->model_catalog_product->getProductImages($result['product_id']);
if ($product_images) {
$additional_image = $this->model_tool_image->resize($product_images[0]['image'], $this->config->get('theme_' . $this->config->get('config_theme') . '_image_product_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_product_height'));
} else {
$additional_image = false;
}
if ($this->customer->isLogged() || !$this->config->get('config_customer_price')) {
@@ -408,17 +420,57 @@ $data['price_n'] = $product_info['price'];
$rating = false;
}
$rent_prices = array_filter([$result['price'], $result['price_2']], function($price) {
return (float)$price > 0;
});
$min_price = $rent_prices ? min($rent_prices) : 0;
$data['products'][] = array(
'product_id' => $result['product_id'],
'product_id' => $result['product_id'],
'thumb' => $image,
'additional_thumb' => $additional_image,
'name' => $result['name'],
'description' => utf8_substr(trim(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8'))), 0, $this->config->get('theme_' . $this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'price_n' => $result['price'],
'price_2' => $this->currency->format($this->tax->calculate($result['price_2'], $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']),
'price_2_n' => $result['price_2'],
'price_3' => $this->currency->format($this->tax->calculate($result['price_3'], $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']),
'price_3_n' => $result['price_3'],
'min_price' => $this->currency->format($this->tax->calculate($min_price, $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']),
'special' => $special,
'tax' => $tax,
'minimum' => $result['minimum'] > 0 ? $result['minimum'] : 1,
'rating' => $rating,
'href' => $this->url->link('product/product', 'product_id=' . $result['product_id'])
);
}
$this->load->model('blog/article');
$data['articles'] = array();
$results = $this->model_blog_article->getArticleRelatedByProduct(array(
'product_id' => $this->request->get['product_id'],
'limit' => 3
));
foreach ($results as $result) {
if ($result['image']) {
$image = $this->model_tool_image->resize($result['image'], $this->config->get('configblog_image_article_width'), $this->config->get('configblog_image_article_height'));
} else {
$image = $this->model_tool_image->resize('placeholder.png', $this->config->get('configblog_image_article_width'), $this->config->get('configblog_image_article_height'));
}
$data['articles'][] = array(
'article_id' => $result['article_id'],
'thumb' => $image,
'name' => $result['name'],
'description' => utf8_substr(trim(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8'))), 0, $this->config->get('theme_' . $this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'minimum' => $result['minimum'] > 0 ? $result['minimum'] : 1,
'rating' => $rating,
'href' => $this->url->link('product/product', 'product_id=' . $result['product_id'])
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get('configblog_article_description_length')) . '..',
'date_added' => date($this->language->get('date_format_short'), strtotime($result['date_added'])),
'viewed' => $result['viewed'],
'href' => $this->url->link('blog/article', 'article_id=' . $result['article_id'])
);
}
+69 -5
View File
@@ -6,15 +6,47 @@ class ControllerToolCallback extends Controller {
$json = array();
$json['error'] = [];
if($this->request->post['product_id']){
$telephone = isset($this->request->post['telephone']) && is_scalar($this->request->post['telephone']) ? trim((string)$this->request->post['telephone']) : '';
if (utf8_strlen($telephone) < 3 || utf8_strlen($telephone) > 32) {
$json['error'][] = 'Укажите номер телефона.';
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
return;
}
$data['request_type'] = isset($this->request->post['request_type']) ? $this->request->post['request_type'] : '';
$data['fitting_room_products'] = array();
if ($data['request_type'] == 'fitting_room') {
$data['fitting_room_products'] = $this->getFittingRoomProducts();
if (!$data['fitting_room_products']) {
$json['error'][] = 'Ваша примерочная пуста. Добавьте хотя бы одно платье и попробуйте снова.';
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
return;
}
}
if (isset($this->request->post['product_id']) && $this->request->post['product_id']) {
$this->load->model('catalog/product');
$data['product_info'] = $this->model_catalog_product->getProduct($this->request->post['product_id']);
}
$this->load->model('localisation/zone');
$zone_id = isset($this->session->data['city_id']) ? (int)$this->session->data['city_id'] : (int)$this->config->get('config_zone_id');
$zone = $this->model_localisation_zone->getZone($zone_id);
$data['city'] = $zone ? $zone['name'] : '';
$data['config_name'] = $this->config->get('config_name');
$data['post'] = $this->request->post;
@@ -53,6 +85,38 @@ class ControllerToolCallback extends Controller {
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}
private function getFittingRoomProducts() {
$product_ids = array();
if ($this->customer->isLogged()) {
$this->load->model('account/wishlist');
foreach ($this->model_account_wishlist->getWishlist() as $result) {
$product_ids[] = (int)$result['product_id'];
}
} elseif (isset($this->session->data['wishlist']) && is_array($this->session->data['wishlist'])) {
$product_ids = array_map('intval', $this->session->data['wishlist']);
}
$this->load->model('catalog/product');
$products = array();
foreach (array_unique($product_ids) as $product_id) {
$product_info = $this->model_catalog_product->getProduct($product_id);
if ($product_info) {
$products[] = array(
'name' => $product_info['name'],
'model' => $product_info['model'],
'href' => $this->url->link('product/product', 'product_id=' . (int)$product_id)
);
}
}
return $products;
}
private function sendTG($message){
@@ -91,4 +155,4 @@ class ControllerToolCallback extends Controller {
return $response;
}
}
}