HOTFIX #8217 Update Customer Credit #986

Merged
jsegarra merged 26 commits from hotfix_8217_updateCustomerCredit into master 2024-11-28 12:34:12 +00:00
1 changed files with 13 additions and 19 deletions
Showing only changes of commit 8d59cfa9c3 - Show all commits

View File

@ -2,7 +2,7 @@
import { onBeforeMount, ref, watch } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRoute, useRouter } from 'vue-router';
import VnPaginate from 'src/components/ui/VnPaginate.vue';
import FetchData from 'components/FetchData.vue';
import axios from 'axios';
@ -53,7 +53,6 @@ const addressFilter = {
onBeforeMount(() => {
const { id } = route.params;
// getAddressesData(id);
getClientData(id);
jsegarra marked this conversation as resolved Outdated
Outdated
Review

Comentado?

Comentado?
});
@ -61,14 +60,9 @@ watch(
() => route.params.id,
(newValue) => {
if (!newValue) return;
// getAddressesData(newValue);
getClientData(newValue);
}
);
async function onFetch(data) {
addresses.value = data;
sortAddresses();
}
const getClientData = async (id) => {
try {
@ -94,9 +88,9 @@ const setDefault = (address) => {
});
};
const sortAddresses = () => {
if (!client.value || !addresses.value) return;
addresses.value = addresses.value.sort((a, b) => {
const sortAddresses = (data) => {
if (!client.value || !data) return;
addresses.value = data.sort((a, b) => {
return isDefaultAddress(b) - isDefaultAddress(a);
});
};
@ -117,17 +111,17 @@ const toCustomerAddressEdit = (addressId) => {
</script>
<template>
<FetchData
@on-fetch="sortAddresses"
auto-load
data-key="CustomerAddresses"
order="id DESC"
ref="vnPaginateRef"
:filter="addressFilter"
:url="`Clients/${route.params.id}/addresses`"
/>
Outdated
Review

Ahora tiene un VnPaginate?

Ahora tiene un VnPaginate?

Me parece "rudimentario" dejar el codigo como estaba y preferia usar componentes nuestros.
Sin embargo, veo que el VnPagiante no tiene contenido, pero el resultado es el mismo
Voy a cambiarlo por FetchData

Me parece "rudimentario" dejar el codigo como estaba y preferia usar componentes nuestros. Sin embargo, veo que el VnPagiante no tiene contenido, pero el resultado es el mismo Voy a cambiarlo por FetchData
<div class="full-width flex justify-center">
<QCard class="card-width q-pa-lg">
<VnPaginate
@on-fetch="onFetch"
auto-load
data-key="CustomerAddresses"
order="id DESC"
ref="vnPaginateRef"
:filter="addressFilter"
:url="`Clients/${route.params.id}/addresses`"
></VnPaginate>
<QCardSection>
<div
v-for="(item, index) in addresses"