- 네이티브 알림 필터에 입금/이체/송금 키워드 추가(입금 알림도 수집) - 미확인(pending) 내역: 수입(입금)이면 기본 계좌종류 은행, 지출이면 카드 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -380,10 +380,10 @@ function openEdit(e) {
|
||||
category: e.category || '',
|
||||
amount: e.amount,
|
||||
memo: e.memo || '',
|
||||
// 알림 자동인식(pending) 건은 카드 결제이므로 매칭 실패해도 '카드'로 기본 선택(현금 X)
|
||||
// 알림 자동인식(pending): 매칭 실패 시 수입(입금)=은행, 지출(카드결제)=카드로 기본 선택(현금 X)
|
||||
walletKind: e.walletId
|
||||
? walletKindOf(e.walletId)
|
||||
: (e.pending ? 'CARD' : (e.type === 'TRANSFER' ? '' : 'CASH')),
|
||||
: (e.pending ? (e.type === 'INCOME' ? 'BANK' : 'CARD') : (e.type === 'TRANSFER' ? '' : 'CASH')),
|
||||
walletId: e.walletId || '',
|
||||
toWalletKind: walletKindOf(e.toWalletId),
|
||||
toWalletId: e.toWalletId || '',
|
||||
|
||||
Reference in New Issue
Block a user