From 617c4a3a658edd9ec4f0dd5f129b69ff62bc09d6 Mon Sep 17 00:00:00 2001 From: "edgar.mendez" Date: Wed, 15 Oct 2025 12:08:31 -0600 Subject: [PATCH] WIP --- install.sh | 0 src/components/Holos/Inbox.vue | 0 src/components/Holos/Inbox/Item.vue | 0 src/components/Holos/Inbox/ItemTitle.vue | 0 src/components/Holos/Inbox/Menu/Item.vue | 0 src/components/Holos/Inbox/Menu/Static.vue | 0 src/controllers/PrintController.js | 0 src/pages/Warehouses/Details.vue | 126 +++++++++------------ 8 files changed, 56 insertions(+), 70 deletions(-) mode change 100755 => 100644 install.sh mode change 100755 => 100644 src/components/Holos/Inbox.vue mode change 100755 => 100644 src/components/Holos/Inbox/Item.vue mode change 100755 => 100644 src/components/Holos/Inbox/ItemTitle.vue mode change 100755 => 100644 src/components/Holos/Inbox/Menu/Item.vue mode change 100755 => 100644 src/components/Holos/Inbox/Menu/Static.vue mode change 100755 => 100644 src/controllers/PrintController.js diff --git a/install.sh b/install.sh old mode 100755 new mode 100644 diff --git a/src/components/Holos/Inbox.vue b/src/components/Holos/Inbox.vue old mode 100755 new mode 100644 diff --git a/src/components/Holos/Inbox/Item.vue b/src/components/Holos/Inbox/Item.vue old mode 100755 new mode 100644 diff --git a/src/components/Holos/Inbox/ItemTitle.vue b/src/components/Holos/Inbox/ItemTitle.vue old mode 100755 new mode 100644 diff --git a/src/components/Holos/Inbox/Menu/Item.vue b/src/components/Holos/Inbox/Menu/Item.vue old mode 100755 new mode 100644 diff --git a/src/components/Holos/Inbox/Menu/Static.vue b/src/components/Holos/Inbox/Menu/Static.vue old mode 100755 new mode 100644 diff --git a/src/controllers/PrintController.js b/src/controllers/PrintController.js old mode 100755 new mode 100644 diff --git a/src/pages/Warehouses/Details.vue b/src/pages/Warehouses/Details.vue index 910e705..2215302 100644 --- a/src/pages/Warehouses/Details.vue +++ b/src/pages/Warehouses/Details.vue @@ -15,6 +15,7 @@ import IconButton from '@Holos/Button/Icon.vue'; import Button from '@Holos/Button/Button.vue'; import GoogleIcon from '@Shared/GoogleIcon.vue'; +import Badge from '@Components/ui/Tags/Badge.vue'; /** Definiciones */ const route = useRoute(); const router = useRouter(); @@ -247,12 +248,12 @@ onMounted(() => {

Ubicación

- {{ warehouse.address || 'Guadalajara, Zona Industrial' }} + {{ warehouse.address || 'Sin dirección' }}

-
+

Clasificaciones

{
-
+

Subclasificaciones

{

Estado

- + {{ warehouse.is_active ? 'Activo' : 'Inactivo' }} - +
@@ -323,6 +321,55 @@ onMounted(() => { + + + + + + Stock por Productos + + + Inventario actual de productos en este almacén + + + +
+

+ {{ warehouseStock.warehouse }} +

+ +
+
+ +
+ + {{ product.code }} + + + {{ product.stock }} unidades + +
+ +
+ {{ product.name }} +
+ +
+ Valor total: + + {{ formatCurrency(product.value) }} + +
+ +
+
+
+
+
+ @@ -389,68 +436,7 @@ onMounted(() => { - - - - - - Stock por Productos - - - Inventario actual de productos en este almacén - - - -
-

- {{ warehouseStock.warehouse }} -

- -
-
- -
- - {{ product.code }} - - - {{ product.stock }} unidades - -
- -
- {{ product.name }} -
- -
- Valor total: - - {{ formatCurrency(product.value) }} - -
- - -
-
- Stock - {{ Math.round((product.stock / 100) * 100) }}% -
-
-
-
-
-
-
-
-
-
-
+