diff --git a/webapp/controller/BagController.class.php b/webapp/controller/BagController.class.php index 5fa14b44..b96bb73f 100644 --- a/webapp/controller/BagController.class.php +++ b/webapp/controller/BagController.class.php @@ -443,6 +443,15 @@ class BagController extends BaseAuthedController { )); $this->_addItems($hashItems,$this->awardService,$this->propertyChgService); $this->propertyChgService->addBagChg(); + $event = array( + 'ID' => 'OpenBox', + 'boxInfo' => array( + 'item_id' => $itemMeta['id'], + 'item_num' => $itemNum + ), + 'result' => $hashItems, + ); + LogService::burialPointEvent($event); $this->_rspData(array( 'award' => $this->awardService->toDto(), 'property_chg' => $this->propertyChgService->toDto(),