fixes bug where sales volume is not incremented correctly
This commit is contained in:
parent
3dd673b1ec
commit
c26bc6b2df
|
|
@ -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);
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue