123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <?php
- namespace app\admin\model\record;
- use crmeb\traits\ModelTrait;
- use crmeb\basic\BaseModel;
- use app\models\user\UserBill;
- use crmeb\services\PHPExcelService;
- class StoreStatistics extends BaseModel
- {
- /**
- * 数据表主键
- * @var string
- */
- protected $pk = 'id';
- /**
- * 模型名称
- * @var string
- */
- protected $name = 'store_order';
- use ModelTrait;
- /**
- * 处理金额
- * @param $where
- * @return array
- */
- public static function getOrderPrice($where)
- {
- $model = new self;
- $price = array();
- $price['pay_price_wx'] = 0;//微信支付金额
- $price['pay_price_yue'] = 0;//余额支付金额
- $price['pay_price_offline'] = 0;//线下支付金额
- $list = self::getTimeWhere($where, $model)->field('pay_price,total_price,deduction_price,coupon_price,total_postage,pay_type,pay_time')->select()->toArray();
- if (empty($list)) {
- $price['pay_price_wx'] = 0;
- $price['pay_price_yue'] = 0;
- $price['pay_price_offline'] = 0;
- }
- foreach ($list as $v) {
- if ($v['pay_type'] == 'weixin') {
- $price['pay_price_wx'] = bcadd($price['pay_price_wx'], $v['pay_price'], 2);
- } elseif ($v['pay_type'] == 'yue') {
- $price['pay_price_yue'] = bcadd($price['pay_price_yue'], $v['pay_price'], 2);
- } elseif ($v['pay_type'] == 'offline') {
- $price['pay_price_offline'] = bcadd($price['pay_price_offline'], $v['pay_price'], 2);
- }
- }
- return $price;
- }
- /**
- * 获取营业数据
- */
- public static function getOrderInfo($where)
- {
- $orderinfo = self::getTimeWhere($where)
- ->field('sum(total_price) total_price,sum(cost) cost,sum(pay_postage) pay_postage,sum(pay_price) pay_price,sum(coupon_price) coupon_price,sum(deduction_price) deduction_price,from_unixtime(pay_time,\'%Y-%m-%d\') pay_time')
- ->order('pay_time')->where('paid',1)->where('refund_status',0)
- ->group('from_unixtime(pay_time,\'%Y-%m-%d\')')->select()->toArray();
- $price = 0;
- $postage = 0;
- $deduction = 0;
- $coupon = 0;
- $cost = 0;
- foreach ($orderinfo as $info) {
- $price = bcadd($price, $info['total_price'], 2);//应支付
- $postage = bcadd($postage, $info['pay_postage'], 2);//邮费
- $deduction = bcadd($deduction, $info['deduction_price'], 2);//抵扣
- $coupon = bcadd($coupon, $info['coupon_price'], 2);//优惠券
- $cost = bcadd($cost, $info['cost'], 2);//成本
- }
- return compact('orderinfo', 'price', 'postage', 'deduction', 'coupon', 'cost');
- }
- /**
- * 处理where条件
- */
- public static function statusByWhere($status, $model = null)
- {
- if ($model == null) $model = new self;
- if ('' === $status)
- return $model;
- else if ($status == 'weixin')//微信支付
- return $model->where('pay_type', 'weixin');
- else if ($status == 'yue')//余额支付
- return $model->where('pay_type', 'yue');
- else if ($status == 'offline')//线下支付
- return $model->where('pay_type', 'offline');
- else
- return $model;
- }
- public static function getTimeWhere($where, $model = null)
- {
- return self::getTime($where)->where('paid', 1)->where('refund_status', 0);
- }
- /**
- * 获取时间区间
- */
- public static function getTime($where,$model=null,$prefix='add_time'){
- if ($model == null) $model = new self;
- if(!$where['date'] && !$where['data']) return $model;
- if ($where['data'] == '' && $where['date']) {
- $limitTimeList = [
- 'today'=>implode(' - ',[date('Y/m/d'),date('Y/m/d',strtotime('+1 day'))]),
- 'week'=>implode(' - ',[
- date('Y/m/d', (time() - ((date('w') == 0 ? 7 : date('w')) - 1) * 24 * 3600)),
- date('Y-m-d', (time() + (7 - (date('w') == 0 ? 7 : date('w'))) * 24 * 3600))
- ]),
- 'month'=>implode(' - ',[date('Y/m').'/01',date('Y/m').'/'.date('t')]),
- 'quarter'=>implode(' - ',[
- date('Y').'/'.(ceil((date('n'))/3)*3-3+1).'/01',
- date('Y').'/'.(ceil((date('n'))/3)*3).'/'.date('t',mktime(0,0,0,(ceil((date('n'))/3)*3),1,date('Y')))
- ]),
- 'year'=>implode(' - ',[
- date('Y').'/01/01',date('Y/m/d',strtotime(date('Y').'/01/01 + 1year -1 day'))
- ])
- ];
- $where['data'] = $limitTimeList[$where['date']];
- }
- list($startTime, $endTime) = explode(' - ', $where['data']);
- $model = $model->where($prefix, '>=', strtotime($startTime . ' 00:00:00'));
- $model = $model->where($prefix, '<=', strtotime($endTime . ' 23:59:59'));
- return $model;
- }
- /**
- * 获取新增消费
- */
- public static function getConsumption($where)
- {
- $consumption=self::getTime($where,new UserBill,'b.add_time')->alias('a')->join('user b','a.uid = b.uid')
- ->field('sum(a.number) number')
- ->where('a.type','pay_product')->find()->toArray();
- return $consumption;
- }
- /**
- * 获取拼团商品
- */
- public static function getPink($where)
- {
- $pink = self::getTimeWhere($where)->where('pink_id', '<>', 0)->sum('pay_price');
- return $pink;
- }
- /**
- * 获取秒杀商品
- */
- public static function getSeckill($where){
- $seckill=self::getTimeWhere($where)->where('seckill_id', '<>', 0)->sum('pay_price');
- return $seckill;
- }
- /**
- * 获取普通商品数
- */
- public static function getOrdinary($where)
- {
- $ordinary = self::getTimeWhere($where)->where('pink_id', 0)->where('seckill_id','0')->sum('pay_price');
- return $ordinary;
- }
- /**
- * 获取用户充值
- */
- public static function getRecharge($where)
- {
- $Recharge = self::getTime($where,new UserBill)->where('type', 'system_add')->where('category','now_money')->sum('number');
- return $Recharge;
- }
- /**
- * 获取推广金
- */
- public static function getExtension($where)
- {
- $extension = self::getTime($where,new UserBill)->where('type', 'brokerage')->where('category','now_money')->sum('number');
- return $extension;
- }
- /**
- * 最近交易
- */
- public static function trans()
- {
- $trans = self::alias('a')
- ->join('user b', 'a.uid=b.uid','left')
- ->join('store_order_cart_info c', 'a.id=c.oid')
- ->join('store_product d', 'c.product_id=d.id')
- ->field('b.nickname,a.pay_price,d.store_name')
- ->order('a.add_time DESC')
- ->limit('6')
- ->select()->toArray();
- return $trans;
- }
- /**
- * 导出表格
- */
- public static function systemTable($where){
- $orderinfos=self::getOrderInfo($where);
- if($where['export'] == 1){
- $export = [];
- $orderinfo=$orderinfos['orderinfo'];
- foreach($orderinfo as $info){
- $time=$info['pay_time'];
- $price = $info['total_price']+$info['pay_postage'];
- $zhichu = $info['coupon_price']+$info['deduction_price']+$info['cost'];
- $profit = ($info['total_price']+$info['pay_postage'])-($info['coupon_price']+$info['deduction_price']+$info['cost']);
- $deduction=$info['deduction_price'];//积分抵扣
- $coupon=$info['coupon_price'];//优惠
- $cost=$info['cost'];//成本
- $export[] = [$time,$price,$zhichu,$cost,$coupon,$deduction,$profit];
- }
- // ExportService::exportCsv($export,'统计'.time(),['时间','营业额(元)','支出(元)','成本','优惠','积分抵扣','盈利(元)']);
- dump($export);
- PHPExcelService::setExcelHeader(['时间','营业额(元)','支出(元)','成本','优惠','积分抵扣','盈利(元)'])->setExcelTile('财务统计', '财务统计',date('Y-m-d H:i:s',time()))->setExcelContent($export)->ExcelSave();
- }
- }
- }
|