mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Improvements to analytics
This commit is contained in:
parent
6fd4f85b11
commit
52fb4ae7c2
@ -28,13 +28,14 @@ class AnalyticsListener
|
|||||||
$analyticsId = env('ANALYTICS_KEY');
|
$analyticsId = env('ANALYTICS_KEY');
|
||||||
$client = $payment->client;
|
$client = $payment->client;
|
||||||
$amount = $payment->amount;
|
$amount = $payment->amount;
|
||||||
|
$item = $invoice->invoice_items->last()->product_key;
|
||||||
|
|
||||||
$base = "v=1&tid={$analyticsId}&cid={$client->public_id}&cu=USD&ti={$invoice->invoice_number}";
|
$base = "v=1&tid={$analyticsId}&cid={$client->public_id}&cu=USD&ti={$invoice->invoice_number}";
|
||||||
|
|
||||||
$url = $base . "&t=transaction&ta=ninja&tr={$amount}";
|
$url = $base . "&t=transaction&ta=ninja&tr={$amount}";
|
||||||
$this->sendAnalytics($url);
|
$this->sendAnalytics($url);
|
||||||
|
|
||||||
$url = $base . "&t=item&in=plan&ip={$amount}&iq=1";
|
$url = $base . "&t=item&in={$item}&ip={$amount}&iq=1";
|
||||||
$this->sendAnalytics($url);
|
$this->sendAnalytics($url);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user