- Implementar vistas CRUD para administración de almacenes (Index, Create, Edit, Delete). - Añadir para realizar traspasos de productos entre almacenes. - Configurar lógica de rutas y API (Module.js) para almacenes y movimientos.
123 lines
3.6 KiB
Vue
123 lines
3.6 KiB
Vue
<script setup>
|
|
import { onMounted } from 'vue';
|
|
import useLoader from '@Stores/Loader';
|
|
import { hasPermission } from '@Plugins/RolePermission';
|
|
|
|
import Layout from '@Holos/Layout/App.vue';
|
|
import Link from '@Holos/Skeleton/Sidebar/Link.vue';
|
|
import Section from '@Holos/Skeleton/Sidebar/Section.vue';
|
|
|
|
/** Definidores */
|
|
const loader = useLoader()
|
|
|
|
/** Propiedades */
|
|
defineProps({
|
|
title: String,
|
|
});
|
|
|
|
/** Ciclos */
|
|
onMounted(() => {
|
|
loader.boot()
|
|
})
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<Layout
|
|
:title="title"
|
|
>
|
|
|
|
<template #leftSidebar>
|
|
<Section name="Principal">
|
|
<Link
|
|
icon="monitoring"
|
|
name="dashboard"
|
|
to="dashboard.index"
|
|
/>
|
|
</Section>
|
|
<Section :name="$t('pos.title')">
|
|
<Link
|
|
icon="category"
|
|
name="pos.category"
|
|
to="pos.category.index"
|
|
/>
|
|
<Link
|
|
v-if="hasPermission('inventario.index')"
|
|
icon="inventory_2"
|
|
name="pos.inventory"
|
|
to="pos.inventory.index"
|
|
/>
|
|
<Link
|
|
v-if="hasPermission('warehouses.index')"
|
|
icon="warehouse"
|
|
name="pos.warehouses"
|
|
to="pos.warehouses.index"
|
|
/>
|
|
<Link
|
|
v-if="hasPermission('movements.index')"
|
|
icon="swap_horiz"
|
|
name="pos.movements"
|
|
to="pos.movements.index"
|
|
/>
|
|
<Link
|
|
icon="point_of_sale"
|
|
name="pos.cashRegister"
|
|
to="pos.cashRegister.index"
|
|
/>
|
|
<Link
|
|
icon="receipt_long"
|
|
name="pos.sales"
|
|
to="pos.sales.index"
|
|
/>
|
|
<Link
|
|
icon="Sync"
|
|
name="pos.returns"
|
|
to="pos.returns.index"
|
|
/>
|
|
<Link
|
|
icon="accessibility"
|
|
name="pos.clients"
|
|
to="pos.clients.index"
|
|
/>
|
|
<Link
|
|
icon="leaderboard"
|
|
name="pos.clientTiers"
|
|
to="pos.client-tiers.index"
|
|
/>
|
|
<Link
|
|
v-if="hasPermission('invoice-requests.index')"
|
|
icon="request_quote"
|
|
name="pos.billingRequests"
|
|
to="pos.billingRequests.index"
|
|
/>
|
|
</Section>
|
|
<Section
|
|
v-if="hasPermission('users.index')"
|
|
:name="$t('admin.title')"
|
|
>
|
|
<Link
|
|
v-if="hasPermission('users.index')"
|
|
icon="people"
|
|
name="users.title"
|
|
to="admin.users.index"
|
|
/>
|
|
<Link
|
|
v-if="hasPermission('roles.index')"
|
|
icon="license"
|
|
name="roles.title"
|
|
to="admin.roles.index"
|
|
/>
|
|
<Link
|
|
v-if="hasPermission('activities.index')"
|
|
icon="event"
|
|
name="history.title"
|
|
to="admin.activities.index"
|
|
/>
|
|
</Section>
|
|
</template>
|
|
<!-- Contenido -->
|
|
<RouterView />
|
|
<!-- Fin contenido -->
|
|
</Layout>
|
|
</template>
|