fixes bug where sales volume is not incremented correctly

This commit is contained in:
Jeremy Quinton 2018-09-11 21:57:52 +02:00
parent 3dd673b1ec
commit c26bc6b2df
1 changed files with 1 additions and 1 deletions

View File

@ -561,7 +561,7 @@ class EventCheckoutController extends Controller
/*
* Update the event sales volume
*/
$event->increment('sales_volume', $order->amount);
$event->increment('sales_volume', $orderService->getGrandTotal());
$event->increment('organiser_fees_volume', $order->organiser_booking_fee);
/*