PR-CUSTOMER #186
src/pages/Customer/Card
|
@ -32,7 +32,7 @@ const clientRisksRef = ref(null);
|
|||
const companiesOptions = ref([]);
|
||||
const companyId = ref(null);
|
||||
const receiptsRef = ref(null);
|
||||
const data = ref([]);
|
||||
const receiptsData = ref([]);
|
||||
|
||||
const filterCompanies = { order: ['code'] };
|
||||
const userParams = {
|
||||
|
@ -136,14 +136,14 @@ const columns = computed(() => [
|
|||
{
|
||||
align: 'left',
|
||||
field: 'debit',
|
||||
format: (value) => toCurrency(value),
|
||||
format: (value) => value && toCurrency(value),
|
||||
|
||||
label: t('Debit'),
|
||||
name: 'debit',
|
||||
},
|
||||
{
|
||||
align: 'left',
|
||||
field: 'credit',
|
||||
format: (value) => toCurrency(value),
|
||||
format: (value) => value && toCurrency(value),
|
||||
label: t('Havings'),
|
||||
name: 'havings',
|
||||
},
|
||||
|
@ -188,7 +188,7 @@ const getData = () => {
|
|||
};
|
||||
|
||||
const onFetch = (data) => {
|
||||
data.value = data;
|
||||
receiptsData.value = data;
|
||||
};
|
||||
|
||||
const showNewPaymentDialog = () => {
|
||||
|
@ -249,7 +249,6 @@ const sendEmailAction = () => {
|
|||
:user-params="userParams"
|
||||
ref="receiptsRef"
|
||||
@on-fetch="onFetch"
|
||||
@on-paginate="onPaginate"
|
||||
>
|
||||
<template #body="{ rows }">
|
||||
<QTable
|
||||
|
@ -273,7 +272,7 @@ const sendEmailAction = () => {
|
|||
tableColumnComponents[props.col.name].event(props)
|
||||
"
|
||||
jsegarra marked this conversation as resolved
Outdated
jgallego
commented
http://localhost:5000/#!/client/100/balance/index en salix hay un registro y el boton de enviar compensación, en lilium no aparece ni el registro ni el boton http://localhost:5000/#!/client/100/balance/index en salix hay un registro y el boton de enviar compensación, en lilium no aparece ni el registro ni el boton
cfonseca
commented
Corregido: Corregido: f8b698e4e7 hace falta cambiar el icono del mail, no lo he encontrado en Lilium aun
jsegarra
commented
Efectivamente no está. Hablamos con el responsable de la iconografía Gracias Efectivamente no está.
Hablamos con el responsable de la iconografía
Gracias
jsegarra
commented
Resuelto Resuelto
|
||||
>
|
||||
<template v-if="props.col.name !== 'isConciliate'">
|
||||
<template v-if="props.col.name !== 'conciliated'">
|
||||
{{ props.value }}
|
||||
</template>
|
||||
<WorkerDescriptorProxy
|
||||
|
@ -302,7 +301,7 @@ const sendEmailAction = () => {
|
|||
/>
|
||||
</div>
|
||||
|
||||
<QCard class="q-ma-md q-pa-md q-mt-lg" v-if="data?.length">
|
||||
<QCard class="q-ma-md q-pa-md q-mt-lg" v-if="receiptsData?.length">
|
||||
<QCardSection>
|
||||
<div class="flex justify-center text-subtitle1 text-bold">
|
||||
{{ t('Total by company') }}
|
||||
|
|
Loading…
Reference in New Issue
en las columnas debe y haber si el valor es cero no mostrarlo
tal como lo hace en salix.
Corregido:
d74119f433
Yo lo he visto OK