0
0
Fork 0

feat: refs #7936 add row click navigation to InvoiceInSerial

This commit is contained in:
Jorge Penadés 2024-11-28 12:37:30 +01:00
parent 011b5814a7
commit 4037b31948
1 changed files with 8 additions and 0 deletions

View File

@ -58,6 +58,14 @@ onBeforeMount(async () => {
:right-search="false" :right-search="false"
:user-params="{ daysAgo }" :user-params="{ daysAgo }"
:disable-option="{ card: true }" :disable-option="{ card: true }"
:row-click="
(row) => {
$router.push({
name: 'InvoiceInList',
query: { table: JSON.stringify({ serial: row.serial }) },
});
}
"
auto-load auto-load
/> />
</template> </template>