feat(TradeStatisticLogic): 修改TradeStatisticLogic,优化本月支付人数曲线查询

This commit is contained in:
mkm 2024-06-20 14:45:24 +08:00
parent 24fd63e880
commit b8038b820a
2 changed files with 1 additions and 2 deletions

View File

@ -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");

View File

@ -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";