diff --git a/app/admin/logic/statistic/TradeStatisticLogic.php b/app/admin/logic/statistic/TradeStatisticLogic.php index f49e0949..3f12eb7c 100644 --- a/app/admin/logic/statistic/TradeStatisticLogic.php +++ b/app/admin/logic/statistic/TradeStatisticLogic.php @@ -151,7 +151,6 @@ class TradeStatisticLogic extends BaseLogic //本月支付人数曲线 $monthCurveOrderPeople = $storeOrder->getCurveData($monthOrderPeopleWhere, $where, 'count(distinct uid)'); - $monthCurveOrderPeople = $this->trendYdata((array)$monthCurveOrderPeople, $timeKey); //上月支付人数 // $timeKey = $this->TimeConvert("last_month"); diff --git a/app/common/model/store_order/StoreOrder.php b/app/common/model/store_order/StoreOrder.php index da627b07..f057b50c 100644 --- a/app/common/model/store_order/StoreOrder.php +++ b/app/common/model/store_order/StoreOrder.php @@ -95,7 +95,7 @@ class StoreOrder extends BaseModel public function getCurveData($where,$time,$str) { return $this->where($where) - ->when(isset($where['timeKey']), function ($query) use ($time,$str) { + ->when(isset($time['timeKey']), function ($query) use ($time,$str) { $query->whereBetweenTime('create_time', $time['timeKey']['start_time'], $time['timeKey']['end_time']); if ($time['timeKey']['days'] == 1) { $timeUinx = "%H";