diff --git a/src/pages/Item/Card/ItemDiary.vue b/src/pages/Item/Card/ItemDiary.vue
index 21249349f..c2687e0fd 100644
--- a/src/pages/Item/Card/ItemDiary.vue
+++ b/src/pages/Item/Card/ItemDiary.vue
@@ -1 +1,277 @@
-Item diary (CREAR CUANDO SE DESARROLLE EL MODULO DE ITEMS)
+
+
+
+ (itemBalances = data)"
+ />
+ (warehousesOptions = data)"
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ t('itemDiary.claim') }}: {{ row.claimFk }}
+
+
+
+
+
+
+
+ {{ toDateFormat(row.shipped) }}
+
+
+
+
+
+
+ {{ row.origin }}
+
+ {{ row.origin }}
+
+
+
+
+
+
+ {{ dashIfEmpty(row.name) }}
+
+
+ {{ dashIfEmpty(row.name) }}
+
+
+
+
+
+
+ {{ dashIfEmpty(row.invalue) }}
+
+
+
+
+
+
+ {{ dashIfEmpty(row.balance) }}
+
+
+
+
+
+
+
+
diff --git a/src/pages/Item/locale/en.yml b/src/pages/Item/locale/en.yml
new file mode 100644
index 000000000..ec3b134e8
--- /dev/null
+++ b/src/pages/Item/locale/en.yml
@@ -0,0 +1,13 @@
+itemDiary:
+ date: Date
+ id: Id
+ state: State
+ reference: Reference
+ client: Client
+ in: In
+ out: Out
+ balance: Balance
+ claim: Claim
+ showBefore: Show what's before the inventory
+ since: Since
+ warehouse: Warehouse
diff --git a/src/pages/Item/locale/es.yml b/src/pages/Item/locale/es.yml
new file mode 100644
index 000000000..4f76313fa
--- /dev/null
+++ b/src/pages/Item/locale/es.yml
@@ -0,0 +1,13 @@
+itemDiary:
+ date: Fecha
+ id: Id
+ state: Estado
+ reference: Referencia
+ client: Cliente
+ in: Entrada
+ out: Salida
+ balance: Balance
+ claim: Reclamación
+ showBefore: Mostrar lo anterior al inventario
+ since: Desde
+ warehouse: Almacén
diff --git a/src/router/modules/item.js b/src/router/modules/item.js
index 7ee5dcf78..d79ac3071 100644
--- a/src/router/modules/item.js
+++ b/src/router/modules/item.js
@@ -157,8 +157,8 @@ export default {
path: 'diary',
name: 'ItemDiary',
meta: {
- title: 'basicData',
- icon: 'vn:settings',
+ title: 'diary',
+ icon: 'vn:transaction',
},
component: () => import('src/pages/Item/Card/ItemDiary.vue'),
},
@@ -167,7 +167,7 @@ export default {
name: 'ItemLog',
meta: {
title: 'log',
- icon: 'history',
+ icon: 'vn:History',
},
component: () => import('src/pages/Item/Card/ItemLog.vue'),
},