Commit Graph

849 Commits

Author SHA1 Message Date
HyeonJongKim
b7612ca2bc - NiceCalendar MinDate 날짜 제약 임시 해제 (추후 원복 필요) 2025-11-06 09:39:58 +09:00
HyeonJongKim
82fceaaa67 Merge main and resolve conflicts
- Keep local changes for refactored detail components
- Remove obsolete detail-page files
- Maintain bug fixes and type improvements

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:43:09 +09:00
HyeonJongKim
24435e47d6 Refactor additional service details and fix various bugs
- Convert detail pages to modal components for better UX
- Fix seq type from string to number for ARS and Alimtalk
- Add seq field to list item types
- Fix validation for card number input (remove formatting chars)
- Fix SMS payment resend seq parameter issue
- Improve z-index handling for snackBar and dialogs
- Add useSetHeaderTitle to link payment history wrap
- Remove unused detail page files
- Update payout filter and various detail components

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:41:05 +09:00
Jay Sheen
ab528b38f1 Fix permission type for payout navigation button
- Change checkGrant permission type from 'X' to 'W' in payout list-page
- Navigation button should use 'W' (write) permission instead of 'X' (execute)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:39:19 +09:00
Jay Sheen
1038dea22e Fix permission type for link payment navigation buttons
- Change checkGrant permission type from 'X' to 'W' in link-payment-history-wrap and link-payment-wait-send-wrap
- These navigation buttons should use 'W' (write) permission instead of 'X' (execute)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:36:54 +09:00
Jay Sheen
bbc8c930ae Add permission checks to link payment detail components
- Add checkGrant(55, 'W') for resend and separate approval in link-payment-history-detail
- Add checkGrant(55, 'W') for delete in link-payment-wait-detail
- Show alert message when user lacks permission
- Simplify onClick handlers from arrow functions to direct method references

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:33:27 +09:00
Jay Sheen
6abbe9b11a Add permission checks to fund account components
- Add checkGrant(55, 'D') for download/email functions in transfer-list-wrap, result-list-wrap, and result-detail
- Add checkGrant(55, 'W') for transfer registration navigation in transfer-list-wrap and result-list-wrap
- Add checkGrant(55, 'X') for transfer request in transfer-detail
- Show alert message when user lacks permission
- Simplify onClick handler in transfer-detail from arrow function to direct method reference

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:27:15 +09:00
Jay Sheen
cf1a390c67 Add permission check to key-in payment request button
- Add checkGrant(56, 'X') permission check to onClickToNavigate function
- Show alert message when user lacks permission
- Simplify onClick handler from arrow function to direct method reference

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:17:44 +09:00
Jay Sheen
0decc9e8b4 Add permission check to key-in payment page
- Add grant check (56, 'D') to key-in payment download button
- Move onClick from img to button element for better accessibility

Changes:
- key-in-payment-page: Add permission check for download

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:08:11 +09:00
Jay Sheen
e4871b6492 Add permission checks to SMS payment pages
- Add grant check (57, 'D') to SMS payment download button
- Add grant check (57, 'X') to SMS resend button
- Refactor onClick handlers for better code organization

Changes:
- sms-payment-page: Add permission check for download, move onClick to button
- sms-payment-detail-resend: Add imports for permission check functions

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 19:04:49 +09:00
Jay Sheen
47555e6e42 Add permission check to alimtalk service setting button
- Add grant check (58, 'W') to alimtalk service setting navigation
- Refactor inline onClick handler to method reference

Changes:
- alimtalk/list-page: Add permission check for service setting navigation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 18:58:04 +09:00
Jay Sheen
102e91f834 Add permission check to alimtalk page
- Add grant check (58, 'D') to alimtalk download button
- Refactor inline onClick handler to method reference

