feat(TradeStatisticLogic): 修改TradeStatisticLogic,优化本月支付人数曲线查询
This commit is contained in:
parent
24fd63e880
commit
b8038b820a
@ -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");
|
||||
|
@ -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";
|
||||
|
Loading…
x
Reference in New Issue
Block a user