89 lines
2.4 KiB
PHP
89 lines
2.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Vvveb
|
|
*
|
|
* Copyright (C) 2022 Ziadin Givan
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace Vvveb\Component;
|
|
|
|
use Vvveb\System\Cart\Currency;
|
|
use Vvveb\System\Component\ComponentBase;
|
|
use Vvveb\System\Event;
|
|
use Vvveb\System\Images;
|
|
|
|
class Orders extends ComponentBase {
|
|
public static $defaultOptions = [
|
|
'start' => 0,
|
|
'limit' => 10,
|
|
'language_id' => NULL,
|
|
'site_id' => NULL,
|
|
'user_id' => NULL,
|
|
'email' => NULL,
|
|
'phone_number' => NULL,
|
|
'search' => NULL,
|
|
'id_manufacturer' => NULL,
|
|
'order_status' => NULL,
|
|
'order_status_id' => NULL,
|
|
'order_by' => NULL,
|
|
'direction' => ['url', 'asc', 'desc'],
|
|
];
|
|
|
|
public $options = [];
|
|
|
|
function results() {
|
|
$orders = new \Vvveb\Sql\OrderSQL();
|
|
|
|
$results = $orders->getAll($this->options);
|
|
|
|
if (isset($this->options['order_by']) &&
|
|
! in_array($this->options['order_by'], ['order_id', 'customer_order_id', 'order_status_id', 'created_at'])) {
|
|
unset($this->options['order_by']);
|
|
}
|
|
|
|
if (isset($this->options['direction']) &&
|
|
! in_array($this->options['direction'], ['asc', 'desc'])) {
|
|
unset($this->options['direction']);
|
|
}
|
|
|
|
if ($results['order']) {
|
|
$currency = Currency::getInstance();
|
|
|
|
foreach ($results['order'] as $id => &$order) {
|
|
if (isset($order['images'])) {
|
|
$order['images'] = json_decode($order['images'], 1);
|
|
|
|
foreach ($order['images'] as &$image) {
|
|
$image = Images::image('order', $image);
|
|
}
|
|
}
|
|
|
|
if (isset($order['image'])) {
|
|
$order['images'][] = Images::image('order', $order['image']);
|
|
}
|
|
|
|
$order['total_formatted'] = $currency->format($order['total']);
|
|
}
|
|
}
|
|
|
|
list($results) = Event::trigger(__CLASS__, __FUNCTION__, $results);
|
|
|
|
return $results;
|
|
}
|
|
}
|