From 9042b678dad82079e37aaffcf563d23f55f3853b Mon Sep 17 00:00:00 2001 From: hujiabin <519660157@qq.com> Date: Mon, 8 Jul 2024 15:16:42 +0800 Subject: [PATCH] 1 --- webapp/controller/BagController.class.php | 9 +++++++++ 1 file changed, 9 insertions(+) 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(),