Merge branch 'beta' into feature/photo-view
gitea/hedera-web/pipeline/pr-beta This commit looks good Details

This commit is contained in:
Javier Segarra 2025-04-02 21:34:45 +00:00
commit 2557e70638
7 changed files with 166 additions and 63 deletions

View File

@ -1,2 +1,5 @@
debian debian
node_modules node_modules
.quasar
build
.vscode

View File

@ -1,5 +1,5 @@
<script setup> <script setup>
import { ref, onMounted, inject, onBeforeUnmount } from 'vue'; import { ref, onMounted, inject, onBeforeUnmount, h } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
@ -12,12 +12,49 @@ import { useAppStore } from 'stores/app';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
const { t } = useI18n(); const { t } = useI18n();
const jApi = inject('jApi'); const api = inject('api');
const router = useRouter(); const router = useRouter();
const userStore = useUserStore(); const userStore = useUserStore();
const appStore = useAppStore(); const appStore = useAppStore();
const { isHeaderMounted } = storeToRefs(appStore); const { isHeaderMounted } = storeToRefs(appStore);
const filter = {
include: [
{
relation: 'visitUser',
scope: {
include: [
{
relation: 'visitAccess',
scope: {
fields: ['id', 'agentFk'],
include: [
{
relation: 'visitAgent',
scope: {
fields: [
'platform',
'browser',
'version'
]
}
}
]
}
},
{
relation: 'user',
scope: {
fields: ['id', 'nickname', 'name']
}
}
],
fields: ['userFk', 'stamp', 'accessFk']
}
}
],
order: 'lastUpdate DESC'
};
const connections = ref([]); const connections = ref([]);
const loading = ref(false); const loading = ref(false);
const intervalId = ref(null); const intervalId = ref(null);
@ -25,20 +62,28 @@ const intervalId = ref(null);
const getConnections = async () => { const getConnections = async () => {
try { try {
loading.value = true; loading.value = true;
connections.value = await jApi.query(
`SELECT vu.userFk userId, vu.stamp, u.nickname, s.lastUpdate, const { data } = await api.get('/userSessions', {
a.platform, a.browser, a.version, u.name user params: { filter: JSON.stringify(filter) }
FROM userSession s });
JOIN visitUser vu ON vu.id = s.userVisitFk
JOIN visitAccess ac ON ac.id = vu.accessFk if (!data) {
JOIN visitAgent a ON a.id = ac.agentFk connections.value = [];
JOIN visit v ON v.id = a.visitFk return;
JOIN account.user u ON u.id = vu.userFk }
ORDER BY lastUpdate DESC`
); connections.value = data
loading.value = false; .map(({ visitUser = {}, ...rest }) => ({
...rest,
user: visitUser.user,
stamp: visitUser.stamp,
visitAgent: visitUser.visitAccess?.visitAgent
}))
.filter(({ user }) => user);
} catch (error) { } catch (error) {
console.error('Error getting connections:', error); console.error('Error getting connections:', error);
} finally {
loading.value = false;
} }
}; };
@ -58,6 +103,13 @@ onMounted(async () => {
}); });
onBeforeUnmount(() => clearInterval(intervalId.value)); onBeforeUnmount(() => clearInterval(intervalId.value));
const renderAgentDetails = connection => {
const agent = connection.visitAgent;
return agent?.platform && agent?.browser && agent?.version
? h('span', `${agent.platform} - ${agent.browser} - ${agent.version}`)
: null;
};
</script> </script>
<template> <template>
@ -89,11 +141,11 @@ onBeforeUnmount(() => clearInterval(intervalId.value));
<CardList <CardList
v-for="(connection, index) in connections" v-for="(connection, index) in connections"
:key="index" :key="index"
:to="{ name: 'accessLog', params: { id: connection.userId } }" :to="{ name: 'accessLog', params: { id: connection.user?.id } }"
> >
<template #content> <template #content>
<span class="text-bold q-mb-sm"> <span class="text-bold q-mb-sm">
{{ connection.nickname }} {{ connection.user?.nickname }}
</span> </span>
<span> <span>
{{ {{
@ -107,23 +159,16 @@ onBeforeUnmount(() => clearInterval(intervalId.value));
) )
}}</span }}</span
> >
<span <component :is="renderAgentDetails(connection)" />
v-if="
connection.platform &&
connection.browser &&
connection.version
"
>
{{ connection.platform }} - {{ connection.browser }} -
{{ connection.version }}
</span>
</template> </template>
<template #actions> <template #actions>
<QBtn <QBtn
icon="people" icon="people"
flat flat
rounded rounded
@click.stop.prevent="supplantUser(connection.user)" @click.stop.prevent="
supplantUser(connection.user?.name)
"
> >
<QTooltip> <QTooltip>
{{ t('supplantUser') }} {{ t('supplantUser') }}