Changes:
- alimtalk/list-page: Add permission check for download

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 18:58:04 +09:00
Jay Sheen
b354847770 Clean up unused imports in face auth page
- Remove unused ProcessResult import
- Remove unused JSX import

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 18:58:04 +09:00
Jay Sheen
344fd894c7 Add permission check to account holder auth page
- Add grant check (59, 'D') to account holder auth download button
- Refactor inline onClick handler to method reference

Changes:
- account-holder-auth-page: Add permission check for download

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 18:58:04 +09:00
Jay Sheen
320f213319 Add permission checks to additional service pages
- Add grant check (54, 'D') to link payment download buttons
- Add grant check (54, 'X') to link payment request buttons
- Add grant check (65, 'D') to face auth download button
- Add grant check (60, 'D') to account holder search download button
- Add grant check (60, 'X') to account holder search request button
- Refactor inline onClick handlers to method references

Changes:
- link-payment-history-wrap: Add permission checks for download and request
- link-payment-wait-send-wrap: Add permission checks for download and request
- face-auth-page: Add permission check for download
- account-holder-search-page: Add permission check for download
- account-holder-search-list: Add permission check for search request

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 18:58:04 +09:00
Jay Sheen
a225d51119 Add permission checks to payout pages
- Add grant check (53, 'D') to payout list download button
- Add grant check (53, 'X') to payout request button
- Add grant check (53, 'D') to payout detail certificate download button
- Refactor inline onClick handlers to method references

Changes:
- payout/list-page: Add permission checks for download and request actions
- payout/detail-page: Add permission check for certificate download

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 18:58:04 +09:00
Jay Sheen
8a65cd6448 Add permission checks and localization to ARS pages
- Add grant check (52, 'D') to ARS list download button
- Add grant check (52, 'X') to ARS payment request button
- Add grant check (52, 'X') to ARS detail SMS resend button
- Refactor inline onClick handlers to method references
- Replace hardcoded Korean text with i18n translation keys in ARS detail page

Changes:
- ars/list-page: Add permission checks for download and payment request
- ars/detail-page: Add permission check for SMS resend, localize all UI text

Localized fields:
- Page title, transaction info, payment method, payment status, order status
- Order date/time, product name, order number, buyer, phone number, email
- Verification code, SMS resend button and success/error messages

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 18:58:04 +09:00
focp212@naver.com
50f062b3cf . 2025-11-05 17:56:01 +09:00
focp212@naver.com
0083dda79d catch 추가 2025-11-05 17:55:51 +09:00
focp212@naver.com
344e7c931f Merge branch 'main' of https://gitea.bpsoft.co.kr/nicepayments/nice-app-web 2025-11-05 17:51:23 +09:00
focp212@naver.com
446ad38179 알람 오류 2025-11-05 17:51:15 +09:00
Jay Sheen
7160109f78 Add permission checks to account and QNA pages
- Add grant check (46, 'X') to password change navigation handlers
- Add grant check (45, 'X') to user management save/add operations
- Add grant check (64, 'X') to QNA registration
- Refactor inline onClick handlers to separate methods for better maintainability
- Add debug logging to checkGrant function

Changes:
- password-manage-wrap: Extract changeLoginPassword and changeCancelPassword methods
- user-account-auth-wrap: Extract handleSave method with permission check
- user-login-auth-info-wrap: Add permission check to handleSave
- user-manage-wrap: Add permission check to onClickToNavigation, simplify onClick
- qna/register-page: Add permission check to onClickToRegisterQna

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 17:37:03 +09:00
Jay Sheen
5c0650afe5 Add grant check to FAQ inquiry button
- Add permission check (64, 'R') to onClickToNavigation in FAQ list page
- Prevent navigation to QNA list without proper read permission
- Show localized permission error message when access is denied

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 17:37:03 +09:00
focp212@naver.com
2ce62c9ba1 catch 2025-11-05 17:36:10 +09:00
focp212@naver.com
3982b3c745 catch 2025-11-05 17:29:07 +09:00
HyeonJongKim
f1f38551fa -Key In 결제 요청 카드번호 4자 제한
- SMS 결제통보 필드 변경 수정
2025-11-05 17:18:58 +09:00
focp212@naver.com
b3bdd440ba ㅇㅇ 2025-11-05 17:02:45 +09:00
focp212@naver.com
e7beaf5f68 Merge branch 'main' of https://gitea.bpsoft.co.kr/nicepayments/nice-app-web 2025-11-05 17:00:29 +09:00
focp212@naver.com
87e9bb76de 에러 처리 2025-11-05 16:59:57 +09:00
Jay Sheen
930196669a Add permission checks and localization improvements
- Add grant check (64, 'X') to QNA register page
- Add grant check (45, 'X') to user login auth modification
- Replace hardcoded Korean permission messages with i18n key 'common.nopermission'
- Add 'nopermission' translation key to both en.json and ko.json
- Update .env.development to use development API endpoints

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 16:59:18 +09:00
HyeonJongKim
fe012cbda3 - 안드로이드,IOS 구별 삭제 일괄 메서드로 수정 2025-11-05 16:27:05 +09:00
focp212@naver.com
71290fd451 Merge branch 'main' of https://gitea.bpsoft.co.kr/nicepayments/nice-app-web 2025-11-05 16:08:55 +09:00
focp212@naver.com
9b5c981029 달력제약조건수정 2025-11-05 16:08:40 +09:00
Jay Sheen
27cef7b4a3 Fix AlarmRoutes linkUrl parsing for correct array length
- Update notice list link parsing: length 4 → 5
- Update QnA list link parsing: length 4 → 5
- Update settlement list link parsing: length 3 → 4
- Fix: split('/') on '/support/notice/list/8537' produces 5 elements, not 4

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 16:05:14 +09:00
focp212@naver.com
1964d9f716 qna 권한 2025-11-05 16:01:18 +09:00
focp212@naver.com
1bf0421e04 권한 2025-11-05 15:57:54 +09:00
focp212@naver.com
9b0e218553 오류 수정 2025-11-05 15:49:04 +09:00
focp212@naver.com
fb889a9f2c 이용내역 권한 관련 2025-11-05 15:26:14 +09:00
focp212@naver.com
ad28ccd82f Merge branch 'main' of https://gitea.bpsoft.co.kr/nicepayments/nice-app-web 2025-11-05 14:36:18 +09:00
focp212@naver.com
17afadad60 권한 read 2025-11-05 14:36:03 +09:00
Jay Sheen
24c45731dc Add checkAlarmLink feature to handle alarm links on first access
- Add CHECK_ALARM_LINK to BridgeMessageType enum
- Implement checkAlarmLink method in appBridge class
- Add checkAlarmLink to useAppBridge hook
- Call checkAlarmLink on HomePage when firstAccess is true
- Clean up unused imports and minor code formatting

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 14:28:51 +09:00
focp212@naver.com
a61f0bc2ff .. 2025-11-05 14:25:47 +09:00
focp212@naver.com
696d578e23 Merge branch 'main' of https://gitea.bpsoft.co.kr/nicepayments/nice-app-web 2025-11-05 14:04:03 +09:00
focp212@naver.com
a4807c4013 메뉴 권한 및 ui 수정 2025-11-05 14:03:50 +09:00
HyeonJongKim
5906195027 - 부가서비스 상세 태그 수정 2025-11-05 14:01:25 +09:00
focp212@naver.com
7d158c8a6e 상세 태그 수정 2025-11-05 11:10:33 +09:00
focp212@naver.com
2556cc084a . 2025-11-05 10:59:31 +09:00
focp212@naver.com
d93a92db39 menu grant 2025-11-05 10:58:23 +09:00
HyeonJongKim
23b2a84c7d - 구 알림톡 상세페이지 삭제 2025-11-05 10:53:14 +09:00
focp212@naver.com
77014dcc10 alarm 2025-11-05 09:48:06 +09:00