123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <?php
- /**
- * 商户中心
- *
- * */
- defined('InShopNC') or exit('Access Invalid!');
- class seller_centerControl extends BaseSellerControl {
- /**
- * 构造方法
- *
- */
- public function __construct() {
- parent::__construct();
- }
- /**
- * 商户中心首页
- *
- */
- public function indexOp() {
- Language::read('member_home_index');
- // 店铺信息
- $store_info = $this->store_info;
- if(intval($store_info['store_end_time']) > 0) {
- $store_info['store_end_time_text'] = date('Y-m-d', $store_info['store_end_time']);
- $reopen_time = $store_info['store_end_time'] -3600*24 + 1 - TIMESTAMP;
- if (!checkPlatformStore() && $store_info['store_end_time'] - TIMESTAMP >= 0 && $reopen_time < 2592000) {
- //到期续签提醒(<30天)
- $store_info['reopen_tip'] = true;
- }
- } else {
- $store_info['store_end_time_text'] = L('store_no_limit');
- }
- // 店铺等级信息
- $store_info['grade_name'] = $this->store_grade['sg_name'];
- $store_info['grade_goodslimit'] = $this->store_grade['sg_goods_limit'];
- $store_info['grade_albumlimit'] = $this->store_grade['sg_album_limit'];
- Tpl::output('store_info',$store_info);
- // 商家帮助
- $model_help = Model('help');
- $condition = array();
- $condition['help_show'] = '1';//是否显示,0为否,1为是
- $help_list = $model_help->getStoreHelpTypeList($condition, '', 6);
- Tpl::output('help_list',$help_list);
- // 销售情况统计
- $field = ' COUNT(*) as ordernum,SUM(order_amount) as orderamount ';
- $where = array();
- $where['store_id'] = $_SESSION['store_id'];
- $where['order_isvalid'] = 1;//计入统计的有效订单
- // 昨日销量
- $where['order_add_time'] = array('between',array(strtotime(date('Y-m-d',(time()-3600*24))),strtotime(date('Y-m-d',time()))-1));
- $daily_sales = Model('stat')->getoneByStatorder($where, $field);
- Tpl::output('daily_sales', $daily_sales);
- // 月销量
- $where['order_add_time'] = array('gt',strtotime(date('Y-m',time())));
- $monthly_sales = Model('stat')->getoneByStatorder($where, $field);
- Tpl::output('monthly_sales', $monthly_sales);
- unset($field,$where);
- //单品销售排行
- //最近30天
- $stime = strtotime(date('Y-m-d',(time()-3600*24))) - (86400*29);//30天前
- $etime = strtotime(date('Y-m-d',time())) - 1;//昨天23:59
- $where = array();
- $where['store_id'] = $_SESSION['store_id'];
- $where['order_isvalid'] = 1;//计入统计的有效订单
- $where['order_add_time'] = array('between',array($stime,$etime));
- $field = ' goods_id,goods_name,SUM(goods_num) as goodsnum,goods_image ';
- $orderby = 'goodsnum desc,goods_id';
- $goods_list = Model('stat')->statByStatordergoods($where, $field, 0, 8, $orderby, 'goods_id');
- unset($stime,$etime,$where,$field,$orderby);
- Tpl::output('goods_list', $goods_list);
- if (!checkPlatformStore()) {
- if (C('groupbuy_allow') == 1){
- // 抢购套餐
- $groupquota_info = Model('groupbuy_quota')->getGroupbuyQuotaCurrent($_SESSION['store_id']);
- Tpl::output('groupquota_info', $groupquota_info);
- }
- if (intval(C('promotion_allow')) == 1){
- // 限时折扣套餐
- $xianshiquota_info = Model('p_xianshi_quota')->getXianshiQuotaCurrent($_SESSION['store_id']);
- Tpl::output('xianshiquota_info', $xianshiquota_info);
- // 满即送套餐
- $mansongquota_info = Model('p_mansong_quota')->getMansongQuotaCurrent($_SESSION['store_id']);
- Tpl::output('mansongquota_info', $mansongquota_info);
- // 优惠套装套餐
- $binglingquota_info = Model('p_bundling')->getBundlingQuotaInfoCurrent($_SESSION['store_id']);
- Tpl::output('binglingquota_info', $binglingquota_info);
- // 推荐展位套餐
- $boothquota_info = Model('p_booth')->getBoothQuotaInfoCurrent($_SESSION['store_id']);
- Tpl::output('boothquota_info', $boothquota_info);
- }
- if (C('voucher_allow') == 1){
- $voucherquota_info = Model('voucher')->getCurrentQuota($_SESSION['store_id']);
- Tpl::output('voucherquota_info', $voucherquota_info);
- }
- } else {
- Tpl::output('isOwnShop', true);
- }
- $phone_array = explode(',',C('site_phone'));
- Tpl::output('phone_array',$phone_array);
- Tpl::output('menu_sign','index');
- Tpl::showpage('index');
- }
- /**
- * 异步取得卖家统计类信息
- *
- */
- public function statisticsOp() {
- $add_time_to = strtotime(date("Y-m-d")+60*60*24); //当前日期 ,从零点来时
- $add_time_from = strtotime(date("Y-m-d",(strtotime(date("Y-m-d"))-60*60*24*30))); //30天前
- $goods_online = 0; // 出售中商品
- $goods_waitverify = 0; // 等待审核
- $goods_verifyfail = 0; // 审核失败
- $goods_offline = 0; // 仓库待上架商品
- $goods_lockup = 0; // 违规下架商品
- $consult = 0; // 待回复商品咨询
- $no_payment = 0; // 待付款
- $no_delivery = 0; // 待发货
- $no_receipt = 0; // 待收货
- $refund_lock = 0; // 售前退款
- $refund = 0; // 售后退款
- $return_lock = 0; // 售前退货
- $return = 0; // 售后退货
- $complain = 0; //进行中投诉
- $model_goods = Model('goods');
- // 全部商品数
- $goodscount = $model_goods->getGoodsCommonCount(array('store_id' => $_SESSION['store_id']));
- // 出售中的商品
- $goods_online = $model_goods->getGoodsCommonOnlineCount(array('store_id' => $_SESSION['store_id']));
- if (C('goods_verify')) {
- // 等待审核的商品
- $goods_waitverify = $model_goods->getGoodsCommonWaitVerifyCount(array('store_id' => $_SESSION['store_id']));
- // 审核失败的商品
- $goods_verifyfail = $model_goods->getGoodsCommonVerifyFailCount(array('store_id' => $_SESSION['store_id']));
- }
- // 仓库待上架的商品
- $goods_offline = $model_goods->getGoodsCommonOfflineCount(array('store_id' => $_SESSION['store_id']));
- // 违规下架的商品
- $goods_lockup = $model_goods->getGoodsCommonLockUpCount(array('store_id' => $_SESSION['store_id']));
- // 等待回复商品咨询
- $consult = Model('consult')->getConsultCount(array('store_id' => $_SESSION['store_id'], 'consult_reply' => ''));
- // 商品图片数量
- $imagecount = Model('album')->getAlbumPicCount(array('store_id' => $_SESSION['store_id']));
- $model_order = Model('order');
- // 交易中的订单
- $progressing = $model_order->getOrderCountByID('store',$_SESSION['store_id'],'TradeCount');
- // 待付款
- $no_payment = $model_order->getOrderCountByID('store',$_SESSION['store_id'],'NewCount');
- // 待发货
- $no_delivery = $model_order->getOrderCountByID('store',$_SESSION['store_id'],'PayCount');
- $model_refund_return = Model('refund_return');
- // 售前退款
- $condition = array();
- $condition['store_id'] = $_SESSION['store_id'];
- $condition['refund_type'] = 1;
- $condition['order_lock'] = 2;
- $condition['refund_state'] = array('lt', 3);
- $refund_lock = $model_refund_return->getRefundReturnCount($condition);
- // 售后退款
- $condition = array();
- $condition['store_id'] = $_SESSION['store_id'];
- $condition['refund_type'] = 1;
- $condition['order_lock'] = 1;
- $condition['refund_state'] = array('lt', 3);
- $refund = $model_refund_return->getRefundReturnCount($condition);
- // 售前退货
- $condition = array();
- $condition['store_id'] = $_SESSION['store_id'];
- $condition['refund_type'] = 2;
- $condition['order_lock'] = 2;
- $condition['refund_state'] = array('lt', 3);
- $return_lock = $model_refund_return->getRefundReturnCount($condition);
- // 售后退货
- $condition = array();
- $condition['store_id'] = $_SESSION['store_id'];
- $condition['refund_type'] = 2;
- $condition['order_lock'] = 1;
- $condition['refund_state'] = array('lt', 3);
- $return = $model_refund_return->getRefundReturnCount($condition);
- $condition = array();
- $condition['accused_id'] = $_SESSION['store_id'];
- $condition['complain_state'] = array(array('gt',10),array('lt',90),'and');
- $complain = Model()->table('complain')->where($condition)->count();
- //待确认的结算账单
- $model_bill = Model('bill');
- $condition = array();
- $condition['ob_store_id'] = $_SESSION['store_id'];
- $condition['ob_state'] = BILL_STATE_CREATE;
- $bill_confirm_count = $model_bill->getOrderBillCount($condition);
- //统计数组
- $statistics = array(
- 'goodscount' => $goodscount,
- 'online' => $goods_online,
- 'waitverify' => $goods_waitverify,
- 'verifyfail' => $goods_verifyfail,
- 'offline' => $goods_offline,
- 'lockup' => $goods_lockup,
- 'imagecount' => $imagecount,
- 'consult' => $consult,
- 'progressing' => $progressing,
- 'payment' => $no_payment,
- 'delivery' => $no_delivery,
- 'refund_lock' => $refund_lock,
- 'refund' => $refund,
- 'return_lock' => $return_lock,
- 'return' => $return,
- 'complain' => $complain,
- 'bill_confirm' => $bill_confirm_count
- );
- exit(json_encode($statistics));
- }
- /**
- * 添加快捷操作
- */
- function quicklink_addOp() {
- if(!empty($_POST['item'])) {
- $_SESSION['seller_quicklink'][$_POST['item']] = $_POST['item'];
- }
- $this->_update_quicklink();
- echo 'true';
- }
- /**
- * 删除快捷操作
- */
- function quicklink_delOp() {
- if(!empty($_POST['item'])) {
- unset($_SESSION['seller_quicklink'][$_POST['item']]);
- }
- $this->_update_quicklink();
- echo 'true';
- }
- private function _update_quicklink() {
- $quicklink = implode(',', $_SESSION['seller_quicklink']);
- $update_array = array('seller_quicklink' => $quicklink);
- $condition = array('seller_id' => $_SESSION['seller_id']);
- $model_seller = Model('seller');
- $model_seller->editSeller($update_array, $condition);
- }
- }
|