CambiosSolicitadosSuppliers #214

Merged
jgallego merged 21 commits from :CambiosSolicitadosSuppliers into dev 2024-03-13 14:38:00 +00:00
1 changed files with 30 additions and 10 deletions
Showing only changes of commit 67eb8e82b6 - Show all commits

View File

@ -52,9 +52,13 @@ const isAdministrative = computed(() => {
@on-fetch="(data) => setData(data)"
>
<template #header-left>
<a v-if="isAdministrative" class="header link" :href="supplierUrl">
<router-link
v-if="isAdministrative"
jsegarra marked this conversation as resolved Outdated

Duda, pero esto se tiene que hacer en cada módulo?
No se puede hacer a nivel de CardSummary?

Duda, pero esto se tiene que hacer en cada módulo? No se puede hacer a nivel de CardSummary?

@jsegarra actualmente eso se maneja de manera externa al CardSummary, lo que si se puede hacer es integrar ese icon dentro del CardSummary y no repetirlo en todas las vistas

@jsegarra actualmente eso se maneja de manera externa al `CardSummary`, lo que si se puede hacer es integrar ese icon dentro del `CardSummary` y no repetirlo en todas las vistas

Acá esta el cambio del CardSummary del que hablamos

Commit: f1961f07d1

Acá esta el cambio del `CardSummary` del que hablamos Commit: https://gitea.verdnatura.es/verdnatura/salix-front/commit/f1961f07d103e78310aadfea9b2ece6bfb6bdb7a
class="header link"
:to="{ name: 'SupplierSummary', params: { id: entityId } }"
>
<QIcon name="open_in_new" color="white" size="sm" />
</a>
</router-link>
</template>
<template #header>
<span>{{ supplier.name }} - {{ supplier.id }}</span>
@ -62,10 +66,14 @@ const isAdministrative = computed(() => {
<template #body>
<QCard class="vn-one">
<a v-if="isAdministrative" class="header link" :href="supplierUrl">
<router-link
v-if="isAdministrative"
class="header link"
:to="{ name: 'SupplierBasicData', params: { id: entityId } }"
>
{{ t('globals.summary.basicData') }}
<QIcon name="open_in_new" color="primary" />
</a>
</router-link>
<span v-else> {{ t('globals.summary.basicData') }}</span>
<VnLv label="Id" :value="supplier.id" />
<VnLv label="Alias" :value="supplier.nickname" />
@ -105,10 +113,14 @@ const isAdministrative = computed(() => {
</VnLv>
</QCard>
<QCard class="vn-one">
<a v-if="isAdministrative" class="header link" :href="supplierUrl">
<router-link
v-if="isAdministrative"
class="header link"
:to="{ name: 'SupplierBillingData', params: { id: entityId } }"
>
{{ t('supplier.summary.billingData') }}
<QIcon name="open_in_new" color="primary" />
</a>
</router-link>
<span v-else> {{ t('supplier.summary.billingData') }}</span>
<VnLv
:label="t('supplier.summary.payMethod')"
@ -124,10 +136,14 @@ const isAdministrative = computed(() => {
<VnLv :label="t('supplier.summary.account')" :value="supplier.account" />
</QCard>
<QCard class="vn-one">
<a v-if="isAdministrative" class="header link" :href="supplierUrl">
<router-link
v-if="isAdministrative"
class="header link"
:to="{ name: 'SupplierFiscalData', params: { id: entityId } }"
>
{{ t('supplier.summary.fiscalData') }}
<QIcon name="open_in_new" color="primary" />
</a>
</router-link>
<span v-else> {{ t('supplier.summary.fiscalData') }}</span>
<VnLv
:label="t('supplier.summary.sageTaxType')"
@ -155,10 +171,14 @@ const isAdministrative = computed(() => {
/>
</QCard>
<QCard class="vn-one">
<a v-if="isAdministrative" class="header link" :href="supplierUrl">
<router-link
v-if="isAdministrative"
class="header link"
:to="{ name: 'SupplierFiscalData', params: { id: entityId } }"
>
{{ t('supplier.summary.fiscalAddress') }}
<QIcon name="open_in_new" color="primary" />
</a>
</router-link>
<span v-else> {{ t('supplier.summary.fiscalAddress') }}</span>
<VnLv :label="t('supplier.summary.socialName')" :value="supplier.name" />
<VnLv :label="t('supplier.summary.taxNumber')" :value="supplier.nif" />