$distribution_channel_id,'begin_time'=>$date,'end_time'=>$end_time]);//total_recharge_amount $order_info = OrderService::getChannelDateOrderInfo($distribution_channel_id,$date); $data['unpaid_num'] = $order_info['total_num'] - $order_info['paid_number']; $data['paid_num'] = $order_info['paid_number']; $uv_pv = SendOrderService::getChannelPromotionTotalUvPv($distribution_channel_id,$date); $data['promotion_total_uv'] = $uv_pv['uv']; $data['promotion_total_pv'] = $uv_pv['pv']; $data['force_user_num'] = ForceSubscribeService::forceSubscribeUserCountByChannelIdAndDate($distribution_channel_id,$date,''); //普通充值数据 $ticket_recharge_data = OrderService::getChannelDayTicketRechargeData($distribution_channel_id, $date); $data['ticket_recharge_paid_num'] = $ticket_recharge_data['ticket_recharge_paid_num']; $data['ticket_recharge_unpaid_num'] = $ticket_recharge_data['ticket_recharge_unpaid_num']; $data['ticket_recharge_amount'] = $ticket_recharge_data['ticket_recharge_amount']; //包年充值数据 $year_recharge_data = OrderService::getChannelDayYearRechargeData($distribution_channel_id, $date); $data['year_recharge_paid_num'] = $year_recharge_data['year_recharge_paid_num']; $data['year_recharge_unpaid_num'] = $year_recharge_data['year_recharge_unpaid_num']; $data['year_recharge_amount'] = $year_recharge_data['year_recharge_amount']; //派单数 $data['send_order_num'] = SendOrderService::getChannelPromotionCount($distribution_channel_id, $date, $end_time); //实际派单数 $data['real_send_order_num'] = SendOrderService::getChannelRealPromotionCount($distribution_channel_id, $date, $end_time); //注册用户数 $data['register_user_num'] = UserService::getChannelDayTotal($distribution_channel_id,$date); //实际注册用户数 $data['real_register_user_num'] = $real_reg_num; //注册用户当日充值数据 $reg_user_data = DB::select("select count(distinct uid) num,sum(price) amount from orders,users where orders.distribution_channel_id = '{$distribution_channel_id}' and orders.created_at > '{$date}' and orders.created_at <= '{$end_time}' and status ='PAID' and users.id = orders.uid and users.created_at > '{$date}' and users.created_at < '{$end_time}'"); $data['reg_user_first_recharge_amount'] = (float)$reg_user_data[0]->amount; $data['reg_user_first_recharge_user_num'] = (float)$reg_user_data[0]->num; //渠道方通道充值总额 $not_in_pay_merchant_ids = env('not_in_pay_merchant_id'); if($not_in_pay_merchant_ids) { $channel_merchant_recharge_amount = DB::select("select sum(price) amount from orders where distribution_channel_id = '{$distribution_channel_id}' and created_at > '{$date}' and created_at <= '{$end_time}' and status ='PAID' and pay_merchant_id in ({$not_in_pay_merchant_ids})"); } $data['channel_merchant_recharge_amount'] = (float)$channel_merchant_recharge_amount[0]->amount; //首充数据 $first_recharge_data = OrderService::getChannelDayFirstRechargeData($distribution_channel_id,$date); $data['first_recharge_user_num'] = $first_recharge_data['count']; $data['first_recharge_amount'] = $first_recharge_data['amount']; //获取前天用户充值 $dayBeforeYesDay = OrderDayStat::where('distribution_channel_id',$distribution_channel_id) ->where('date',date('Y-m-d',strtotime($date.' -1 day'))) ->first(); //\Log::info(date('Y-m-d',strtotime($date.' -1 day'))); if($dayBeforeYesDay){ $dayBeforeYesDay = $dayBeforeYesDay->total_recharge_amount; $dayBeforeYesDayReal = OrderService::getAmount(['distribution_channel_id'=>$distribution_channel_id,'begin_time'=>date('Y-m-d',strtotime($date.' -1 day')),'end_time'=>date('Y-m-d',strtotime($date.' -1 day')).' 23:59:59']); $diff = $dayBeforeYesDayReal-$dayBeforeYesDay; if($diff>0){ $data['total_recharge_amount'] +=$diff; \Log::info('distribution_channel_recharge_regards_as_next_day_for_order_day_stats:distribution:'.$distribution_channel_id.':date:'.$date.':diff:'.$diff); } } return OrderDayStat::add($data); } /** * 查询日统计 * @param $params $distribution_channel_id */ static function search($params, $is_all=false) { return OrderDayStat::search($params, $is_all); } /** * 账户级别查询日统计 * @param $params $distribution_channel_id */ static function accountSearch($params, $is_all=false) { return OrderDayStat::accountSearch($params, $is_all); } /** * 获取渠道汇总统计 */ static function getSumByChannelId($distribution_channel_id) { return OrderDayStat::getSumByChannelId($distribution_channel_id); } /** * 获取昨日渠道汇总统计 */ static function getYesterdaySumByChannelId($distribution_channel_id) { return OrderDayStat::getYesterdaySumByChannelId($distribution_channel_id); } /** * 获取当月渠道汇总统计 */ static function getCurrentMonthSumByChannelId($distribution_channel_id) { return OrderDayStat::getCurrentMonthSumByChannelId($distribution_channel_id); } /** * 获取上月渠道汇总统计 */ static function getLastMonthSumByChannelId($distribution_channel_id) { return OrderDayStat::getLastMonthSumByChannelId($distribution_channel_id); } /** * 根据渠道获取合计 */ static function getStatByChannel($params) { return OrderDayStat::getStatByChannel($params); } /** * */ static function getAllGroupbyMonth() { return OrderDayStat::getAllGroupbyMonth(); } static function getAllGroupbyMonthChannel($params,$is_all=false) { return OrderDayStat::getAllGroupbyMonthChannel($params,$is_all); } /** * 获取外部渠道充值数据 * @param array $params * @param bool $isAll */ static function getOutPayData($params = [], $isAll = false) { return OrderDayStat::getOutPayData($params, $isAll); } static function getRechargeByChannels($distribution_channels,$time_range){ return OrderDayStat::getRechargeByChannels($distribution_channels,$time_range); } }