Use type instead of isAccount flag
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -24,6 +24,8 @@ const TX = ref<Transaction>({
|
||||
TransferAccount: "",
|
||||
});
|
||||
|
||||
const payeeType = ref<string|undefined>(undefined);
|
||||
|
||||
const payload = computed(() => JSON.stringify({
|
||||
budgetId: props.budgetid,
|
||||
accountId: props.accountid,
|
||||
@ -31,6 +33,7 @@ const payload = computed(() => JSON.stringify({
|
||||
payee: {
|
||||
Name: TX.value.Payee,
|
||||
ID: TX.value.PayeeID,
|
||||
Type: payeeType.value,
|
||||
},
|
||||
categoryId: TX.value.CategoryID,
|
||||
memo: TX.value.Memo,
|
||||
@ -51,7 +54,7 @@ function saveTransaction(e: MouseEvent) {
|
||||
<DateInput class="border-b-2 border-black" v-model="TX.Date" />
|
||||
</td>
|
||||
<td style="max-width: 150px;">
|
||||
<Autocomplete v-model:text="TX.Payee" v-model:id="TX.PayeeID" model="payees" />
|
||||
<Autocomplete v-model:text="TX.Payee" v-model:id="TX.PayeeID" v-model:type="payeeType" model="payees" />
|
||||
</td>
|
||||
<td style="max-width: 200px;">
|
||||
<Autocomplete v-model:text="TX.Category" v-model:id="TX.CategoryID" model="categories" />
|
||||
|
Reference in New Issue
Block a user