Merge branch 'feature/ItemLastEntries' of https://gitea.verdnatura.es/hyervoni/salix-front-mindshore into feature/ItemLastEntries
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
commit
8043d72676
|
@ -260,6 +260,14 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</QBadge>
|
</QBadge>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
|
<template #body-cell-pvp="{ value }">
|
||||||
|
<QTd @click.stop
|
||||||
|
><span> {{ value }}</span>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('lastEntries.grouping') }}/{{ t('lastEntries.packing') }}
|
||||||
|
</QTooltip></QTd
|
||||||
|
>
|
||||||
|
</template>
|
||||||
<template #body-cell-grouping="{ row }">
|
<template #body-cell-grouping="{ row }">
|
||||||
<QTd @click.stop>
|
<QTd @click.stop>
|
||||||
<QBadge
|
<QBadge
|
||||||
|
@ -296,9 +304,14 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
.q-badge--rounded {
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
.center-content {
|
.center-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
max-width: max-content;
|
max-width: max-content;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
padding: 0 11px;
|
||||||
|
height: 28px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -113,6 +113,15 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Item/Card/ItemTags.vue'),
|
component: () => import('src/pages/Item/Card/ItemTags.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'last-entries',
|
||||||
|
name: 'ItemLastEntries',
|
||||||
|
meta: {
|
||||||
|
title: 'lastEntries',
|
||||||
|
icon: 'vn:regentry',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Item/Card/ItemLastEntries.vue'),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'tax',
|
path: 'tax',
|
||||||
name: 'ItemTax',
|
name: 'ItemTax',
|
||||||
|
@ -122,6 +131,15 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Item/Card/ItemTax.vue'),
|
component: () => import('src/pages/Item/Card/ItemTax.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'botanical',
|
||||||
|
name: 'ItemBotanical',
|
||||||
|
meta: {
|
||||||
|
title: 'botanical',
|
||||||
|
icon: 'local_florist',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Item/Card/ItemBotanical.vue'),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'barcode',
|
path: 'barcode',
|
||||||
name: 'ItemBarcode',
|
name: 'ItemBarcode',
|
||||||
|
@ -135,8 +153,8 @@ export default {
|
||||||
path: 'diary',
|
path: 'diary',
|
||||||
name: 'ItemDiary',
|
name: 'ItemDiary',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'basicData',
|
title: 'diary',
|
||||||
icon: 'vn:settings',
|
icon: 'vn:transaction',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Item/Card/ItemDiary.vue'),
|
component: () => import('src/pages/Item/Card/ItemDiary.vue'),
|
||||||
},
|
},
|
||||||
|
@ -149,24 +167,6 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Item/Card/ItemLog.vue'),
|
component: () => import('src/pages/Item/Card/ItemLog.vue'),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: 'botanical',
|
|
||||||
name: 'ItemBotanical',
|
|
||||||
meta: {
|
|
||||||
title: 'botanical',
|
|
||||||
icon: 'vn:botanical',
|
|
||||||
},
|
|
||||||
component: () => import('src/pages/Item/Card/ItemBotanical.vue'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: 'last-entries',
|
|
||||||
name: 'ItemLastEntries',
|
|
||||||
meta: {
|
|
||||||
title: 'lastEntries',
|
|
||||||
icon: 'vn:botanical',
|
|
||||||
},
|
|
||||||
component: () => import('src/pages/Item/Card/ItemLastEntries.vue'),
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue