Merge pull request 'refactor: refs #5835' (!129) from 5835-fixListAndSummary into dev
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
Reviewed-on: #129 Reviewed-by: Alex Moreno <alexm@verdnatura.es> Reviewed-by: Juan Ferrer <juan@verdnatura.es>
This commit is contained in:
commit
e711040876
|
@ -24,11 +24,8 @@ const pinnedModulesRef = ref();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<QHeader class="bg-dark" color="white" elevated>
|
<QHeader color="white" elevated>
|
||||||
<QToolbar
|
<QToolbar class="q-py-sm q-px-md">
|
||||||
class="q-py-sm q-px-md"
|
|
||||||
:class="{ 'q-gutter-x-sm': !quasar.platform.is.mobile }"
|
|
||||||
>
|
|
||||||
<QBtn @click="stateStore.toggleLeftDrawer()" icon="menu" round dense flat>
|
<QBtn @click="stateStore.toggleLeftDrawer()" icon="menu" round dense flat>
|
||||||
<QTooltip bottom anchor="bottom right">
|
<QTooltip bottom anchor="bottom right">
|
||||||
{{ t('globals.collapseMenu') }}
|
{{ t('globals.collapseMenu') }}
|
||||||
|
@ -108,6 +105,9 @@ const pinnedModulesRef = ref();
|
||||||
.searchbar {
|
.searchbar {
|
||||||
width: max-content;
|
width: max-content;
|
||||||
}
|
}
|
||||||
|
.q-header {
|
||||||
|
background-color: var(--vn-dark);
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<i18n>
|
<i18n>
|
||||||
en:
|
en:
|
||||||
|
|
|
@ -69,6 +69,10 @@ function getBreadcrumb(param) {
|
||||||
> div {
|
> div {
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
}
|
}
|
||||||
|
&--last,
|
||||||
|
&__separator {
|
||||||
|
color: var(--vn-label);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: $breakpoint-md) {
|
@media (max-width: $breakpoint-md) {
|
||||||
.q-breadcrumbs {
|
.q-breadcrumbs {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { dashIfEmpty } from 'src/filters';
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
label: { type: String, default: null },
|
label: { type: String, default: null },
|
||||||
value: {
|
value: {
|
||||||
type: [String, Boolean],
|
type: [String, Boolean, Number],
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
info: { type: String, default: null },
|
info: { type: String, default: null },
|
||||||
|
|
|
@ -371,7 +371,7 @@ export default {
|
||||||
},
|
},
|
||||||
invoiceOut: {
|
invoiceOut: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
invoiceOuts: 'Fact. emitidas',
|
invoiceOuts: 'Crear factura',
|
||||||
list: 'Listado',
|
list: 'Listado',
|
||||||
negativeBases: 'Bases Negativas',
|
negativeBases: 'Bases Negativas',
|
||||||
globalInvoicing: 'Facturación global',
|
globalInvoicing: 'Facturación global',
|
||||||
|
|
|
@ -84,9 +84,9 @@ function viewSummary(id) {
|
||||||
:key="row.id"
|
:key="row.id"
|
||||||
:title="row.supplierRef"
|
:title="row.supplierRef"
|
||||||
@click="navigate(row.id)"
|
@click="navigate(row.id)"
|
||||||
|
:id="row.id"
|
||||||
>
|
>
|
||||||
<template #list-items>
|
<template #list-items>
|
||||||
<VnLv label="ID" :value="row.id" />
|
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('invoiceIn.list.supplierRef')"
|
:label="t('invoiceIn.list.supplierRef')"
|
||||||
:value="row.supplierRef"
|
:value="row.supplierRef"
|
||||||
|
@ -112,42 +112,34 @@ function viewSummary(id) {
|
||||||
:label="t('invoiceIn.list.amount')"
|
:label="t('invoiceIn.list.amount')"
|
||||||
:value="toCurrency(row.amount)"
|
:value="toCurrency(row.amount)"
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('invoiceIn.list.isBooked')">
|
<VnLv
|
||||||
<template #value>
|
:label="t('invoiceIn.list.isBooked')"
|
||||||
<QCheckbox
|
:value="!!row.isBooked"
|
||||||
class="no-pointer-events"
|
/>
|
||||||
v-model="row.isBooked"
|
|
||||||
size="xs"
|
|
||||||
:true-value="1"
|
|
||||||
:false-value="0"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</VnLv>
|
|
||||||
</template>
|
</template>
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<QBtn
|
<QBtn
|
||||||
flat
|
:label="t('components.smartCard.openCard')"
|
||||||
icon="arrow_circle_right"
|
|
||||||
@click.stop="navigate(row.id)"
|
@click.stop="navigate(row.id)"
|
||||||
>
|
class="bg-vn-dark"
|
||||||
<QTooltip>
|
outline
|
||||||
{{ t('components.smartCard.openCard') }}
|
type="reset"
|
||||||
</QTooltip>
|
/>
|
||||||
</QBtn>
|
|
||||||
<QBtn flat icon="preview" @click.stop="viewSummary(row.id)">
|
|
||||||
<QTooltip>
|
|
||||||
{{ t('components.smartCard.openSummary') }}
|
|
||||||
</QTooltip>
|
|
||||||
</QBtn>
|
|
||||||
<QBtn
|
<QBtn
|
||||||
flat
|
:label="t('components.smartCard.openSummary')"
|
||||||
icon="cloud_download"
|
@click.stop="viewSummary(row.id)"
|
||||||
|
color="primary"
|
||||||
|
type="submit"
|
||||||
|
class="q-mt-sm"
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="t('Download')"
|
||||||
|
class="q-mt-sm"
|
||||||
@click.stop="downloadFile(row.dmsFk)"
|
@click.stop="downloadFile(row.dmsFk)"
|
||||||
>
|
type="submit"
|
||||||
<QTooltip>
|
color="primary"
|
||||||
{{ t('components.smartCard.downloadFile') }}
|
/>
|
||||||
</QTooltip>
|
|
||||||
</QBtn>
|
|
||||||
</template>
|
</template>
|
||||||
</CardList>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
|
@ -176,4 +168,5 @@ function viewSummary(id) {
|
||||||
es:
|
es:
|
||||||
Search invoice: Buscar factura emitida
|
Search invoice: Buscar factura emitida
|
||||||
You can search by invoice reference: Puedes buscar por referencia de la factura
|
You can search by invoice reference: Puedes buscar por referencia de la factura
|
||||||
|
Download: Descargar
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -11,13 +11,13 @@ export const useNavigationStore = defineStore('navigationStore', () => {
|
||||||
'claim',
|
'claim',
|
||||||
'ticket',
|
'ticket',
|
||||||
'invoiceOut',
|
'invoiceOut',
|
||||||
|
'invoiceIn',
|
||||||
'worker',
|
'worker',
|
||||||
'shelving',
|
'shelving',
|
||||||
'wagon',
|
'wagon',
|
||||||
'route',
|
'route',
|
||||||
'supplier',
|
'supplier',
|
||||||
'travel',
|
'travel',
|
||||||
'invoiceIn',
|
|
||||||
];
|
];
|
||||||
const pinnedModules = ref([]);
|
const pinnedModules = ref([]);
|
||||||
const role = useRole();
|
const role = useRole();
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/// <reference types="cypress" />
|
/// <reference types="cypress" />
|
||||||
describe('InvoiceInList', () => {
|
describe('InvoiceInList', () => {
|
||||||
const firstCard = '.q-card:nth-child(1)';
|
const firstCard = '.q-card:nth-child(1)';
|
||||||
const firstId =
|
const firstChipId =
|
||||||
'.q-card:nth-child(1) .list-items > .vn-label-value:first-child > .value > span';
|
':nth-child(1) > :nth-child(1) > .justify-between > .flex > .q-chip > .q-chip__content';
|
||||||
const firstDetailBtn = '.q-card:nth-child(1) .q-btn:nth-child(2)';
|
const firstDetailBtn = '.q-card:nth-child(1) .q-btn:nth-child(2)';
|
||||||
const summaryHeaders = '.summaryBody .header';
|
const summaryHeaders = '.summaryBody .header';
|
||||||
|
|
||||||
|
@ -12,9 +12,10 @@ describe('InvoiceInList', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should redirect on clicking a invoice', () => {
|
it('should redirect on clicking a invoice', () => {
|
||||||
cy.get(firstId)
|
cy.get(firstChipId)
|
||||||
.invoke('text')
|
.invoke('text')
|
||||||
.then((id) => {
|
.then((content) => {
|
||||||
|
const id = content.substring(4);
|
||||||
cy.get(firstCard).click();
|
cy.get(firstCard).click();
|
||||||
cy.url().should('include', `/invoice-in/${id}/summary`);
|
cy.url().should('include', `/invoice-in/${id}/summary`);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue