Server : Apache
System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64
User : www ( 1000)
PHP Version : 5.6.40
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Directory :  /www/wwwroot/saimikebio.com/mobile/ecshopjcw/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : /www/wwwroot/saimikebio.com/mobile/ecshopjcw/visit_sold.php
<?php



/**

 * ECSHOP 访问购买比例

 * ============================================================================

 * * 版权所有 2005-2012 上海商派网络科技有限公司,并保留所有权利。

 * 网站地址: http://www.ecshop.com;

 * ----------------------------------------------------------------------------

 * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和

 * 使用;不允许对程序代码以任何形式任何目的的再发布。

 * ============================================================================

 * $Author: liubo $

 * $Id: visit_sold.php 17217 2011-01-19 06:29:08Z liubo $

*/



define('IN_ECTOUCH', true);



require(dirname(__FILE__) . '/includes/init.php');

require_once(ROOT_PATH . 'include/lib_order.php');

require_once('../lang/' .$_CFG['lang']. '/admin/statistic.php');

$smarty->assign('lang',    $_LANG);



/* act操作项的初始化 */

if (empty($_REQUEST['act']))

{

    $_REQUEST['act'] = 'list';

}

else

{

    $_REQUEST['act'] = trim($_REQUEST['act']);

}



admin_priv('client_flow_stats');



/*------------------------------------------------------ */

//--访问购买比例

/*------------------------------------------------------ */

if ($_REQUEST['act'] == 'list' || $_REQUEST['act'] == 'download')

{

    /* 变量的初始化 */

    $cat_id   = (!empty($_REQUEST['cat_id']))   ? intval($_REQUEST['cat_id'])   : 0;

    $brand_id = (!empty($_REQUEST['brand_id'])) ? intval($_REQUEST['brand_id']) : 0;

    $show_num = (!empty($_REQUEST['show_num'])) ? intval($_REQUEST['show_num']) : 15;



    /* 获取访问购买的比例数据 */

    $click_sold_info = click_sold_info($cat_id, $brand_id, $show_num);



    /* 下载报表 */

    if ($_REQUEST['act'] == "download")

    {

        $filename = 'visit_sold';

        header("Content-type: application/vnd.ms-excel; charset=utf-8");

        header("Content-Disposition: attachment; filename=$filename.xls");

        $data = "$_LANG[visit_buy]\t\n";

        $data .= "$_LANG[order_by]\t$_LANG[goods_name]\t$_LANG[fav_exponential]\t$_LANG[buy_times]\t$_LANG[visit_buy]\n";

        foreach ($click_sold_info AS $k => $row)

        {

            $order_by = $k + 1;

            $data .= "$order_by\t$row[goods_name]\t$row[click_count]\t$row[sold_times]\t$row[scale]\n";

        }

        echo ecs_iconv(EC_CHARSET, 'GB2312', $data);

        exit;

    }



    /* 赋值到模板 */

    $smarty->assign('ur_here',      $_LANG['visit_buy_per']);



    $smarty->assign('show_num',         $show_num);

    $smarty->assign('brand_id',         $brand_id);

    $smarty->assign('click_sold_info',  $click_sold_info);



    $smarty->assign('cat_list',     cat_list(0, $cat_id));

    $smarty->assign('brand_list',   get_brand_list());



    $filename = 'visit_sold';

    $smarty->assign('action_link',  array('text' => $_LANG['download_visit_buy'], 'href' => 'visit_sold.php?act=download&show_num=' . $show_num . '&cat_id=' . $cat_id . '&brand_id=' . $brand_id . '&show_num=' . $show_num ));



    /* 显示页面 */

    assign_query_info();

    $smarty->display('visit_sold.htm');

}



/*------------------------------------------------------ */

//--订单统计需要的函数

/*------------------------------------------------------ */

/**

 * 取得访问和购买次数统计数据

 *

 * @param   int             $cat_id          分类编号

 * @param   int             $brand_id        品牌编号

 * @param   int             $show_num        显示个数

 * @return  array           $click_sold_info  访问购买比例数据

 */

 function click_sold_info($cat_id, $brand_id, $show_num)

 {

    global $db, $ecs;



    $where = " WHERE o.order_id = og.order_id AND g.goods_id = og.goods_id " . order_query_sql('finished', 'o.');

    $limit = " LIMIT " .$show_num;



    if ($cat_id > 0)

    {

        $where .= " AND " . get_children($cat_id);

    }

    if ($brand_id > 0)

    {

        $where .= " AND g.brand_id = '$brand_id' ";

    }



    $click_sold_info = array();

    $sql = "SELECT og.goods_id, g.goods_sn, g.goods_name, g.click_count,  COUNT(og.goods_id) AS sold_times ".

        " FROM ". $ecs->table('goods') ." AS g, ". $ecs->table('order_goods') ." AS og, " .$ecs->table('order_info') . " AS o " . $where .

        " GROUP BY og.goods_id ORDER BY g.click_count DESC " . $limit;

    $res = $db->query($sql);



    while ($item = $db->fetchRow($res))

    {

        if ($item['click_count'] <= 0)

        {

            $item['scale'] = 0;

        }

        else

        {

            /* 每一百个点击的订单比率 */

            $item['scale'] = sprintf("%0.2f", ($item['sold_times'] / $item['click_count']) * 100) .'%';

        }



        $click_sold_info[] = $item;

    }



    return $click_sold_info;

}



?>