| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Reports/Model/Mysql4/Product/Lowstock/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Reports
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Product Low Stock Report Collection
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Reports_Model_Mysql4_Product_Lowstock_Collection extends Mage_Reports_Model_Mysql4_Product_Collection
{
/**
* CatalogInventory Stock Item Resource instance
*
* @var Mage_CatalogInventory_Model_Mysql4_Stock_Item
*/
protected $_inventoryItemResource = null;
/**
* Flag about is joined CatalogInventory Stock Item
*
* @var bool
*/
protected $_inventoryItemJoined = false;
/**
* Alias for CatalogInventory Stock Item Table
*
* @var string
*/
protected $_inventoryItemTableAlias = 'lowstock_inventory_item';
/**
* Retrieve CatalogInventory Stock Item Resource instance
*
* @return Mage_CatalogInventory_Model_Mysql4_Stock_Item
*/
protected function _getInventoryItemResource()
{
if (is_null($this->_inventoryItemResource)) {
$this->_inventoryItemResource = Mage::getResourceSingleton('cataloginventory/stock_item');
}
return $this->_inventoryItemResource;
}
/**
* Retrieve CatalogInventory Stock Item Table
*
* @return string
*/
protected function _getInventoryItemTable()
{
return $this->_getInventoryItemResource()->getMainTable();
}
/**
* Retrieve CatalogInventory Stock Item Table Id field name
*
* @return string
*/
protected function _getInventoryItemIdField()
{
return $this->_getInventoryItemResource()->getIdFieldName();
}
/**
* Retrieve alias for CatalogInventory Stock Item Table
*
* @return string
*/
protected function _getInventoryItemTableAlias()
{
return $this->_inventoryItemTableAlias;
}
/**
* Add catalog inventory stock item field to select
*
* @param string $field
* @param string $alias
* @return Mage_Reports_Model_Mysql4_Product_Lowstock_Collection
*/
protected function _addInventoryItemFieldToSelect($field, $alias = null)
{
if (empty($alias)) {
$alias = $field;
}
if (isset($this->_joinFields[$alias])) {
return $this;
}
$this->_joinFields[$alias] = array(
'table' => $this->_getInventoryItemTableAlias(),
'field' => $field
);
$this->getSelect()->columns(array($alias => $field), $this->_getInventoryItemTableAlias());
return $this;
}
/**
* Retrieve catalog inventory stock item field correlation name
*
* @param string $field
* @return string
*/
protected function _getInventoryItemField($field)
{
return sprintf('%s.%s', $this->_getInventoryItemTableAlias(), $field);
}
/**
* Join catalog inventory stock item table for further stock_item values filters
*
* @return Mage_Reports_Model_Mysql4_Product_Collection
*/
public function joinInventoryItem($fields = array())
{
if (!$this->_inventoryItemJoined) {
$this->getSelect()->join(
array($this->_getInventoryItemTableAlias() => $this->_getInventoryItemTable()),
sprintf('`e`.`%s`=`%s`.`product_id`',
$this->getEntity()->getEntityIdField(),
$this->_getInventoryItemTableAlias()
),
array()
);
$this->_inventoryItemJoined = true;
}
if (!is_array($fields)) {
if (empty($fields)) {
$fields = array();
} else {
$fields = array($fields);
}
}
foreach ($fields as $alias => $field) {
if (!is_string($alias)) {
$alias = null;
}
$this->_addInventoryItemFieldToSelect($field, $alias);
}
return $this;
}
/**
* Add filter by product type(s)
*
* @param array|string $typeFilter
* @return Mage_Reports_Model_Mysql4_Product_Collection
*/
public function filterByProductType($typeFilter)
{
if (!is_string($typeFilter) && !is_array($typeFilter)) {
Mage::throwException(
Mage::helper('catalog')->__('Wrong product type filter specified')
);
}
$this->addAttributeToFilter('type_id', $typeFilter);
return $this;
}
/**
* Add filter by product types from config
* Only types witch has QTY parameter
*
* @return Mage_Reports_Model_Mysql4_Product_Collection
*/
public function filterByIsQtyProductTypes()
{
$this->filterByProductType(
array_keys(array_filter(Mage::helper('cataloginventory')->getIsQtyTypeIds()))
);
return $this;
}
/**
* Add Use Manage Stock Condition to collection
*
* @param int|null $storeId
* @return Mage_Reports_Model_Mysql4_Product_Collection
*/
public function useManageStockFilter($storeId = null)
{
$this->joinInventoryItem();
$this->getSelect()->where(sprintf('IF(%s,%d,%s)=1',
$this->_getInventoryItemField('use_config_manage_stock'),
(int) Mage::getStoreConfig(Mage_CatalogInventory_Model_Stock_Item::XML_PATH_MANAGE_STOCK,$storeId),
$this->_getInventoryItemIdField('manage_stock')));
return $this;
}
/**
* Add Notify Stock Qty Condition to collection
*
* @param int $storeId
* @return Mage_Reports_Model_Mysql4_Product_Collection
*/
public function useNotifyStockQtyFilter($storeId = null)
{
$this->joinInventoryItem(array('qty'));
$this->getSelect()->where(sprintf('qty < IF(%s,%d,%s)',
$this->_getInventoryItemField('use_config_notify_stock_qty'),
(int)Mage::getStoreConfig(Mage_CatalogInventory_Model_Stock_Item::XML_PATH_NOTIFY_STOCK_QTY,$storeId),
$this->_getInventoryItemField('notify_stock_qty')));
return $this;
}
}