diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index 0e27eeade..344735743 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -1137,6 +1137,7 @@ item: tax: Tax log: Log botanical: Botanical + shelving: Shelving itemTypeCreate: New item type family: Item Type lastEntries: Last entries diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index bc246a6cb..2e29f08b9 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -1136,6 +1136,7 @@ item: botanical: 'Botánico' barcode: 'Código de barras' log: Historial + shelving: Carros itemTypeCreate: Nueva familia family: Familia lastEntries: Últimas entradas diff --git a/src/pages/Item/Card/ItemShelving.vue b/src/pages/Item/Card/ItemShelving.vue new file mode 100644 index 000000000..7e7faab36 --- /dev/null +++ b/src/pages/Item/Card/ItemShelving.vue @@ -0,0 +1,279 @@ + + + diff --git a/src/pages/Item/locale/en.yml b/src/pages/Item/locale/en.yml index c125dca1c..2c0131b4f 100644 --- a/src/pages/Item/locale/en.yml +++ b/src/pages/Item/locale/en.yml @@ -1,3 +1,17 @@ +shelvings: + created: Created + item: Item + concept: Concept + parking: Parking + shelving: Shelving + label: Label + packing: Packing + total: Total + totalLabels: Total labels + removeLines: Remove selected lines + shelvingsRemoved: ItemShelvings removed + removeConfirmTitle: Selected lines will be deleted + removeConfirmSubtitle: Are you sure you want to continue? itemDiary: date: Date id: Id diff --git a/src/pages/Item/locale/es.yml b/src/pages/Item/locale/es.yml index e7ee3245e..a09a63249 100644 --- a/src/pages/Item/locale/es.yml +++ b/src/pages/Item/locale/es.yml @@ -1,3 +1,17 @@ +shelvings: + created: Creado + item: Artículo + concept: Concepto + parking: Parking + shelving: Matrícula + label: Etiqueta + packing: Packing + total: Total + totalLabels: Total etiquetas + removeLines: Eliminar líneas seleccionadas + shelvingsRemoved: Carros eliminados + removeConfirmTitle: Las líneas seleccionadas serán eliminadas + removeConfirmSubtitle: ¿Seguro que quieres continuar? itemDiary: date: Fecha id: Id diff --git a/src/router/modules/item.js b/src/router/modules/item.js index f0c68f0e7..24919db39 100644 --- a/src/router/modules/item.js +++ b/src/router/modules/item.js @@ -26,6 +26,7 @@ export default { 'ItemTax', 'ItemBotanical', 'ItemBarcode', + 'ItemShelving', 'ItemLastEntries', ], }, @@ -163,6 +164,15 @@ export default { }, component: () => import('src/pages/Item/Card/ItemBotanical.vue'), }, + { + path: 'shelving', + name: 'ItemShelving', + meta: { + title: 'shelving', + icon: 'vn:inventory', + }, + component: () => import('src/pages/Item/Card/ItemShelving.vue'), + }, { path: 'barcode', name: 'ItemBarcode', @@ -190,6 +200,15 @@ export default { }, 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'), + }, ], }, ],