Merge pull request 'hotfix_rowClickActions' (!1643) from hotfix_rowClickActions into master
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
Reviewed-on: #1643 Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
This commit is contained in:
commit
90a49a8513
|
@ -94,6 +94,7 @@ const columns = computed(() => [
|
||||||
columnClass: 'no-padding',
|
columnClass: 'no-padding',
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
const openTab = (id) => useOpenURL(`#/customer/${id}/summary`);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -113,6 +114,8 @@ const columns = computed(() => [
|
||||||
:disable-option="{ card: true }"
|
:disable-option="{ card: true }"
|
||||||
dense
|
dense
|
||||||
class="q-px-none"
|
class="q-px-none"
|
||||||
|
:row-click="({ id }) => openTab(id)"
|
||||||
|
:row-ctrl-click="(_, { id }) => openTab(id)"
|
||||||
>
|
>
|
||||||
<template #top-left>
|
<template #top-left>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
|
|
|
@ -129,6 +129,7 @@ const openTab = (id) =>
|
||||||
}"
|
}"
|
||||||
default-mode="table"
|
default-mode="table"
|
||||||
:row-click="({ id }) => openTab(id)"
|
:row-click="({ id }) => openTab(id)"
|
||||||
|
:row-ctrl-click="(_, { id }) => openTab(id)"
|
||||||
v-model:selected="selectedRows"
|
v-model:selected="selectedRows"
|
||||||
:disable-option="{ card: true }"
|
:disable-option="{ card: true }"
|
||||||
>
|
>
|
||||||
|
|
|
@ -449,21 +449,19 @@ const openTab = (id) => useOpenURL(`#/ticket/${id}/sale`);
|
||||||
<span :title="row.province" v-text="row.province" />
|
<span :title="row.province" v-text="row.province" />
|
||||||
</template>
|
</template>
|
||||||
<template #column-state="{ row }">
|
<template #column-state="{ row }">
|
||||||
<div @click.stop.prevent>
|
<div v-if="row.refFk" @click.stop.prevent>
|
||||||
<div v-if="row.refFk">
|
<span class="link">{{ row.refFk }}</span>
|
||||||
<span class="link">{{ row.refFk }}</span>
|
<InvoiceOutDescriptorProxy :id="row.invoiceOutId" />
|
||||||
<InvoiceOutDescriptorProxy :id="row.invoiceOutId" />
|
|
||||||
</div>
|
|
||||||
<QBadge
|
|
||||||
v-else
|
|
||||||
:color="stateColors[row.classColor] || 'transparent'"
|
|
||||||
:text-color="stateColors[row.classColor] ? 'black' : 'white'"
|
|
||||||
class="q-pa-sm"
|
|
||||||
style="font-size: 14px"
|
|
||||||
>
|
|
||||||
{{ row.state }}
|
|
||||||
</QBadge>
|
|
||||||
</div>
|
</div>
|
||||||
|
<QBadge
|
||||||
|
v-else
|
||||||
|
:color="stateColors[row.classColor] || 'transparent'"
|
||||||
|
:text-color="stateColors[row.classColor] ? 'black' : 'white'"
|
||||||
|
class="q-pa-sm"
|
||||||
|
style="font-size: 14px"
|
||||||
|
>
|
||||||
|
{{ row.state }}
|
||||||
|
</QBadge>
|
||||||
</template>
|
</template>
|
||||||
<template #column-isFragile="{ row }">
|
<template #column-isFragile="{ row }">
|
||||||
<QIcon v-if="row.isFragile" name="local_bar" color="primary" size="sm">
|
<QIcon v-if="row.isFragile" name="local_bar" color="primary" size="sm">
|
||||||
|
|
Loading…
Reference in New Issue