[통합로그API No.8] FeaturedBrands LiveChannel Content 클릭 시 로그 정보 수집

This commit is contained in:
dongyoungKo
2025-05-20 10:06:50 +09:00
parent 6827efedc5
commit 76fb96b21d
5 changed files with 67 additions and 18 deletions

View File

@@ -1590,12 +1590,17 @@ export const sendLogCheckOutBtnClick = (params) => (dispatch, getState) => {
// IF-LGSP-LOG-200 / 통합 추천 로그
export const sendLogTotalRecommend = (params) => (dispatch, getState) => {
let localMacAddress;
const { entryMenu } = getState().common.menu;
const { macAddress } = getState().common.macAddress;
const userNumber = getState().common.appStatus.loginUserData.userNumber;
const macAddr = macAddress?.wired ? macAddress?.wired : macAddress?.wifi;
const localMacAddress = "00:1A:2B:3C:4D:5E";
if (typeof window === "object" && !window.PalmSystem) {
localMacAddress = "00:1A:2B:3C:4D:5E";
}
const logCreateTime = new Date().toISOString();