From b01c5cd4106d6cc0515a692f87db08f3264f060f Mon Sep 17 00:00:00 2001 From: bcjang Date: Mon, 15 Sep 2025 16:25:12 +0900 Subject: [PATCH] =?UTF-8?q?=EC=95=84=EC=9D=B4=ED=85=9C=20=EC=A1=B0?= =?UTF-8?q?=ED=9A=8C=20=EC=95=84=EC=9D=B4=ED=85=9CID=20=EC=A1=B0=EA=B1=B4?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/Log.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/apis/Log.js b/src/apis/Log.js index 4f2ceea..f0eae7c 100644 --- a/src/apis/Log.js +++ b/src/apis/Log.js @@ -111,7 +111,6 @@ export const getCurrencyDetailList = async (token, searchType, searchData, tranI export const GameCurrencyDetailLogExport = async (token, params, fileName) => { try { - console.log(params); await Axios.post(`/api/v1/log/currency/detail/excel-export`, params, { headers: { Authorization: `Bearer ${token}` }, responseType: 'blob', @@ -129,9 +128,9 @@ export const GameCurrencyDetailLogExport = async (token, params, fileName) => { } }; -export const getItemDetailList = async (token, searchType, searchData, tranId, logAction, itemLargeType, itemSmallType, countDeltaType, startDate, endDate, order, size, currentPage) => { +export const getItemDetailList = async (token, searchType, searchData, itemId, tranId, logAction, itemLargeType, itemSmallType, countDeltaType, startDate, endDate, order, size, currentPage) => { try { - const response = await Axios.get(`/api/v1/log/item/detail/list?search_type=${searchType}&search_data=${searchData}&tran_id=${tranId} + const response = await Axios.get(`/api/v1/log/item/detail/list?search_type=${searchType}&search_data=${searchData}&tran_id=${tranId}&item_id=${itemId} &log_action=${logAction}&item_large_type=${itemLargeType}&item_small_type=${itemSmallType}&count_delta_type=${countDeltaType}&start_dt=${startDate}&end_dt=${endDate} &orderby=${order}&page_no=${currentPage}&page_size=${size}`, { headers: { @@ -149,7 +148,6 @@ export const getItemDetailList = async (token, searchType, searchData, tranId, l export const GameItemDetailLogExport = async (token, params, fileName) => { try { - console.log(params); await Axios.post(`/api/v1/log/item/detail/excel-export`, params, { headers: { Authorization: `Bearer ${token}` }, responseType: 'blob', @@ -187,7 +185,7 @@ export const getCurrencyItemList = async (token, searchType, searchData, tranId, export const GameCurrencyItemLogExport = async (token, params, fileName) => { try { - console.log(params); + await Axios.post(`/api/v1/log/currency-item/excel-export`, params, { headers: { Authorization: `Bearer ${token}` }, responseType: 'blob',