PR-CUSTOMER #186

Merged
jsegarra merged 105 commits from :PR-CUSTOMER into dev 2024-04-19 15:55:53 +00:00
1 changed files with 6 additions and 7 deletions
Showing only changes of commit d74119f433 - Show all commits
src/pages/Customer/Card

View File

@ -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),

en las columnas debe y haber si el valor es cero no mostrarlo
tal como lo hace en salix.

en las columnas debe y haber si el valor es cero no mostrarlo tal como lo hace en salix.

Corregido: d74119f433

Corregido: d74119f433

Yo lo he visto OK

Yo lo he visto OK
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

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

Corregido: f8b698e4e7 hace falta cambiar el icono del mail, no lo he encontrado en Lilium aun

Corregido: f8b698e4e7 hace falta cambiar el icono del mail, no lo he encontrado en Lilium aun

Efectivamente no está.

Hablamos con el responsable de la iconografía

Gracias

Efectivamente no está. Hablamos con el responsable de la iconografía Gracias

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') }}