summaryrefslogtreecommitdiff
path: root/instrumentation.ts
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-10-13 18:00:00 +0900
committerjoonhoekim <26rote@gmail.com>2025-10-13 18:00:00 +0900
commit1de71f2a0c55b8161b15bdc06e090c87c0ec6840 (patch)
tree1ad7e2c9ca1af4f696140ef28918bc1e64f0d18d /instrumentation.ts
parentb9a2081a76e669688d5884f20482b37cc8acca22 (diff)
(김준회) 구매그룹코드 선택시 userCode 업데이트 처리, 선택기에서 사번은 보이지 않게 제거
Diffstat (limited to 'instrumentation.ts')
-rw-r--r--instrumentation.ts17
1 files changed, 9 insertions, 8 deletions
diff --git a/instrumentation.ts b/instrumentation.ts
index b6676b67..b3692aa0 100644
--- a/instrumentation.ts
+++ b/instrumentation.ts
@@ -63,13 +63,14 @@ export async function register() {
// 스케줄러 실패해도 애플리케이션은 계속 실행
}
- try {
- // 사용자 코드 동기화 스케줄러 시작 (구매그룹코드)
- const { startUserCodeSyncScheduler } = await import('./lib/nonsap-sync/purchase-group-code/user-code-sync-scheduler');
- await startUserCodeSyncScheduler();
- } catch {
- console.error('Failed to start User Code sync scheduler.');
- // 스케줄러 실패해도 애플리케이션은 계속 실행
- }
+ // 구매그룹코드는 oracle에서 선택기로 확인하고, 유저가 클릭했을 때 업데이트 처리, 유저 1:1 대응 (김수진 프로 확인)
+ // try {
+ // // 사용자 코드 동기화 스케줄러 시작 (구매그룹코드)
+ // const { startUserCodeSyncScheduler } = await import('./lib/nonsap-sync/purchase-group-code/user-code-sync-scheduler');
+ // await startUserCodeSyncScheduler();
+ // } catch {
+ // console.error('Failed to start User Code sync scheduler.');
+ // // 스케줄러 실패해도 애플리케이션은 계속 실행
+ // }
}
}