#7936 improve InvoiceIn #1004

Merged
jorgep merged 55 commits from 7936-improveInvoiceIn into dev 2024-12-18 09:22:09 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 50dab045f0 - Show all commits

View File

@ -256,12 +256,12 @@ const formatOpt = (row, { model, options }, prop) => {
v-model="row.foreignValue" v-model="row.foreignValue"
@update:model-value=" @update:model-value="
async (val) => { async (val) => {
const exchange = await getExchange( if (!isNotEuro(currency)) return;
row.taxableBase = await getExchange(
val, val,
row.currencyFk, row.currencyFk,
invoiceIn.issued invoiceIn.issued
); );
row.taxableBase = exchange;
} }
" "
/> />