sales_report.php
来自「PHP 建站工具,CMS系统,类似与oscommerce」· PHP 代码 · 共 262 行
PHP
262 行
<?php
/* --------------------------------------------------------------
$Id: sales_report.php,v 1.2 2004/03/11 23:29:53 oldpa Exp $
TWE-Commerce - community made shopping
http://www.oldpa.com.twCopyright (c) 2003 TWE-Commerce
--------------------------------------------------------------
based on:
(c) 2000-2001 The Exchange Project (earlier name of osCommerce)
(c) 2002-2003 osCommerce coding standards; www.oscommerce.com
Released under the GNU General Public License
--------------------------------------------------------------
Third Party contribution:
stats_sales_report (c) Charly Wilhelm charly@yoshi.ch
possible views (srView):
1 yearly
2 monthly
3 weekly
4 daily
possible options (srDetail):
0 no detail
1 show details (products)
2 show details only (products)
export
0 normal view
1 html view without left and right
2 csv
sort
0 no sorting
1 product description asc
2 product description desc
3 #product asc, product descr asc
4 #product desc, product descr desc
5 revenue asc, product descr asc
6 revenue desc, product descr des
Released under the GNU General Public License
--------------------------------------------------------------*/
class sales_report {
var $mode, $globalStartDate, $startDate, $endDate, $actDate, $showDate, $showDateEnd, $sortString, $status, $outlet;
function sales_report($mode, $startDate = 0, $endDate = 0, $sort = 0, $statusFilter = 0, $filter = 0) {
// startDate and endDate have to be a unix timestamp. Use mktime !
// if set then both have to be valid startDate and endDate
$this->mode = $mode;
$this->tax_include = DISPLAY_PRICE_WITH_TAX;
$this->statusFilter = $statusFilter;
// get date of first sale
$firstQuery = twe_db_query("select UNIX_TIMESTAMP(min(date_purchased)) as first FROM " . TABLE_ORDERS);
$first = twe_db_fetch_array($firstQuery);
$this->globalStartDate = mktime(0, 0, 0, date("m", $first['first']), date("d", $first['first']), date("Y", $first['first']));
$statusQuery = twe_db_query("select * from orders_status where language_id='".$_SESSION['languages_id']."'");
$i = 0;
while ($outResp = twe_db_fetch_array($statusQuery)) {
$status[$i] = $outResp;
$i++;
}
$this->status = $status;
if ($startDate == 0 or $startDate < $this->globalStartDate) {
// set startDate to globalStartDate
$this->startDate = $this->globalStartDate;
} else {
$this->startDate = $startDate;
}
if ($this->startDate > mktime(0, 0, 0, date("m"), date("d"), date("Y"))) {
$this->startDate = mktime(0, 0, 0, date("m"), date("d"), date("Y"));
}
if ($endDate > mktime(0, 0, 0, date("m"), date("d") + 1, date("Y"))) {
// set endDate to tomorrow
$this->endDate = mktime(0, 0, 0, date("m"), date("d") + 1, date("Y"));
} else {
$this->endDate = $endDate;
}
if ($this->endDate < $this->startDate + 24 * 60 * 60) {
$this->endDate = $this->startDate + 24 * 60 * 60;
}
$this->actDate = $this->startDate;
// query for order count
$this->queryOrderCnt = "SELECT count(o.orders_id) as order_cnt FROM " . TABLE_ORDERS . " o";
// queries for item details count
$this->queryItemCnt = "SELECT o.orders_id, op.products_id as pid, op.orders_products_id, op.products_name as pname, sum(op.products_quantity) as pquant, sum(op.final_price * op.products_quantity) as psum, op.products_tax as ptax FROM " . TABLE_ORDERS . " o, " . TABLE_ORDERS_PRODUCTS . " op WHERE o.orders_id = op.orders_id";
// query for attributes
$this->queryAttr = "SELECT count(op.products_id) as attr_cnt, o.orders_id, opa.orders_products_id, opa.products_options, opa.products_options_values, opa.options_values_price, opa.price_prefix from " . TABLE_ORDERS_PRODUCTS_ATTRIBUTES . " opa, " . TABLE_ORDERS . " o, " . TABLE_ORDERS_PRODUCTS . " op WHERE o.orders_id = opa.orders_id AND op.orders_products_id = opa.orders_products_id";
// query for shipping
$this->queryShipping = "SELECT sum(ot.value) as shipping FROM " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot WHERE ot.orders_id = o.orders_id AND ot.class = 'ot_shipping'";
switch ($sort) {
case '0':
$this->sortString = "";
break;
case '1':
$this->sortString = " order by pname asc ";
break;
case '2':
$this->sortString = " order by pname desc";
break;
case '3':
$this->sortString = " order by pquant asc, pname asc";
break;
case '4':
$this->sortString = " order by pquant desc, pname asc";
break;
case '5':
$this->sortString = " order by psum asc, pname asc";
break;
case '6':
$this->sortString = " order by psum desc, pname asc";
break;
}
}
function getNext() {
switch ($this->mode) {
// yearly
case '1':
$sd = $this->actDate;
$ed = mktime(0, 0, 0, date("m", $sd), date("d", $sd), date("Y", $sd) + 1);
break;
// monthly
case '2':
$sd = $this->actDate;
$ed = mktime(0, 0, 0, date("m", $sd) + 1, 1, date("Y", $sd));
break;
// weekly
case '3':
$sd = $this->actDate;
$ed = mktime(0, 0, 0, date("m", $sd), date("d", $sd) + 7, date("Y", $sd));
break;
// daily
case '4':
$sd = $this->actDate;
$ed = mktime(0, 0, 0, date("m", $sd), date("d", $sd) + 1, date("Y", $sd));
break;
}
if ($ed > $this->endDate) {
$ed = $this->endDate;
}
$filterString = "";
if ($this->statusFilter > 0) {
$filterString .= " AND o.orders_status = " . $this->statusFilter . " ";
}
$rqOrders = twe_db_query($this->queryOrderCnt . " WHERE o.date_purchased >= '" . twe_db_input(date("Y-m-d\TH:i:s", $sd)) . "' AND o.date_purchased < '" . twe_db_input(date("Y-m-d\TH:i:s", $ed)) . "'" . $filterString);
$order = twe_db_fetch_array($rqOrders);
$rqShipping = twe_db_query($this->queryShipping . " AND o.date_purchased >= '" . twe_db_input(date("Y-m-d\TH:i:s", $sd)) . "' AND o.date_purchased < '" . twe_db_input(date("Y-m-d\TH:i:s", $ed)) . "'" . $filterString);
$shipping = twe_db_fetch_array($rqShipping);
$rqItems = twe_db_query($this->queryItemCnt . " AND o.date_purchased >= '" . twe_db_input(date("Y-m-d\TH:i:s", $sd)) . "' AND o.date_purchased < '" . twe_db_input(date("Y-m-d\TH:i:s", $ed)) . "'" . $filterString . " group by pid " . $this->sortString);
// set the return values
$this->actDate = $ed;
$this->showDate = $sd;
$this->showDateEnd = $ed - 60 * 60 * 24;
// execute the query
$cnt = 0;
$itemTot = 0;
$sumTot = 0;
while ($resp[$cnt] = twe_db_fetch_array($rqItems)) {
// to avoid rounding differences round for every quantum
// multiply with the number of items afterwords.
$price = $resp[$cnt]['psum'] / $resp[$cnt]['pquant'];
// products_attributes
// are there any attributes for this order_id ?
$rqAttr = twe_db_query($this->queryAttr . " AND o.date_purchased >= '" . twe_db_input(date("Y-m-d\TH:i:s", $sd)) . "' AND o.date_purchased < '" . twe_db_input(date("Y-m-d\TH:i:s", $ed)) . "' AND op.products_id = " . $resp[$cnt]['pid'] . $filterString . " group by products_options_values order by orders_products_id");
$i = 0;
while ($attr[$i] = twe_db_fetch_array($rqAttr)) {
$i++;
}
// values per date
if ($i > 0) {
$price2 = 0;
$price3 = 0;
$option = array();
$k = -1;
$ord_pro_id_old = 0;
for ($j = 0; $j < $i; $j++) {
if ($attr[$j]['price_prefix'] == "-") {
$price2 += (-1) * $attr[$j]['options_values_price'];
$price3 = (-1) * $attr[$j]['options_values_price'];
$prefix = "-";
} else {
$price2 += $attr[$j]['options_values_price'];
$price3 = $attr[$j]['options_values_price'];
$prefix = "+";
}
$ord_pro_id = $attr[$j]['orders_products_id'];
if ( $ord_pro_id != $ord_pro_id_old) {
$k++;
$l = 0;
// set values
$option[$k]['quant'] = $attr[$j]['attr_cnt'];
$option[$k]['options'][0] = $attr[$j]['products_options'];
$option[$k]['options_values'][0] = $attr[$j]['products_options_values'];
if ($price3 != 0) {
//$option[$k]['price'][0] = twe_add_tax($price3, $resp[$cnt]['ptax']);
$option[$k]['price'][0] = $price3;
} else {
$option[$k]['price'][0] = 0;
}
} else {
$l++;
// update values
$option[$k]['options'][$l] = $attr[$j]['products_options'];
$option[$k]['options_values'][$l] = $attr[$j]['products_options_values'];
if ($price3 != 0) {
//$option[$k]['price'][$l] = twe_add_tax($price3, $resp[$cnt]['ptax']);
$option[$k]['price'][$l] = $price3;
} else {
$option[$k]['price'][$l] = 0;
}
}
$ord_pro_id_old = $ord_pro_id;
}
// set attr value
$resp[$cnt]['attr'] = $option;
} else {
$resp[$cnt]['attr'] = "";
}
//$resp[$cnt]['price'] = twe_add_tax($price, $resp[$cnt]['ptax']);
//$resp[$cnt]['psum'] = $resp[$cnt]['pquant'] * twe_add_tax($price, $resp[$cnt]['ptax']);
$resp[$cnt]['price'] = $price;
$resp[$cnt]['psum'] = $resp[$cnt]['pquant'] * $price;
$resp[$cnt]['order'] = $order['order_cnt'];
$resp[$cnt]['shipping'] = $shipping['shipping'];
// values per date and item
$sumTot += $resp[$cnt]['psum'];
$itemTot += $resp[$cnt]['pquant'];
// add totsum and totitem until current row
$resp[$cnt]['totsum'] = $sumTot;
$resp[$cnt]['totitem'] = $itemTot;
$cnt++;
}
return $resp;
}
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?