Show symbol for accounts that haven't been recently reconciled #33

Merged
jacob1123 merged 3 commits from recently-reconciled into master 2022-03-02 20:53:41 +01:00
Showing only changes of commit bbfda6f402 - Show all commits

View File

@ -41,25 +41,25 @@ function createReconcilationTransaction() {
</script>
<template>
<div class="grid grid-cols-2">
<div class="grid grid-cols-[1fr_auto]">
<h1 class="inline">
{{ accounts.CurrentAccount?.Name }}
<EditAccount />
</h1>
<div class="text-right">
<span class="border-2 rounded-lg p-1 whitespace-nowrap">
<div class="text-right flex flex-wrap flex-col md:flex-row justify-end gap-2 max-w-sm">
<span class="border-2 rounded-lg p-1 whitespace-nowrap flex-1">
Working:
<Currency :value="accounts.CurrentAccount?.WorkingBalance" />
</span>
<span class="border-2 rounded-lg p-1 ml-2 whitespace-nowrap">
<span class="border-2 rounded-lg p-1 whitespace-nowrap flex-1">
Cleared:
<Currency :value="accounts.CurrentAccount?.ClearedBalance" />
</span>
<span
class="border-2 border-blue-500 rounded-lg bg-blue-500 ml-2 p-1 whitespace-nowrap"
class="border-2 border-blue-500 rounded-lg bg-blue-500 p-1 whitespace-nowrap flex-1"
v-if="!transactions.Reconciling"
@click="transactions.Reconciling = true"
>