#6900 add Serial #610

Merged
jorgep merged 9 commits from 6900-addSerial into test 2024-08-14 14:20:41 +00:00
5 changed files with 125 additions and 1 deletions
Showing only changes of commit c4de1beabf - Show all commits

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,63 @@
<script setup>
import { ref, computed, onBeforeMount } from 'vue';
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';
import { useArrayData } from 'src/composables/useArrayData';
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 arrayData = useArrayData('InvoiceInSerial');
const table = ref();
onBeforeMount(async () => {
const { data } = await axios.get('InvoiceInConfigs/findOne', {
params: { filter: { fields: ['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.
arrayData.store.userParams.daysAgo = data.daysAgo;
await table.value.reload();
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.
});
</script>
<template>
<RightMenu>
<template #right-panel>
<InvoiceInSerialFilter data-key="InvoiceInSerial" />
</template>
</RightMenu>
<VnTable
ref="table"
data-key="InvoiceInSerial"
url="InvoiceIns/getSerial"
:columns="cols"
Review

ahora se puede poner 0

ahora se puede poner 0
:right-search="false"
:disable-option="{ card: true }"
/>
</template>
<i18n>
es:
Serial: Serie
Pending: Pendiente
</i18n>

View File

@ -0,0 +1,49 @@
<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>
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',