fix(recurring): 이체 입금 종류 카드 제외 — AccountView와 일관
Deploy / deploy (push) Failing after 12m30s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
sb
2026-07-06 23:23:26 +09:00
parent 951cbdce34
commit 1f128940f5
+3 -1
View File
@@ -65,6 +65,8 @@ const toWalletsOfKind = computed(() => wallets.value.filter((w) => w.type === fo
const fromWalletKinds = computed(() =>
WALLET_KINDS.filter((k) => k.value !== 'CARD' || form.type === 'EXPENSE'),
)
// 이체 입금 계좌 종류: 카드 제외(계좌→카드는 상환)
const toWalletKinds = computed(() => WALLET_KINDS.filter((k) => k.value !== 'CARD'))
// 계좌 선택 칩 옵션
function walletOpts(list) {
return list.map((w) => ({ value: w.id, label: `${w.name}${w.issuer ? ` (${w.issuer})` : ''}` }))
@@ -325,7 +327,7 @@ onMounted(load)
<span class="field-label">입금 계좌</span>
<div class="wallet-chips">
<button
v-for="k in WALLET_KINDS" :key="k.value"
v-for="k in toWalletKinds" :key="k.value"
type="button" class="chip" :class="{ active: form.toWalletKind === k.value }"
:disabled="submitting"
@click="form.toWalletKind = k.value; onToWalletKindChange()"