#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 1 additions and 5 deletions
Showing only changes of commit fb1928db7e - Show all commits

View File

@ -41,11 +41,7 @@ const columns = computed(() => [
options: expenses.value,
model: 'expenseFk',
optionValue: 'id',
optionLabel: (row) => {
if (isNaN(row)) return `${row.id}: ${row.name}`;
let label = expenses.value.find((expense) => expense.id == row);
return `${label.id}: ${label.name}`;
},
optionLabel: (row) => `${row.id}: ${row.name}`,
Review

Este no funciona al cargar, pone undefined @alexm no consigo encontrar el porque, necesitaría que lo miremos.

Este no funciona al cargar, pone **undefined** @alexm no consigo encontrar el porque, necesitaría que lo miremos.
Review

Vale, pido los cambios hasta este archivo

Vale, pido los cambios hasta este archivo
sortable: true,
align: 'left',
},