| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.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 : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/aix/administrator/components/com_djcatalog2/models/ |
Upload File : |
<?php
/**
* @package DJ-Catalog2
* @copyright Copyright (C) DJ-Extensions.com, All rights reserved.
* @license http://www.gnu.org/licenses GNU/GPL
* @author url: http://dj-extensions.com
* @author email contact@dj-extensions.com
*/
// no direct access
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
use Joomla\CMS\Component\ComponentHelper;
use Joomla\CMS\MVC\Model\ListModel;
jimport('joomla.application.component.modellist');
class Djcatalog2ModelOrders extends ListModel
{
protected $_order_items;
public function __construct($config = array())
{
if (empty($config['filter_fields'])) {
$config['filter_fields'] = array(
'a.id', 'a.order_number', 'a.invoice_number', 'a.created_date', 'a.status', 'a.grand_total', 'a.status', 'a.modified'
);
}
parent::__construct($config);
}
protected function populateState($ordering = null, $direction = null)
{
// List state information.
parent::populateState('a.order_number', 'desc');
// Initialise variables.
$app = Factory::getApplication();
$session = Factory::getSession();
$search = $this->getUserStateFromRequest($this->context.'.filter.search', 'filter_search');
$this->setState('filter.search', $search);
$date_from = $this->getUserStateFromRequest($this->context.'.filter.date_from', 'filter_date_from');
$this->setState('filter.date_from', $date_from);
$date_to = $this->getUserStateFromRequest($this->context.'.filter.date_to', 'filter_date_to');
$this->setState('filter.date_to', $date_to);
// Load the parameters.
$params = ComponentHelper::getParams('com_djcatalog2');
$this->setState('params', $params);
}
protected function getStoreId($id = '')
{
// Compile the store id.
$id .= ':'.$this->getState('filter.search');
$id .= ':'.$this->getState('filter.ids');
$id .= ':'.$this->getState('filter.invoice');
$id .= ':'.$this->getState('filter.date_from');
$id .= ':'.$this->getState('filter.date_to');
return parent::getStoreId($id);
}
protected function getListQuery()
{
// Create a new query object.
$db = $this->getDbo();
$query = $db->getQuery(true);
// Select the required fields from the table.
$query->select(
$this->getState(
'list.select',
'a.*'
)
);
$query->from('#__djc2_orders AS a');
$search = $this->getState('filter.search');
if (!empty($search)) {
if (stripos($search, 'id:') === 0) {
$query->where('a.id = '.(int) substr($search, 3));
}
else {
$search = $db->quote('%'.$db->escape($search, true).'%');
$query->where('(a.order_number LIKE '.$search.' OR a.email LIKE '.$search.' OR a.firstname LIKE '.$search.' OR a.lastname LIKE '.$search.' OR a.company LIKE '.$search.')');
}
}
$ids = $this->getState('filter.ids', false);
if (!empty($ids)) {
$query->where('a.id IN ('.$ids.')');
}
$invoice = $this->getState('filter.invoice', false);
if ($invoice) {
$query->where('(a.invoice_number != "" AND a.invoice_number IS NOT NULL)');
}
$date_from = $this->getState('filter.date_from', false);
$date_to = $this->getState('filter.date_to', false);
if ($date_from) {
$query->where('a.created_date >= '.$db->quote($date_from));
}
if ($date_to) {
$query->where('a.created_date <= '.$db->quote($date_to));
}
// Add the list ordering clause.
$orderCol = $this->state->get('list.ordering', 'a.order_number');
$orderDirn = $this->state->get('list.direction', 'desc');
$query->order($db->escape($orderCol.' '.$orderDirn));
return $query;
}
public function getCounters() {
$db = Factory::getDbo();
$query = $db->getQuery(true);
$query->select('a.*')->from('#__djc2_inv_counters AS a')->order('a.year DESC');
$db->setQuery($query);
return $db->loadObjectList();
}
public function getOrdersWithShippingDays() {
$items = $this->getItems();
if(!empty($items)) {
foreach ($items as $index => $item) {
$items[$index]->order_items = array();
$order_items = $this->getOrderItems($item->id);
foreach ($order_items as $order_item) {
$items[$index]->order_items[$order_item->shipping_day][] = $order_item;
}
}
}
return $items;
}
public function getItems()
{
// Get a storage key.
$store = $this->getStoreId();
// Try to load the data from internal storage.
if (!empty($this->_cache[$store])) {
return $this->_cache[$store];
}
// Load the list items.
$query = $this->_getListQuery();
try
{
$items = $this->_getList((string) $query, $this->getState('list.start'), $this->getState('list.limit'));
}
catch (\RuntimeException $e)
{
$this->setError($e->getMessage());
return false;
}
// Add the items to the internal cache.
$this->_cache[$store] = $items;
if($this->getState('order_items')) {
$this->bindOrderItems($store);
}
return $this->_cache[$store];
}
private function bindOrderItems($store) {
if (!empty($this->_cache[$store])) {
$ids = array_keys($this->_cache[$store]);
if (empty($ids)) {
return;
}
$order_items = $this->getOrderItems($ids);
if(count($order_items)) {
foreach ($order_items as $order_item) {
$this->_cache[$store][$order_item->order_id]->items[] = $order_item;
}
}
}
}
protected function _getList($query, $limitstart = 0, $limit = 0)
{
$this->_db->setQuery($query, $limitstart, $limit);
$result = $this->_db->loadObjectList('id');
return $result;
}
public function getOrderItems($order_id) {
$db = Factory::getDbo();
$query = $db->getQuery(true);
$query->select('*');
$query->from($db->quoteName('#__djc2_order_items'));
if(is_array($order_id) && count($order_id)) {
$query->where($db->quoteName('order_id') . ' IN ('. implode(',', $order_id) .')');
} else if (is_numeric($order_id)) {
$query->where($db->quoteName('order_id') . ' = '. (int)$order_id);
}
$db->setQuery($query);
return $db->loadObjectList();
}
public function getOrderStatuses() {
$db = Factory::getDbo();
$query = $db->getQuery(true);
$query->select('*');
$query->from('#__djc2_order_statuses');
$db->setQuery($query);
return $db->loadObjectList();
}
}