Merge pull request 'Item log' (!323) from hyervoni/salix-front-mindshore:feature/ItemLog into dev
gitea/salix-front/pipeline/head There was a failure building this commit
Details
gitea/salix-front/pipeline/head There was a failure building this commit
Details
Reviewed-on: #323 Reviewed-by: Alex Moreno <alexm@verdnatura.es> Reviewed-by: Javier Segarra <jsegarra@verdnatura.es>
This commit is contained in:
commit
b3be7c8bc3
|
@ -1125,6 +1125,7 @@ item:
|
||||||
fixedPrice: Fixed prices
|
fixedPrice: Fixed prices
|
||||||
wasteBreakdown: Waste breakdown
|
wasteBreakdown: Waste breakdown
|
||||||
itemCreate: New item
|
itemCreate: New item
|
||||||
|
log: Log
|
||||||
descriptor:
|
descriptor:
|
||||||
item: Item
|
item: Item
|
||||||
buyer: Buyer
|
buyer: Buyer
|
||||||
|
|
|
@ -1127,6 +1127,7 @@ item:
|
||||||
tax: 'IVA'
|
tax: 'IVA'
|
||||||
botanical: 'Botánico'
|
botanical: 'Botánico'
|
||||||
barcode: 'Código de barras'
|
barcode: 'Código de barras'
|
||||||
|
log: Historial
|
||||||
descriptor:
|
descriptor:
|
||||||
item: Artículo
|
item: Artículo
|
||||||
buyer: Comprador
|
buyer: Comprador
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
<script setup>
|
||||||
|
import VnLog from 'src/components/common/VnLog.vue';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<VnLog model="Item" url="/ItemLogs"></VnLog>
|
||||||
|
</template>
|
|
@ -6,6 +6,7 @@ export default {
|
||||||
meta: {
|
meta: {
|
||||||
title: 'items',
|
title: 'items',
|
||||||
icon: 'vn:item',
|
icon: 'vn:item',
|
||||||
|
moduleName: 'Item',
|
||||||
},
|
},
|
||||||
component: RouterView,
|
component: RouterView,
|
||||||
redirect: { name: 'ItemMain' },
|
redirect: { name: 'ItemMain' },
|
||||||
|
@ -13,6 +14,7 @@ export default {
|
||||||
main: ['ItemList', 'WasteBreakdown', 'ItemFixedPrice', 'ItemRequest'],
|
main: ['ItemList', 'WasteBreakdown', 'ItemFixedPrice', 'ItemRequest'],
|
||||||
card: [
|
card: [
|
||||||
'ItemBasicData',
|
'ItemBasicData',
|
||||||
|
'ItemLog',
|
||||||
'ItemDiary',
|
'ItemDiary',
|
||||||
'ItemTags',
|
'ItemTags',
|
||||||
'ItemTax',
|
'ItemTax',
|
||||||
|
@ -101,7 +103,6 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Item/Card/ItemBasicData.vue'),
|
component: () => import('src/pages/Item/Card/ItemBasicData.vue'),
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
path: 'tags',
|
path: 'tags',
|
||||||
name: 'ItemTags',
|
name: 'ItemTags',
|
||||||
|
@ -142,11 +143,20 @@ export default {
|
||||||
path: 'diary',
|
path: 'diary',
|
||||||
name: 'ItemDiary',
|
name: 'ItemDiary',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'diary',
|
title: 'basicData',
|
||||||
icon: 'vn:transaction',
|
icon: 'vn:settings',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Item/Card/ItemDiary.vue'),
|
component: () => import('src/pages/Item/Card/ItemDiary.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'log',
|
||||||
|
name: 'ItemLog',
|
||||||
|
meta: {
|
||||||
|
title: 'log',
|
||||||
|
icon: 'history',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Item/Card/ItemLog.vue'),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue