#6900 add Serial #610

Merged
jorgep merged 9 commits from 6900-addSerial into test 2024-08-14 14:20:41 +00:00
6 changed files with 143 additions and 7 deletions

View File

@ -117,14 +117,17 @@ async function search(evt) {
isLoading.value = true;
const filter = { ...userParams.value, ...$props.modelValue };
store.userParamsChanged = true;
const { params: newParams } = await arrayData.addFilter({
params: filter,
});
userParams.value = newParams;
try {
const { params: newParams } = await arrayData.addFilter({
params: filter,
});
userParams.value = newParams;
if (!$props.showAll && !Object.values(filter).length) store.data = [];
if (!$props.showAll && !Object.values(filter).length) store.data = [];
} finally {
isLoading.value = false;
}
isLoading.value = false;
emit('search');
}

View File

@ -251,6 +251,7 @@ globals:
privileges: Privileges
ldap: LDAP
samba: Samba
serial: Serial
created: Created
worker: Worker
now: Now

View File

@ -253,6 +253,7 @@ globals:
packages: Bultos
ldap: LDAP
samba: Samba
serial: Facturas por serie
created: Fecha creación
worker: Trabajador
now: Ahora

View File

@ -0,0 +1,68 @@
<script setup>
import { ref, computed, onBeforeMount } from 'vue';
import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';
import axios from 'axios';
import VnTable from 'src/components/VnTable/VnTable.vue';
import RightMenu from 'src/components/common/RightMenu.vue';
import InvoiceInSerialFilter from './InvoiceInSerialFilter.vue';
const { t } = useI18n();
const cols = computed(() => [
{
align: 'left',
name: 'serial',
label: t('Serial'),
columnFilter: false,
},
{
align: 'left',
name: 'pending',
label: t('Pending'),
columnFilter: false,
},
{
align: 'left',
name: 'total',
label: 'Total',
columnFilter: false,
},
]);
const daysAgo = ref();
onBeforeMount(async () => {
const tableParam = useRoute().query.table;
if (tableParam) daysAgo.value = JSON.parse(tableParam).daysAgo;
jorgep marked this conversation as resolved
Review

Si se le pasa un parametro, coge ese valor, en lugar de hacer la llamada.

Si se le pasa un parametro, coge ese valor, en lugar de hacer la llamada.
else
daysAgo.value = (
await axios.get('InvoiceInConfigs/findOne', {
jorgep marked this conversation as resolved Outdated

He probado a pasarlo por user-params, pero como es una prop no es reactiva, habría que modificar el comportamiento de vnpaginate.

He probado a pasarlo por user-params, pero como es una prop no es reactiva, habría que modificar el comportamiento de vnpaginate.
Outdated
Review
watch( () => [props.url, props.filter], ([url, filter]) => mounted.value && fetch({ url, filter }) ); https://gitkraken.dev/link/dnNjb2RlOi8vZWFtb2Rpby5naXRsZW5zL2xpbmsvci83MzM3NWYxZTM3MTc5NDNiZDU4YmYyNGUyMmI0ZjczYmUwOWI3NWUyL2Yvc3JjL2NvbXBvbmVudHMvdWkvVm5QYWdpbmF0ZS52dWU%2FdXJsPWh0dHBzJTNBJTJGJTJGZ2l0ZWEudmVyZG5hdHVyYS5lcyUyRnZlcmRuYXR1cmElMkZzYWxpeC1mcm9udC5naXQmbGluZXM9MTE3?origin=gitlens añadir ahi userParams?

lo he probado pero creo que al recargar la página no me acababa de funcionar bien. Le doy otro intento a ver.

lo he probado pero creo que al recargar la página no me acababa de funcionar bien. Le doy otro intento a ver.

El enlace no puedo abrirlo

El enlace no puedo abrirlo

nada.

nada.
params: { filter: { fields: ['daysAgo'] } },
})
).data?.daysAgo;
});
</script>
<template>
<RightMenu>
<template #right-panel>
<InvoiceInSerialFilter data-key="InvoiceInSerial" />
</template>
</RightMenu>
<VnTable
v-if="!isNaN(daysAgo)"
Review

ahora se puede poner 0

ahora se puede poner 0
data-key="InvoiceInSerial"
url="InvoiceIns/getSerial"
:columns="cols"
:right-search="false"
:user-params="{ daysAgo }"
:disable-option="{ card: true }"
auto-load
/>
</template>
<i18n>
es:
Serial: Serie
Pending: Pendiente
</i18n>

View File

@ -0,0 +1,53 @@
<script setup>
import { useI18n } from 'vue-i18n';
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
import VnInput from 'src/components/common/VnInput.vue';
import VnInputNumber from 'src/components/common/VnInputNumber.vue';
defineProps({ dataKey: { type: String, required: true } });
const { t } = useI18n();
</script>
<template>
<VnFilterPanel :data-key="dataKey" :search-button="true">
<template #tags="{ tag, formatFn }">
<div class="q-gutter-x-xs">
<strong>{{ t(`params.${tag.label}`) }}: </strong>
<span>{{ formatFn(tag.value) }}</span>
</div>
</template>
<template #body="{ params }">
<QItem>
<QItemSection>
<VnInputNumber
v-model="params.daysAgo"
:label="t('params.daysAgo')"
outlined
rounded
dense
/>
</QItemSection>
</QItem>
<QItem>
<QItemSection>
<VnInput
v-model="params.serial"
:label="t('params.serial')"
outlined
rounded
dense
/>
</QItemSection>
</QItem>
</template>
</VnFilterPanel>
</template>
<i18n>
en:
params:
daysAgo: Last days
serial: serial
es:
params:
daysAgo: Últimos días
serial: serie
</i18n>

View File

@ -11,7 +11,7 @@ export default {
component: RouterView,
redirect: { name: 'InvoiceInMain' },
menus: {
main: ['InvoiceInList'],
main: ['InvoiceInList', 'InvoiceInSerial'],
card: [
'InvoiceInBasicData',
'InvoiceInVat',
@ -37,6 +37,16 @@ export default {
},
component: () => import('src/pages/InvoiceIn/InvoiceInList.vue'),
},
{
path: 'serial',
name: 'InvoiceInSerial',
meta: {
title: 'serial',
icon: 'view_list',
},
component: () =>
import('src/pages/InvoiceIn/Serial/InvoiceInSerial.vue'),
},
{
path: 'create',
name: 'InvoiceInCreare',