hotel_commerce/modules/statscatalog/statscatalog.php
2023-06-26 13:09:26 +05:30

344 lines
14 KiB
PHP

<?php
/*
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2016 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
if (!defined('_PS_VERSION_')) {
exit;
}
require_once _PS_MODULE_DIR_.'hotelreservationsystem/define.php';
class StatsCatalog extends Module
{
private $join = '';
private $where = '';
private $id_hotel = '';
public function __construct()
{
$this->name = 'statscatalog';
$this->tab = 'analytics_stats';
$this->version = '1.4.2';
$this->author = 'PrestaShop';
$this->need_instance = 0;
parent::__construct();
$this->displayName = $this->l('Hotel statistics');
$this->description = $this->l('Adds a tab containing general statistics about your catalog to the Stats dashboard.');
$this->ps_versions_compliancy = array('min' => '1.6', 'max' => '1.7.0.99');
}
public function install()
{
return (parent::install() && $this->registerHook('AdminStatsModules'));
}
public function getQuery1()
{
$sql = 'SELECT COUNT(DISTINCT p.`id_product`) AS total,
IFNULL(SUM(p.`price`) / COUNT(p.`price`), 0) AS average_price
FROM `'._DB_PREFIX_.'product` p
INNER JOIN `'._DB_PREFIX_.'htl_room_type` hrt ON (hrt.`id_product` = p.`id_product`)
'.$this->join.'
WHERE p.`active` = 1
'.$this->where;
if ($this->id_hotel) {
$sql .= ' AND hrt.`id_hotel` = '.(int)$this->id_hotel;
}
return DB::getInstance(_PS_USE_SQL_SLAVE_)->getRow($sql);
}
public function getTotalHotelPageViewed()
{
$sql = 'SELECT SUM(pv.`counter`)
FROM `'._DB_PREFIX_.'page_viewed` pv
LEFT JOIN `'._DB_PREFIX_.'page` p ON (p.`id_page` = pv.`id_page`)
LEFT JOIN `'._DB_PREFIX_.'page_type` pt ON (pt.`id_page_type` = p.`id_page_type`)
LEFT JOIN `'._DB_PREFIX_.'category` cl ON (cl.`id_category` = p.`id_object`)
LEFT JOIN `'._DB_PREFIX_.'htl_branch_info` hbi ON (hbi.`id_category` = cl.`id_category`)
'.$this->join.'
WHERE pt.`name` = "'.pSQL('category').'"
'.$this->where;
if ($this->id_hotel) {
$sql .= ' AND hbi.`id` = '.(int) $this->id_hotel;
}
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue($sql);
}
public function getTotalRoomTypePageViewed()
{
$sql = 'SELECT SUM(pv.`counter`)
FROM `'._DB_PREFIX_.'product` p
'.Shop::addSqlAssociation('product', 'p').'
INNER JOIN `'._DB_PREFIX_.'htl_room_type` hrt ON (p.`id_product` = hrt.`id_product`)
LEFT JOIN `'._DB_PREFIX_.'page` pa ON p.`id_product` = pa.`id_object`
LEFT JOIN `'._DB_PREFIX_.'page_type` pt ON (pt.`id_page_type` = pa.`id_page_type` AND pt.`name` IN ("product.php", "product"))
LEFT JOIN `'._DB_PREFIX_.'page_viewed` pv ON pv.`id_page` = pa.`id_page`
'.$this->join.'
WHERE product_shop.`active` = 1
'.$this->where;
if ($this->id_hotel) {
$sql .= ' AND hrt.`id_hotel` = '.(int)$this->id_hotel;
}
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue($sql);
}
public function getTotalProductViewed()
{
$sql = 'SELECT COUNT(DISTINCT pa.`id_object`)
FROM `'._DB_PREFIX_.'page_viewed` pv
LEFT JOIN `'._DB_PREFIX_.'page` pa ON pv.`id_page` = pa.`id_page`
LEFT JOIN `'._DB_PREFIX_.'page_type` pt ON pt.`id_page_type` = pa.`id_page_type`
LEFT JOIN `'._DB_PREFIX_.'product` p ON p.`id_product` = pa.`id_object`
INNER JOIN `'._DB_PREFIX_.'htl_room_type` hrt ON (p.`id_product` = hrt.`id_product`)
'.Shop::addSqlAssociation('product', 'p').'
'.$this->join.'
WHERE pt.`name` IN ("product.php", "product")
AND product_shop.`active` = 1
'.$this->where;
if ($this->id_hotel) {
$sql .= ' AND hrt.`id_hotel` = '.(int)$this->id_hotel;
}
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue($sql);
}
public function getAvailableImages()
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(
'SELECT SUM(hotel_images) + SUM(room_type_images)
FROM
(
SELECT hbi.`id`,
(
SELECT COUNT(*)
FROM `'._DB_PREFIX_.'htl_image` hi
WHERE hi.`id_hotel` = hbi.`id`
) AS hotel_images,
(
SELECT COUNT(*)
FROM `'._DB_PREFIX_.'image` i
LEFT JOIN `'._DB_PREFIX_.'product` p
ON (p.`id_product` = i.`id_product`)
INNER JOIN `'._DB_PREFIX_.'htl_room_type` hrt
ON (hrt.`id_product` = i.`id_product`)
WHERE hrt.`id_hotel` = hbi.`id`
) AS room_type_images
FROM `'._DB_PREFIX_.'htl_branch_info` hbi
) AS t
'.($this->id_hotel ? ' WHERE t.`id` = '.(int) $this->id_hotel : '')
);
}
public function getTotalBookedRooms()
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(
'SELECT IFNULL(SUM(DATEDIFF(hbd.`date_to`, hbd.`date_from`)), 0)
FROM `'._DB_PREFIX_.'htl_booking_detail` hbd
'.($this->id_hotel ? ' WHERE hbd.`id_hotel` = '.(int) $this->id_hotel : '')
);
}
public function getProductsNB($id_lang)
{
$sql = 'SELECT p.`id_product`
FROM `'._DB_PREFIX_.'orders` o
LEFT JOIN `'._DB_PREFIX_.'order_detail` od ON o.`id_order` = od.`id_order`
LEFT JOIN `'._DB_PREFIX_.'product` p ON p.`id_product` = od.`product_id`
INNER JOIN `'._DB_PREFIX_.'htl_room_type` hrt ON (p.`id_product` = hrt.`id_product`)
'.Shop::addSqlAssociation('product', 'p').'
'.$this->join.'
WHERE o.valid = 1
'.$this->where.'
AND product_shop.`active` = 1';
if ($this->id_hotel) {
$sql .= ' AND hrt.`id_hotel` = '.(int)$this->id_hotel;
}
$sql .= ' GROUP BY p.`id_product`';
$precalc = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
$precalc2 = array();
foreach ($precalc as $array) {
$precalc2[] = (int)$array['id_product'];
}
$sql = 'SELECT p.id_product, pl.name, pl.link_rewrite
FROM `'._DB_PREFIX_.'product` p
'.Shop::addSqlAssociation('product', 'p').'
INNER JOIN `'._DB_PREFIX_.'htl_room_type` hrt ON (p.`id_product` = hrt.`id_product`)
LEFT JOIN `'._DB_PREFIX_.'product_lang` pl
ON (pl.`id_product` = p.`id_product` AND pl.id_lang = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').')
'.$this->join.'
WHERE product_shop.`active` = 1
'.(count($precalc2) ? 'AND p.`id_product` NOT IN ('.implode(',', $precalc2).')' : '').'
'.$this->where;
if ($this->id_hotel) {
$sql .= ' AND hrt.`id_hotel` = '.(int)$this->id_hotel;
}
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
return array('total' => Db::getInstance(_PS_USE_SQL_SLAVE_)->NumRows(), 'result' => $result);
}
public function hookAdminStatsModules($params)
{
$objBranchInfo = new HotelBranchInformation();
$hotels = $objBranchInfo->hotelBranchesInfo((int)$this->context->language->id);
$product_token = Tools::getAdminToken('AdminProducts'.(int)Tab::getIdFromClassName('AdminProducts').(int)$this->context->employee->id);
$irow = 0;
if ($id_hotel = (int)Tools::getValue('id_hotel')) {
$this->id_hotel = $id_hotel;
}
$result1 = $this->getQuery1();
$total = $result1['total'];
$average_price = $result1['average_price'];
$available_images = $this->getAvailableImages();
$never_bought = $this->getProductsNB($this->context->language->id);
$total_nb = $never_bought['total'];
$products_nb = $never_bought['result'];
$total_booked_rooms = $this->getTotalBookedRooms();
$average_purchase = $total ? ($total_booked_rooms / $total) : 0;
$total_hotel_page_viewed = $this->getTotalHotelPageViewed();
$total_room_type_page_viewed = $this->getTotalRoomTypePageViewed();
$average_viewed = $total ? ($total_room_type_page_viewed / $total) : 0;
$conversion = number_format((float)($total_room_type_page_viewed ? ($total_booked_rooms / $total_room_type_page_viewed) : 0), 2, '.', '');
if ($conversion_reverse = number_format((float)($total_booked_rooms ? ($total_room_type_page_viewed / $total_booked_rooms) : 0), 2, '.', '')) {
$conversion .= sprintf($this->l(' (1 purchase / %d visits)'), $conversion_reverse);
}
$total_nv = $total - $this->getTotalProductViewed();
$html = '
<script type="text/javascript">$(\'#calendar\').hide();</script>
<div class="panel-heading">
'.$this->displayName.'
</div>
<form action="#" method="post" id="hotelForm" class="form-horizontal">
<div class="row row-margin-bottom">
<label class="control-label col-lg-3">
'.$this->l('Choose a hotel').'
</label>
<div class="col-lg-6">
<select name="id_hotel" onchange="$(\'#hotelForm\').submit();">
<option value="0">'.$this->l('All').'</option>';
foreach ($hotels as $hotel) {
$html .= '<option value="'.$hotel['id'].'"'.($id_hotel == $hotel['id'] ? ' selected="selected"' : '').'>'.
$hotel['hotel_name'].'
</option>';
}
$html .= '
</select>
</div>
</div>
</form>
<ul class="list-group">
<li class="list-group-item">'.$this->returnLine($this->l('Available room types'), '<span class="badge">'.(int)$total).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Average base price'), '<span class="badge">'.Tools::displayPrice($average_price, $this->context->currency)).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Hotel page views'), '<span class="badge">'.(int)$total_hotel_page_viewed).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Room type page views'), '<span class="badge">'.(int)$total_room_type_page_viewed).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Booked room nights'), '<span class="badge">'.(int)$total_booked_rooms).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Average number of page visits'), '<span class="badge">'.number_format((float)$average_viewed, 2, '.', '')).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Average number of bookings'), '<span class="badge">'.number_format((float)$average_purchase, 2, '.', '')).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Available images'), '<span class="badge">'.(int)$available_images).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Room types never viewed'), '<span class="badge">'.(int)$total_nv.' / '.(int)$total).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Room types never purchased'), '<span class="badge">'.(int)$total_nb.' / '.(int)$total).'</span></li>
<li class="list-group-item">'.$this->returnLine($this->l('Conversion rate*'), '<span class="badge">'.$conversion).'</span></li>
</ul>
<div class="row row-margin-bottom">
<p>
<i class="icon-asterisk"></i>'.$this->l('Defines the average conversion rate for the room type page. It is possible to book a room type without viewing the room type page, so this rate can be greater than 1.').'
</p>';
$link = $this->context->link->getAdminLink('AdminModules').'&configure=statsdata';
$html .='
<p>
<strong>'.$this->l('Note: ').'</strong>'.$this->l('You must enable the "Save global page views" option from ').'<a href="'.$link.'" target="_blank">Data mining for statistics</a>'.$this->l(' module for accurate data, or use the QloApps Google Analytics module.').'
</p>
</div>';
if (count($products_nb) && count($products_nb) < 50) {
$html .= '
<div class="col-sm-12"><div class="panel-heading">'.$this->l('Room types never booked').'</div></div>
<table class="table">
<thead>
<tr>
<th><span class="title_box active">'.$this->l('ID').'</span></th>
<th><span class="title_box active">'.$this->l('Name').'</span></th>
<th><span class="title_box active">'.$this->l('Edit / Preview').'</span></th>
</tr>
</thead>
<tbody>';
foreach ($products_nb as $product) {
$urlParams = array('id_product' => $product['id_product'], 'updateproduct' => '1');
$html .= '
<tr'.($irow++ % 2 ? ' class="alt_row"' : '').'>
<td>'.$product['id_product'].'</td>
<td>'.$product['name'].'</td>
<td class="left">
<div class="btn-group btn-group-action">
<a class="btn btn-default" href="' . Tools::safeOutput(preg_replace("/\\?.*$/", '?tab=AdminProducts&id_product=' . $product['id_product'] . '&updateproduct&token=' . $product_token, $this->context->link->getAdminLink('AdminProducts', true, $urlParams))) . '" target="_blank">
<i class="icon-edit"></i> '.$this->l('Edit').'
</a>
<button data-toggle="dropdown" class="btn btn-default dropdown-toggle" type="button">
<span class="caret">&nbsp;</span>
</button>
<ul class="dropdown-menu">
<li>
<a href="'.Tools::safeOutput($this->context->link->getProductLink($product['id_product'], $product['link_rewrite'])).'" target="_blank">
<i class="icon-eye-open"></i> '.$this->l('Preview').'
</a>
</li>
</ul>
</div>
</td>
</tr>';
}
$html .= '
</tbody>
</table>';
}
return $html;
}
private function returnLine($label, $data)
{
return $label.$data;
}
}