diff --git a/web/src/pages/Account.vue b/web/src/pages/Account.vue index 16dd609..d0fe2f3 100644 --- a/web/src/pages/Account.vue +++ b/web/src/pages/Account.vue @@ -13,31 +13,65 @@ defineProps<{ }>() const accounts = useAccountStore(); +const TargetReconcilingBalance = ref(0); + +function setReconciled(event: Event) { + const target = event.target as HTMLInputElement; + accounts.SetReconciledForAllTransactions(target.checked); +} + +function cancelReconcilation() { + accounts.SetReconciledForAllTransactions(false); + accounts.Reconciling = false; +} + +function submitReconcilation() { + +} + +function createReconcilationTransaction() { + +}