|
|
@@ -26,6 +26,7 @@ import com.zanxiang.game.back.serve.utils.OrderUtil;
|
|
|
import com.zanxiang.game.module.base.ServerInfo;
|
|
|
import com.zanxiang.game.module.base.pojo.vo.AgentRpcVO;
|
|
|
import com.zanxiang.game.module.base.rpc.IAgentRpc;
|
|
|
+import com.zanxiang.module.util.JsonUtil;
|
|
|
import com.zanxiang.module.util.NumberUtil;
|
|
|
import com.zanxiang.module.util.ObjectUtil;
|
|
|
import com.zanxiang.module.util.bean.BeanUtil;
|
|
|
@@ -287,6 +288,14 @@ public class GameOceanengineOrderLogServiceImpl extends ServiceImpl<GameOceaneng
|
|
|
.backStatus(backStatus.getBackStatus())
|
|
|
.errMsg(errMsg)
|
|
|
.build());
|
|
|
+ //付费ROI-7日
|
|
|
+ log.error("【付费ROI-7日】执行回传, request : {}", JsonUtil.toString(request));
|
|
|
+ try {
|
|
|
+ request.setEvent_type("purchase_roi_7d");
|
|
|
+ miniGameCallback.doCallback(userLog.getAccountReportUrl(), userLog.getAccountReportToken(), request);
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("【付费ROI-7日】回传出现异常, request : {}", JsonUtil.toString(request));
|
|
|
+ }
|
|
|
return Tuple2.with(backStatus, errMsg);
|
|
|
}
|
|
|
|