123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- global $_GPC, $_W;
- $GLOBALS['frames'] = $this->getMainMenu();
- $storeid = $_COOKIE["storeid"];
- $time = date("Y-m-d");
- $where = " and time like '%{$time}%'";
- $where3 = " and a.time like '%{$time}%'";
- $where2 = " where time like '%{$time}%'";
- if (!empty($_GPC['time'])) {
- $start = strtotime($_GPC['time']['start']);
- $end = strtotime($_GPC['time']['end']);
- $where = " and UNIX_TIMESTAMP(time)>=" . $start . " and UNIX_TIMESTAMP(time)<=" . $end;
- $where3 = " and UNIX_TIMESTAMP(a.time)>=" . $start . " and UNIX_TIMESTAMP(a.time)<=" . $end;
- $where2 = " where UNIX_TIMESTAMP(time)>=" . $start . " and UNIX_TIMESTAMP(time)<=" . $end;
- }
- $jrtmoney = 0;
- //今日销售金额
- //今日订单销售金额
- $sql7 = " select sum(a.money) as ordermoney from (select id,money,FROM_UNIXTIME(time) as time from" . tablename('zhtc_order') . " where uniacid={$_W['uniacid']} and state in (2,3,4,5,7)) a " . $where2;
- $ordermoney = pdo_fetch($sql7);
- //商家入驻的钱
- $sql8 = " select sum(money) as storemoney from" . tablename('zhtc_storepaylog') . " where uniacid={$_W['uniacid']} " . $where;
- $storemoney = pdo_fetch($sql8);
- //帖子入驻加置顶
- $sql9 = " select sum(money) as tzmoney from" . tablename('zhtc_tzpaylog') . " where uniacid={$_W['uniacid']} " . $where . " and note!='红包福利' ";
- $tzmoney = pdo_fetch($sql9);
- // //红包
- // $sql13=" select sum(money) as hbmoney from".tablename('zhtc_tzpaylog')." where uniacid={$_W['uniacid']} ".$where." and note='红包福利' ";
- // $hbmoney=pdo_fetch($sql13);
- $sql5 = " select a.* from (select id,hb_money,hb_num,hb_type,hb_random,FROM_UNIXTIME(sh_time) as time from" . tablename('zhtc_information') . " where uniacid={$_W['uniacid']} and state=2) a " . $where2;
- $tzinfo = pdo_fetchall($sql5);
- $jrtz = count($tzinfo);
- $hbmoney = 0;
- if ($tzinfo) {
- foreach ($tzinfo as $v) {
- if ($v['hb_random'] == 1) {
- $hbmoney += $v['hb_money'];
- }
- if ($v['hb_random'] == 2) {
- $hbmoney += $v['hb_money'] * $v['hb_num'];
- }
- }
- }
- //拼车发布的钱
- $sql10 = " select sum(money) as pcmoney from" . tablename('zhtc_carpaylog') . " where uniacid={$_W['uniacid']} " . $where . " ";
- $pcmoney = pdo_fetch($sql10);
- //114入驻的钱
- $sql11 = " select sum(money) as hymoney from" . tablename('zhtc_yellowpaylog') . " where uniacid={$_W['uniacid']} " . $where . " ";
- $hymoney = pdo_fetch($sql11);
- //合伙人的钱
- $zttime = strtotime(date("Y-m-d", strtotime("+1 day")));
- $jttime = strtotime(date("Y-m-d"));
- $sql12 = " select sum(a.money) as hhrmoney from" . tablename('zhtc_fxlog') . " a" . " left join " . tablename("zhtc_user") . " b on b.id=a.user_id where b.uniacid={$_W['uniacid']} and a.state=2" . $where3;
- $hhrmoney = pdo_fetch($sql12);
- if (!empty($_GPC['time'])) {
- $start = strtotime($_GPC['time']['start']);
- $end = strtotime($_GPC['time']['end']);
- $sql13 = " select sum(money) as callmoney from" . tablename('zhtc_call') . " where uniacid={$_W['uniacid']} AND state=2 AND time>=" . $start . " and time<=" . $end;
- $callmoney = pdo_fetch($sql13);
- } else {
- $start = strtotime(date('Y-m-d', time()));
- $end = strtotime(date('Y-m-d', time())) + 3600 * 24;
- $sql13 = " select sum(money) as callmoney from" . tablename('zhtc_call') . " where uniacid={$_W['uniacid']} AND state=2 AND time>=" . $start . " and time<=" . $end;
- $callmoney = pdo_fetch($sql13);
- }
- //今日总金额
- $jrtmoney = $ordermoney['ordermoney'] + $storemoney['storemoney'] + $tzmoney['tzmoney'] + $pcmoney['pcmoney'] + $hymoney['hymoney'] + $hhrmoney['hhrmoney'] + $hbmoney;
- include $this->template('web/xsdata');
|