Announcement

Collapse
No announcement yet.

Add net clicks on campaign statistics

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Add net clicks on campaign statistics

    Add net clicks on campaign statistics group by email

  • #2
    I was investigating, in fact it is a bug:

    PHP Code:
    $clickedCount $this->getEntityManager()->getRepository('CampaignLogRecord')->where(array(
                
    'campaignId' => $entity->id,
                
    'action' => 'Clicked',
                
    'isTest' => false,
                
    'groupBy' => ['queueItemId']
            ))->
    count();
            
    $entity->set('clickedCount'$clickedCount); 
    This query return the "Image 1" picture.

    The query should be like "Image 2" picture.

    Comment

    Working...
    X