View File

@ -1,16 +1,15 @@
<script setup> <script setup>
import { ref, onMounted, inject } from 'vue'; import { ref, onMounted, inject } from 'vue';
const jApi = inject('jApi'); const api = inject('api');
const links = ref([]); const links = ref([]);
const getLinks = async () => { const getLinks = async () => {
try { try {
links.value = await jApi.query( const filter = { order: 'name ASC' };
`SELECT image, name, description, link FROM link const { data } = await api.get('Links', { params: { filter } });
ORDER BY name` links.value = data;
);
} catch (error) { } catch (error) {
console.error('Error getting links:', error); console.error('Error getting links:', error);
} }

View File

@ -4,7 +4,7 @@ import { useI18n } from 'vue-i18n';
import VnTable from 'src/components/ui/VnTable.vue'; import VnTable from 'src/components/ui/VnTable.vue';
const jApi = inject('jApi'); const api = inject('api');
const { t } = useI18n(); const { t } = useI18n();
const packages = ref([]); const packages = ref([]);
@ -43,7 +43,12 @@ const columns = computed(() => [
const getPackages = async () => { const getPackages = async () => {
try { try {
const data = await jApi.query('CALL vn.agencyVolume()'); const { data } = await api.post(
'applications/agencyVolume/execute-proc',
{
schema: 'vn'
}
);
packages.value = data; packages.value = data;
} catch (error) { } catch (error) {
console.error(error); console.error(error);

View File

@ -8,6 +8,7 @@ import VnInput from 'src/components/common/VnInput.vue';
import VnConfirm from 'src/components/ui/VnConfirm.vue'; import VnConfirm from 'src/components/ui/VnConfirm.vue';
import VnList from 'src/components/ui/VnList.vue'; import VnList from 'src/components/ui/VnList.vue';
import { onUserId } from 'src/utils/onUserId';
import useNotify from 'src/composables/useNotify.js'; import useNotify from 'src/composables/useNotify.js';
import { currency, formatDateTitle } from 'src/lib/filters.js'; import { currency, formatDateTitle } from 'src/lib/filters.js';
import { tpvStore } from 'stores/tpv'; import { tpvStore } from 'stores/tpv';
@ -16,7 +17,7 @@ import { storeToRefs } from 'pinia';
const { t } = useI18n(); const { t } = useI18n();
const route = useRoute(); const route = useRoute();
const jApi = inject('jApi'); const api = inject('api');
const { notify } = useNotify(); const { notify } = useNotify();
const appStore = useAppStore(); const appStore = useAppStore();
const { isHeaderMounted } = storeToRefs(appStore); const { isHeaderMounted } = storeToRefs(appStore);
@ -30,8 +31,16 @@ const tpv = tpvStore();
onMounted(async () => { onMounted(async () => {
await tpv.check(route); await tpv.check(route);
orders.value = await jApi.query('CALL myTicket_list(NULL, NULL)'); const myTickets = await api.post('applications/myTicket_list/execute-proc', {
debt.value = await jApi.getValue('SELECT -myClient_getDebt(NULL)'); schema: 'hedera',
params: [null, null],
});
orders.value = myTickets.data;
});
onUserId(async (userId) => {
const myClientDebt = await api.get(`clients/${userId}/getDebt`);
debt.value = -myClientDebt.data;
}); });
const onPayClick = async () => { const onPayClick = async () => {

View File

@ -1,5 +1,5 @@
<script setup> <script setup>
import { ref, inject, onMounted } from 'vue'; import { ref, inject } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
@ -11,8 +11,10 @@ import { useVnConfirm } from 'src/composables/useVnConfirm.js';
import useNotify from 'src/composables/useNotify.js'; import useNotify from 'src/composables/useNotify.js';
import { useAppStore } from 'stores/app'; import { useAppStore } from 'stores/app';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { onUserId } from 'src/utils/onUserId';
const jApi = inject('jApi'); const jApi = inject('jApi');
const api = inject('api');
const { t } = useI18n(); const { t } = useI18n();
const { openConfirmationModal } = useVnConfirm(); const { openConfirmationModal } = useVnConfirm();
const { notify } = useNotify(); const { notify } = useNotify();
@ -23,18 +25,48 @@ const router = useRouter();
const loading = ref(false); const loading = ref(false);
const orders = ref([]); const orders = ref([]);
const getOrders = async () => { const getOrders = async (clientFk) => {
try { try {
loading.value = true; loading.value = true;
orders.value = await jApi.query(
`SELECT o.id, o.sent, o.deliveryMethodFk, o.taxableBase, const filter = {
a.nickname, am.description agency where: {
FROM myOrder o clientFk,
JOIN myAddress a ON a.id = o.addressFk isConfirmed: false,
JOIN vn.agencyMode am ON am.id = o.agencyModeFk source_app: 'WEB',
WHERE NOT o.isConfirmed },
ORDER BY o.sent DESC` include: [
); {
relation: 'address',
scope: {
fields: ['nickname', 'city'],
}
},
{
relation: 'agencyMode',
scope: {
fields: ['description'],
}
},
],
fields: [
'id',
'landed',
'delivery_method_id',
'taxableBase',
'addressFk',
'agencyModeFk'
]
};
const { data: salixOrders } = await api.get('Orders', {
params: {
filter: JSON.stringify(filter)
}
});
orders.value = salixOrders;
loading.value = false; loading.value = false;
} catch (error) { } catch (error) {
console.error('Error getting orders:', error); console.error('Error getting orders:', error);
@ -43,14 +75,7 @@ const getOrders = async () => {
const removeOrder = async (id, index) => { const removeOrder = async (id, index) => {
try { try {
await jApi.execQuery( await api.delete(`Orders/${id}`);
`START TRANSACTION;
DELETE FROM hedera.myOrder WHERE ((id = #id));
COMMIT`,
{
id
}
);
orders.value.splice(index, 1); orders.value.splice(index, 1);
notify(t('dataSaved'), 'positive'); notify(t('dataSaved'), 'positive');
} catch (error) { } catch (error) {
@ -63,9 +88,8 @@ const loadOrder = orderId => {
router.push({ name: 'catalog' }); router.push({ name: 'catalog' });
}; };
onMounted(async () => { onUserId(getOrders);
getOrders();
});
</script> </script>
<template> <template>
@ -93,11 +117,11 @@ onMounted(async () => {
> >
<template #content> <template #content>
<QItemLabel class="text-bold q-mb-sm"> <QItemLabel class="text-bold q-mb-sm">
{{ formatDateTitle(order.sent) }} {{ formatDateTitle(order.landed) }}
</QItemLabel> </QItemLabel>
<QItemLabel> #{{ order.id }} </QItemLabel> <QItemLabel> #{{ order.id }} </QItemLabel>
<QItemLabel>{{ order.nickname }}</QItemLabel> <QItemLabel>{{ order.address.nickname }}</QItemLabel>
<QItemLabel>{{ order.agency }}</QItemLabel> <QItemLabel>{{ order.agencyMode.description }}</QItemLabel>
<QItemLabel>{{ currency(order.taxableBase) }}</QItemLabel> <QItemLabel>{{ currency(order.taxableBase) }}</QItemLabel>
</template> </template>
<template #actions> <template #actions>

18
src/utils/onUserId.js Normal file
View File

@ -0,0 +1,18 @@
import { watch } from 'vue';
import { useUserStore } from 'stores/user';
const userStore = useUserStore();
export const onUserId = (cb) => watch(
() => userStore?.user?.id,
async userId => {
if (!userId) return;
try {
await cb(userId);
} catch (error) {
console.error(error);
}
},
{ immediate: true }
);