first commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
class ModelExtensionReportActivity extends Model {
|
||||
public function getActivities() {
|
||||
$query = $this->db->query("SELECT a.key, a.data, a.date_added FROM ((SELECT CONCAT('customer_', ca.key) AS `key`, ca.data, ca.date_added FROM `" . DB_PREFIX . "customer_activity` ca) UNION (SELECT CONCAT('affiliate_', aa.key) AS `key`, aa.data, aa.date_added FROM `" . DB_PREFIX . "affiliate_activity` aa)) a ORDER BY a.date_added DESC LIMIT 0,5");
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
class ModelExtensionReportCoupon extends Model {
|
||||
public function getCoupons($data = array()) {
|
||||
$sql = "SELECT ch.coupon_id, c.name, c.code, COUNT(DISTINCT ch.order_id) AS `orders`, SUM(ch.amount) AS total FROM `" . DB_PREFIX . "coupon_history` ch LEFT JOIN `" . DB_PREFIX . "coupon` c ON (ch.coupon_id = c.coupon_id)";
|
||||
|
||||
$implode = array();
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$implode[] = "DATE(ch.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$implode[] = "DATE(ch.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " WHERE " . implode(" AND ", $implode);
|
||||
}
|
||||
|
||||
$sql .= " GROUP BY ch.coupon_id ORDER BY total DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalCoupons($data = array()) {
|
||||
$sql = "SELECT COUNT(DISTINCT coupon_id) AS total FROM `" . DB_PREFIX . "coupon_history`";
|
||||
|
||||
$implode = array();
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$implode[] = "DATE(date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$implode[] = "DATE(date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " WHERE " . implode(" AND ", $implode);
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,380 @@
|
||||
<?php
|
||||
class ModelExtensionReportCustomer extends Model {
|
||||
public function getTotalCustomersByDay() {
|
||||
$customer_data = array();
|
||||
|
||||
for ($i = 0; $i < 24; $i++) {
|
||||
$customer_data[$i] = array(
|
||||
'hour' => $i,
|
||||
'total' => 0
|
||||
);
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, HOUR(date_added) AS hour FROM `" . DB_PREFIX . "customer` WHERE DATE(date_added) = DATE(NOW()) GROUP BY HOUR(date_added) ORDER BY date_added ASC");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$customer_data[$result['hour']] = array(
|
||||
'hour' => $result['hour'],
|
||||
'total' => $result['total']
|
||||
);
|
||||
}
|
||||
|
||||
return $customer_data;
|
||||
}
|
||||
|
||||
public function getTotalCustomersByWeek() {
|
||||
$customer_data = array();
|
||||
|
||||
$date_start = strtotime('-' . date('w') . ' days');
|
||||
|
||||
for ($i = 0; $i < 7; $i++) {
|
||||
$date = date('Y-m-d', $date_start + ($i * 86400));
|
||||
|
||||
$customer_data[date('w', strtotime($date))] = array(
|
||||
'day' => date('D', strtotime($date)),
|
||||
'total' => 0
|
||||
);
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, date_added FROM `" . DB_PREFIX . "customer` WHERE DATE(date_added) >= DATE('" . $this->db->escape(date('Y-m-d', $date_start)) . "') GROUP BY DAYNAME(date_added)");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$customer_data[date('w', strtotime($result['date_added']))] = array(
|
||||
'day' => date('D', strtotime($result['date_added'])),
|
||||
'total' => $result['total']
|
||||
);
|
||||
}
|
||||
|
||||
return $customer_data;
|
||||
}
|
||||
|
||||
public function getTotalCustomersByMonth() {
|
||||
$customer_data = array();
|
||||
|
||||
for ($i = 1; $i <= date('t'); $i++) {
|
||||
$date = date('Y') . '-' . date('m') . '-' . $i;
|
||||
|
||||
$customer_data[date('j', strtotime($date))] = array(
|
||||
'day' => date('d', strtotime($date)),
|
||||
'total' => 0
|
||||
);
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, date_added FROM `" . DB_PREFIX . "customer` WHERE DATE(date_added) >= '" . $this->db->escape(date('Y') . '-' . date('m') . '-1') . "' GROUP BY DATE(date_added)");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$customer_data[date('j', strtotime($result['date_added']))] = array(
|
||||
'day' => date('d', strtotime($result['date_added'])),
|
||||
'total' => $result['total']
|
||||
);
|
||||
}
|
||||
|
||||
return $customer_data;
|
||||
}
|
||||
|
||||
public function getTotalCustomersByYear() {
|
||||
$customer_data = array();
|
||||
|
||||
for ($i = 1; $i <= 12; $i++) {
|
||||
$customer_data[$i] = array(
|
||||
'month' => date('M', mktime(0, 0, 0, $i)),
|
||||
'total' => 0
|
||||
);
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, date_added FROM `" . DB_PREFIX . "customer` WHERE YEAR(date_added) = YEAR(NOW()) GROUP BY MONTH(date_added)");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$customer_data[date('n', strtotime($result['date_added']))] = array(
|
||||
'month' => date('M', strtotime($result['date_added'])),
|
||||
'total' => $result['total']
|
||||
);
|
||||
}
|
||||
|
||||
return $customer_data;
|
||||
}
|
||||
|
||||
public function getOrders($data = array()) {
|
||||
$sql = "SELECT c.customer_id, CONCAT(c.firstname, ' ', c.lastname) AS customer, c.email, cgd.name AS customer_group, c.status, o.order_id, SUM(op.quantity) as products, o.total AS total FROM `" . DB_PREFIX . "order` o LEFT JOIN `" . DB_PREFIX . "order_product` op ON (o.order_id = op.order_id) LEFT JOIN `" . DB_PREFIX . "customer` c ON (o.customer_id = c.customer_id) LEFT JOIN `" . DB_PREFIX . "customer_group_description` cgd ON (c.customer_group_id = cgd.customer_group_id) WHERE o.customer_id > 0 AND cgd.language_id = '" . (int)$this->config->get('config_language_id') . "'";
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$sql .= " AND CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " AND o.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND o.order_status_id > '0'";
|
||||
}
|
||||
|
||||
$sql .= " GROUP BY o.order_id";
|
||||
|
||||
$sql = "SELECT t.customer_id, t.customer, t.email, t.customer_group, t.status, COUNT(DISTINCT t.order_id) AS orders, SUM(t.products) AS products, SUM(t.total) AS total FROM (" . $sql . ") AS t GROUP BY t.customer_id ORDER BY total DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalOrders($data = array()) {
|
||||
$sql = "SELECT COUNT(DISTINCT o.customer_id) AS total FROM `" . DB_PREFIX . "order` o LEFT JOIN `" . DB_PREFIX . "customer` c ON (o.customer_id = c.customer_id) WHERE o.customer_id > '0'";
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$sql .= " AND CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " AND o.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND o.order_status_id > '0'";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function getRewardPoints($data = array()) {
|
||||
$sql = "SELECT cr.customer_id, CONCAT(c.firstname, ' ', c.lastname) AS customer, c.email, cgd.name AS customer_group, c.status, SUM(cr.points) AS points, COUNT(o.order_id) AS orders, SUM(o.total) AS total FROM " . DB_PREFIX . "customer_reward cr LEFT JOIN `" . DB_PREFIX . "customer` c ON (cr.customer_id = c.customer_id) LEFT JOIN " . DB_PREFIX . "customer_group_description cgd ON (c.customer_group_id = cgd.customer_group_id) LEFT JOIN `" . DB_PREFIX . "order` o ON (cr.order_id = o.order_id) WHERE cgd.language_id = '" . (int)$this->config->get('config_language_id') . "'";
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(cr.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(cr.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$sql .= " AND CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
$sql .= " GROUP BY cr.customer_id ORDER BY points DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalRewardPoints($data = array()) {
|
||||
$sql = "SELECT COUNT(DISTINCT cr.customer_id) AS total FROM `" . DB_PREFIX . "customer_reward` cr LEFT JOIN `" . DB_PREFIX . "customer` c ON (cr.customer_id = c.customer_id)";
|
||||
|
||||
$implode = array();
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$implode[] = "DATE(cr.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$implode[] = "DATE(cr.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$implode[] = "CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " WHERE " . implode(" AND ", $implode);
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function getCustomerActivities($data = array()) {
|
||||
$sql = "SELECT ca.customer_activity_id, ca.customer_id, ca.key, ca.data, ca.ip, ca.date_added FROM " . DB_PREFIX . "customer_activity ca LEFT JOIN " . DB_PREFIX . "customer c ON (ca.customer_id = c.customer_id)";
|
||||
|
||||
$implode = array();
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$implode[] = "DATE(ca.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$implode[] = "DATE(ca.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$implode[] = "CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_ip'])) {
|
||||
$implode[] = "ca.ip LIKE '" . $this->db->escape($data['filter_ip']) . "'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " WHERE " . implode(" AND ", $implode);
|
||||
}
|
||||
|
||||
$sql .= " ORDER BY ca.date_added DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalCustomerActivities($data = array()) {
|
||||
$sql = "SELECT COUNT(*) AS total FROM `" . DB_PREFIX . "customer_activity` ca LEFT JOIN " . DB_PREFIX . "customer c ON (ca.customer_id = c.customer_id)";
|
||||
|
||||
$implode = array();
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$implode[] = "DATE(ca.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$implode[] = "DATE(ca.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$implode[] = "CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_ip'])) {
|
||||
$implode[] = "ca.ip LIKE '" . $this->db->escape($data['filter_ip']) . "'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " WHERE " . implode(" AND ", $implode);
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function getCustomerSearches($data = array()) {
|
||||
$sql = "SELECT cs.customer_id, cs.keyword, cs.category_id, cs.products, cs.ip, cs.date_added, CONCAT(c.firstname, ' ', c.lastname) AS customer FROM " . DB_PREFIX . "customer_search cs LEFT JOIN " . DB_PREFIX . "customer c ON (cs.customer_id = c.customer_id)";
|
||||
|
||||
$implode = array();
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$implode[] = "DATE(cs.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$implode[] = "DATE(cs.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_keyword'])) {
|
||||
$implode[] = "cs.keyword LIKE '" . $this->db->escape($data['filter_keyword']) . "%'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$implode[] = "CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_ip'])) {
|
||||
$implode[] = "cs.ip LIKE '" . $this->db->escape($data['filter_ip']) . "'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " WHERE " . implode(" AND ", $implode);
|
||||
}
|
||||
|
||||
$sql .= " ORDER BY cs.date_added DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalCustomerSearches($data = array()) {
|
||||
$sql = "SELECT COUNT(*) AS total FROM `" . DB_PREFIX . "customer_search` cs LEFT JOIN " . DB_PREFIX . "customer c ON (cs.customer_id = c.customer_id)";
|
||||
|
||||
$implode = array();
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$implode[] = "DATE(cs.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$implode[] = "DATE(cs.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_keyword'])) {
|
||||
$implode[] = "cs.keyword LIKE '" . $this->db->escape($data['filter_keyword']) . "%'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$implode[] = "CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_ip'])) {
|
||||
$implode[] = "cs.ip LIKE '" . $this->db->escape($data['filter_ip']) . "'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " WHERE " . implode(" AND ", $implode);
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
class ModelExtensionReportCustomerTransaction extends Model {
|
||||
public function getTransactions($data = array()) {
|
||||
$sql = "SELECT ct.customer_id, CONCAT(c.firstname, ' ', c.lastname) AS customer, c.email, cgd.name AS customer_group, c.status, SUM(ct.amount) AS total FROM `" . DB_PREFIX . "customer_transaction` ct LEFT JOIN `" . DB_PREFIX . "customer` c ON (ct.customer_id = c.customer_id) LEFT JOIN `" . DB_PREFIX . "customer_group_description` cgd ON (c.customer_group_id = cgd.customer_group_id) WHERE cgd.language_id = '" . (int)$this->config->get('config_language_id') . "'";
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(ct.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(ct.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$sql .= " AND CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
$sql .= " GROUP BY ct.customer_id ORDER BY total DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalTransactions($data = array()) {
|
||||
$sql = "SELECT COUNT(DISTINCT ct.customer_id) AS total FROM `" . DB_PREFIX . "customer_transaction` ct LEFT JOIN `" . DB_PREFIX . "customer` c ON (ct.customer_id = c.customer_id)";
|
||||
|
||||
$implode = array();
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$implode[] = "DATE(ct.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$implode[] = "DATE(ct.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_customer'])) {
|
||||
$implode[] = "CONCAT(c.firstname, ' ', c.lastname) LIKE '" . $this->db->escape($data['filter_customer']) . "'";
|
||||
}
|
||||
|
||||
if ($implode) {
|
||||
$sql .= " WHERE " . implode(" AND ", $implode);
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
class ModelExtensionReportMarketing extends Model {
|
||||
public function getMarketing($data = array()) {
|
||||
$sql = "SELECT m.marketing_id, m.name AS campaign, m.code, m.clicks AS clicks, (SELECT COUNT(DISTINCT order_id) FROM `" . DB_PREFIX . "order` o1 WHERE o1.marketing_id = m.marketing_id";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " AND o1.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND o1.order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o1.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o1.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
$sql .= ") AS `orders`, (SELECT SUM(total) FROM `" . DB_PREFIX . "order` o2 WHERE o2.marketing_id = m.marketing_id";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " AND o2.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND o2.order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o2.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o2.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
$sql .= " GROUP BY o2.marketing_id) AS `total` FROM `" . DB_PREFIX . "marketing` m ORDER BY m.date_added ASC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalMarketing($data = array()) {
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total FROM `" . DB_PREFIX . "marketing`");
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
class ModelExtensionReportProduct extends Model {
|
||||
public function getProductsViewed($data = array()) {
|
||||
$sql = "SELECT pd.name, p.model, p.viewed FROM " . DB_PREFIX . "product p LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) WHERE pd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND p.viewed > 0 ORDER BY p.viewed DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalProductViews() {
|
||||
$query = $this->db->query("SELECT SUM(viewed) AS total FROM " . DB_PREFIX . "product");
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function getTotalProductsViewed() {
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total FROM " . DB_PREFIX . "product WHERE viewed > 0");
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function reset() {
|
||||
$this->db->query("UPDATE " . DB_PREFIX . "product SET viewed = '0'");
|
||||
}
|
||||
|
||||
public function getPurchased($data = array()) {
|
||||
$sql = "SELECT op.name, op.model, SUM(op.quantity) AS quantity, SUM((op.price + op.tax) * op.quantity) AS total FROM " . DB_PREFIX . "order_product op LEFT JOIN `" . DB_PREFIX . "order` o ON (op.order_id = o.order_id)";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " WHERE o.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " WHERE o.order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
$sql .= " GROUP BY op.product_id ORDER BY total DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalPurchased($data) {
|
||||
$sql = "SELECT COUNT(DISTINCT op.product_id) AS total FROM `" . DB_PREFIX . "order_product` op LEFT JOIN `" . DB_PREFIX . "order` o ON (op.order_id = o.order_id)";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " WHERE o.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " WHERE o.order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
<?php
|
||||
class ModelExtensionReportReturn extends Model {
|
||||
public function getReturns($data = array()) {
|
||||
$sql = "SELECT MIN(r.date_added) AS date_start, MAX(r.date_added) AS date_end, COUNT(r.return_id) AS `returns` FROM `" . DB_PREFIX . "return` r";
|
||||
|
||||
if (!empty($data['filter_return_status_id'])) {
|
||||
$sql .= " WHERE r.return_status_id = '" . (int)$data['filter_return_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " WHERE r.return_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(r.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(r.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (isset($data['filter_group'])) {
|
||||
$group = $data['filter_group'];
|
||||
} else {
|
||||
$group = 'week';
|
||||
}
|
||||
|
||||
switch($group) {
|
||||
case 'day';
|
||||
$sql .= " GROUP BY YEAR(r.date_added), MONTH(r.date_added), DAY(r.date_added)";
|
||||
break;
|
||||
default:
|
||||
case 'week':
|
||||
$sql .= " GROUP BY YEAR(r.date_added), WEEK(r.date_added)";
|
||||
break;
|
||||
case 'month':
|
||||
$sql .= " GROUP BY YEAR(r.date_added), MONTH(r.date_added)";
|
||||
break;
|
||||
case 'year':
|
||||
$sql .= " GROUP BY YEAR(r.date_added)";
|
||||
break;
|
||||
}
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalReturns($data = array()) {
|
||||
if (!empty($data['filter_group'])) {
|
||||
$group = $data['filter_group'];
|
||||
} else {
|
||||
$group = 'week';
|
||||
}
|
||||
|
||||
switch($group) {
|
||||
case 'day';
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(date_added), MONTH(date_added), DAY(date_added)) AS total FROM `" . DB_PREFIX . "return`";
|
||||
break;
|
||||
default:
|
||||
case 'week':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(date_added), WEEK(date_added)) AS total FROM `" . DB_PREFIX . "return`";
|
||||
break;
|
||||
case 'month':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(date_added), MONTH(date_added)) AS total FROM `" . DB_PREFIX . "return`";
|
||||
break;
|
||||
case 'year':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(date_added)) AS total FROM `" . DB_PREFIX . "return`";
|
||||
break;
|
||||
}
|
||||
|
||||
if (!empty($data['filter_return_status_id'])) {
|
||||
$sql .= " WHERE return_status_id = '" . (int)$data['filter_return_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " WHERE return_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,438 @@
|
||||
<?php
|
||||
class ModelExtensionReportSale extends Model {
|
||||
public function getTotalSales($data = array()) {
|
||||
$sql = "SELECT SUM(total) AS total FROM `" . DB_PREFIX . "order` WHERE order_status_id > '0'";
|
||||
|
||||
if (!empty($data['filter_date_added'])) {
|
||||
$sql .= " AND DATE(date_added) = DATE('" . $this->db->escape($data['filter_date_added']) . "')";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function getTotalOrdersByCountry() {
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, SUM(o.total) AS amount, c.iso_code_2 FROM `" . DB_PREFIX . "order` o LEFT JOIN `" . DB_PREFIX . "country` c ON (o.payment_country_id = c.country_id) WHERE o.order_status_id > '0' GROUP BY o.payment_country_id");
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalOrdersByDay() {
|
||||
$implode = array();
|
||||
|
||||
foreach ($this->config->get('config_complete_status') as $order_status_id) {
|
||||
$implode[] = "'" . (int)$order_status_id . "'";
|
||||
}
|
||||
|
||||
$order_data = array();
|
||||
|
||||
for ($i = 0; $i < 24; $i++) {
|
||||
$order_data[$i] = array(
|
||||
'hour' => $i,
|
||||
'total' => 0
|
||||
);
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, HOUR(date_added) AS hour FROM `" . DB_PREFIX . "order` WHERE order_status_id IN(" . implode(",", $implode) . ") AND DATE(date_added) = DATE(NOW()) GROUP BY HOUR(date_added) ORDER BY date_added ASC");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$order_data[$result['hour']] = array(
|
||||
'hour' => $result['hour'],
|
||||
'total' => $result['total']
|
||||
);
|
||||
}
|
||||
|
||||
return $order_data;
|
||||
}
|
||||
|
||||
public function getTotalOrdersByWeek() {
|
||||
$implode = array();
|
||||
|
||||
foreach ($this->config->get('config_complete_status') as $order_status_id) {
|
||||
$implode[] = "'" . (int)$order_status_id . "'";
|
||||
}
|
||||
|
||||
$order_data = array();
|
||||
|
||||
$date_start = strtotime('-' . date('w') . ' days');
|
||||
|
||||
for ($i = 0; $i < 7; $i++) {
|
||||
$date = date('Y-m-d', $date_start + ($i * 86400));
|
||||
|
||||
$order_data[date('w', strtotime($date))] = array(
|
||||
'day' => date('D', strtotime($date)),
|
||||
'total' => 0
|
||||
);
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, date_added FROM `" . DB_PREFIX . "order` WHERE order_status_id IN(" . implode(",", $implode) . ") AND DATE(date_added) >= DATE('" . $this->db->escape(date('Y-m-d', $date_start)) . "') GROUP BY DAYNAME(date_added)");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$order_data[date('w', strtotime($result['date_added']))] = array(
|
||||
'day' => date('D', strtotime($result['date_added'])),
|
||||
'total' => $result['total']
|
||||
);
|
||||
}
|
||||
|
||||
return $order_data;
|
||||
}
|
||||
|
||||
public function getTotalOrdersByMonth() {
|
||||
$implode = array();
|
||||
|
||||
foreach ($this->config->get('config_complete_status') as $order_status_id) {
|
||||
$implode[] = "'" . (int)$order_status_id . "'";
|
||||
}
|
||||
|
||||
$order_data = array();
|
||||
|
||||
for ($i = 1; $i <= date('t'); $i++) {
|
||||
$date = date('Y') . '-' . date('m') . '-' . $i;
|
||||
|
||||
$order_data[date('j', strtotime($date))] = array(
|
||||
'day' => date('d', strtotime($date)),
|
||||
'total' => 0
|
||||
);
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, date_added FROM `" . DB_PREFIX . "order` WHERE order_status_id IN(" . implode(",", $implode) . ") AND DATE(date_added) >= '" . $this->db->escape(date('Y') . '-' . date('m') . '-1') . "' GROUP BY DATE(date_added)");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$order_data[date('j', strtotime($result['date_added']))] = array(
|
||||
'day' => date('d', strtotime($result['date_added'])),
|
||||
'total' => $result['total']
|
||||
);
|
||||
}
|
||||
|
||||
return $order_data;
|
||||
}
|
||||
|
||||
public function getTotalOrdersByYear() {
|
||||
$implode = array();
|
||||
|
||||
foreach ($this->config->get('config_complete_status') as $order_status_id) {
|
||||
$implode[] = "'" . (int)$order_status_id . "'";
|
||||
}
|
||||
|
||||
$order_data = array();
|
||||
|
||||
for ($i = 1; $i <= 12; $i++) {
|
||||
$order_data[$i] = array(
|
||||
'month' => date('M', mktime(0, 0, 0, $i)),
|
||||
'total' => 0
|
||||
);
|
||||
}
|
||||
|
||||
$query = $this->db->query("SELECT COUNT(*) AS total, date_added FROM `" . DB_PREFIX . "order` WHERE order_status_id IN(" . implode(",", $implode) . ") AND YEAR(date_added) = YEAR(NOW()) GROUP BY MONTH(date_added)");
|
||||
|
||||
foreach ($query->rows as $result) {
|
||||
$order_data[date('n', strtotime($result['date_added']))] = array(
|
||||
'month' => date('M', strtotime($result['date_added'])),
|
||||
'total' => $result['total']
|
||||
);
|
||||
}
|
||||
|
||||
return $order_data;
|
||||
}
|
||||
|
||||
public function getOrders($data = array()) {
|
||||
$sql = "SELECT MIN(o.date_added) AS date_start, MAX(o.date_added) AS date_end, COUNT(*) AS `orders`, SUM((SELECT SUM(op.quantity) FROM `" . DB_PREFIX . "order_product` op WHERE op.order_id = o.order_id GROUP BY op.order_id)) AS products, SUM((SELECT SUM(ot.value) FROM `" . DB_PREFIX . "order_total` ot WHERE ot.order_id = o.order_id AND ot.code = 'tax' GROUP BY ot.order_id)) AS tax, SUM(o.total) AS `total` FROM `" . DB_PREFIX . "order` o";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " WHERE o.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " WHERE o.order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_group'])) {
|
||||
$group = $data['filter_group'];
|
||||
} else {
|
||||
$group = 'week';
|
||||
}
|
||||
|
||||
switch($group) {
|
||||
case 'day';
|
||||
$sql .= " GROUP BY YEAR(o.date_added), MONTH(o.date_added), DAY(o.date_added)";
|
||||
break;
|
||||
default:
|
||||
case 'week':
|
||||
$sql .= " GROUP BY YEAR(o.date_added), WEEK(o.date_added)";
|
||||
break;
|
||||
case 'month':
|
||||
$sql .= " GROUP BY YEAR(o.date_added), MONTH(o.date_added)";
|
||||
break;
|
||||
case 'year':
|
||||
$sql .= " GROUP BY YEAR(o.date_added)";
|
||||
break;
|
||||
}
|
||||
|
||||
$sql .= " ORDER BY o.date_added DESC";
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalOrders($data = array()) {
|
||||
if (!empty($data['filter_group'])) {
|
||||
$group = $data['filter_group'];
|
||||
} else {
|
||||
$group = 'week';
|
||||
}
|
||||
|
||||
switch($group) {
|
||||
case 'day';
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(date_added), MONTH(date_added), DAY(date_added)) AS total FROM `" . DB_PREFIX . "order`";
|
||||
break;
|
||||
default:
|
||||
case 'week':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(date_added), WEEK(date_added)) AS total FROM `" . DB_PREFIX . "order`";
|
||||
break;
|
||||
case 'month':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(date_added), MONTH(date_added)) AS total FROM `" . DB_PREFIX . "order`";
|
||||
break;
|
||||
case 'year':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(date_added)) AS total FROM `" . DB_PREFIX . "order`";
|
||||
break;
|
||||
}
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " WHERE order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " WHERE order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function getTaxes($data = array()) {
|
||||
$sql = "SELECT MIN(o.date_added) AS date_start, MAX(o.date_added) AS date_end, ot.title, SUM(ot.value) AS total, COUNT(o.order_id) AS `orders` FROM `" . DB_PREFIX . "order` o LEFT JOIN `" . DB_PREFIX . "order_total` ot ON (ot.order_id = o.order_id) WHERE ot.code = 'tax'";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " AND o.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND o.order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_group'])) {
|
||||
$group = $data['filter_group'];
|
||||
} else {
|
||||
$group = 'week';
|
||||
}
|
||||
|
||||
switch($group) {
|
||||
case 'day';
|
||||
$sql .= " GROUP BY YEAR(o.date_added), MONTH(o.date_added), DAY(o.date_added), ot.title";
|
||||
break;
|
||||
default:
|
||||
case 'week':
|
||||
$sql .= " GROUP BY YEAR(o.date_added), WEEK(o.date_added), ot.title";
|
||||
break;
|
||||
case 'month':
|
||||
$sql .= " GROUP BY YEAR(o.date_added), MONTH(o.date_added), ot.title";
|
||||
break;
|
||||
case 'year':
|
||||
$sql .= " GROUP BY YEAR(o.date_added), ot.title";
|
||||
break;
|
||||
}
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalTaxes($data = array()) {
|
||||
if (!empty($data['filter_group'])) {
|
||||
$group = $data['filter_group'];
|
||||
} else {
|
||||
$group = 'week';
|
||||
}
|
||||
|
||||
switch($group) {
|
||||
case 'day';
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(o.date_added), MONTH(o.date_added), DAY(o.date_added), ot.title) AS total FROM `" . DB_PREFIX . "order` o";
|
||||
break;
|
||||
default:
|
||||
case 'week':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(o.date_added), WEEK(o.date_added), ot.title) AS total FROM `" . DB_PREFIX . "order` o";
|
||||
break;
|
||||
case 'month':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(o.date_added), MONTH(o.date_added), ot.title) AS total FROM `" . DB_PREFIX . "order` o";
|
||||
break;
|
||||
case 'year':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(o.date_added), ot.title) AS total FROM `" . DB_PREFIX . "order` o";
|
||||
break;
|
||||
}
|
||||
|
||||
$sql .= " LEFT JOIN `" . DB_PREFIX . "order_total` ot ON (o.order_id = ot.order_id) WHERE ot.code = 'tax'";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " AND o.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND o.order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
|
||||
public function getShipping($data = array()) {
|
||||
$sql = "SELECT MIN(o.date_added) AS date_start, MAX(o.date_added) AS date_end, ot.title, SUM(ot.value) AS total, COUNT(o.order_id) AS `orders` FROM `" . DB_PREFIX . "order` o LEFT JOIN `" . DB_PREFIX . "order_total` ot ON (o.order_id = ot.order_id) WHERE ot.code = 'shipping'";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " AND o.order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND o.order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_group'])) {
|
||||
$group = $data['filter_group'];
|
||||
} else {
|
||||
$group = 'week';
|
||||
}
|
||||
|
||||
switch($group) {
|
||||
case 'day';
|
||||
$sql .= " GROUP BY YEAR(o.date_added), MONTH(o.date_added), DAY(o.date_added), ot.title";
|
||||
break;
|
||||
default:
|
||||
case 'week':
|
||||
$sql .= " GROUP BY YEAR(o.date_added), WEEK(o.date_added), ot.title";
|
||||
break;
|
||||
case 'month':
|
||||
$sql .= " GROUP BY YEAR(o.date_added), MONTH(o.date_added), ot.title";
|
||||
break;
|
||||
case 'year':
|
||||
$sql .= " GROUP BY YEAR(o.date_added), ot.title";
|
||||
break;
|
||||
}
|
||||
|
||||
if (isset($data['start']) || isset($data['limit'])) {
|
||||
if ($data['start'] < 0) {
|
||||
$data['start'] = 0;
|
||||
}
|
||||
|
||||
if ($data['limit'] < 1) {
|
||||
$data['limit'] = 20;
|
||||
}
|
||||
|
||||
$sql .= " LIMIT " . (int)$data['start'] . "," . (int)$data['limit'];
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->rows;
|
||||
}
|
||||
|
||||
public function getTotalShipping($data = array()) {
|
||||
if (!empty($data['filter_group'])) {
|
||||
$group = $data['filter_group'];
|
||||
} else {
|
||||
$group = 'week';
|
||||
}
|
||||
|
||||
switch($group) {
|
||||
case 'day';
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(o.date_added), MONTH(o.date_added), DAY(o.date_added), ot.title) AS total FROM `" . DB_PREFIX . "order` o";
|
||||
break;
|
||||
default:
|
||||
case 'week':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(o.date_added), WEEK(o.date_added), ot.title) AS total FROM `" . DB_PREFIX . "order` o";
|
||||
break;
|
||||
case 'month':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(o.date_added), MONTH(o.date_added), ot.title) AS total FROM `" . DB_PREFIX . "order` o";
|
||||
break;
|
||||
case 'year':
|
||||
$sql = "SELECT COUNT(DISTINCT YEAR(o.date_added), ot.title) AS total FROM `" . DB_PREFIX . "order` o";
|
||||
break;
|
||||
}
|
||||
|
||||
$sql .= " LEFT JOIN `" . DB_PREFIX . "order_total` ot ON (o.order_id = ot.order_id) WHERE ot.code = 'shipping'";
|
||||
|
||||
if (!empty($data['filter_order_status_id'])) {
|
||||
$sql .= " AND order_status_id = '" . (int)$data['filter_order_status_id'] . "'";
|
||||
} else {
|
||||
$sql .= " AND order_status_id > '0'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_start'])) {
|
||||
$sql .= " AND DATE(o.date_added) >= '" . $this->db->escape($data['filter_date_start']) . "'";
|
||||
}
|
||||
|
||||
if (!empty($data['filter_date_end'])) {
|
||||
$sql .= " AND DATE(o.date_added) <= '" . $this->db->escape($data['filter_date_end']) . "'";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row['total'];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user