Display problematic transactions #53

Merged
jacob1123 merged 16 commits from problematic-transactions into master 2022-04-23 13:32:39 +02:00
Showing only changes of commit 76f730bf2a - Show all commits

View File

@ -11,6 +11,7 @@ import Checkbox from "./Checkbox.vue";
const props = defineProps<{
transactionid: string,
index: number,
withAccount: bool,
}>();
const edit = ref(false);
@ -41,6 +42,9 @@ function getStatusSymbol() {
<td class="hidden md:block">
{{ formatDate(TX.Date) }}
</td>
<td class="pl-2 md:pl-0" v-if="withAccount">
{{ TX.Account }}
</td>
<td class="pl-2 md:pl-0">
{{ TX.TransferAccount ? "Transfer : " + TX.TransferAccount : TX.Payee }}
</td>