PR-CUSTOMER #186
|
@ -43,19 +43,35 @@ watch(
|
|||
);
|
||||
|
||||
const getData = async (id) => {
|
||||
const filter = { clientFk: id };
|
||||
try {
|
||||
const { data } = await axios.get(`ClientUnpaids/${id}`);
|
||||
unpaidClient.value = true;
|
||||
amount.value = data.amount;
|
||||
dated.value = data.dated;
|
||||
initialData.value = data;
|
||||
const { data } = await axios.get('ClientUnpaids', {
|
||||
params: { filter: JSON.stringify(filter) },
|
||||
});
|
||||
const unpaid = data.find((element) => element.clientFk == id);
|
||||
jsegarra marked this conversation as resolved
Outdated
|
||||
if (unpaid) {
|
||||
jsegarra marked this conversation as resolved
Outdated
jsegarra
commented
Mi propuesta es si data.length>0 Mi propuesta es si data.length>0
cfonseca
commented
Corregido: Corregido: 93015d9f98
|
||||
setValues(unpaid);
|
||||
} else {
|
||||
defaultValues();
|
||||
}
|
||||
} catch (error) {
|
||||
unpaidClient.value = false;
|
||||
initialData.value.amount = null;
|
||||
setInitialData();
|
||||
defaultValues();
|
||||
}
|
||||
};
|
||||
|
||||
const setValues = (data) => {
|
||||
unpaidClient.value = true;
|
||||
amount.value = data.amount;
|
||||
jsegarra marked this conversation as resolved
Outdated
jsegarra
commented
No se muestran los botones No se muestran los botones
cfonseca
commented
Los botones siempre estaban visibles, corregí que cuando habían datos no se estaban mostrando adecuadamente y no recargaba la data al cambiar manualmente la url: Los botones siempre estaban visibles, corregí que cuando habían datos no se estaban mostrando adecuadamente y no recargaba la data al cambiar manualmente la url: 7eca27b8af
|
||||
dated.value = data.dated;
|
||||
initialData.value = data;
|
||||
};
|
||||
|
||||
const defaultValues = () => {
|
||||
unpaidClient.value = false;
|
||||
initialData.value.amount = null;
|
||||
setInitialData();
|
||||
};
|
||||
|
||||
const setInitialData = () => {
|
||||
amount.value = initialData.value.amount;
|
||||
dated.value = initialData.value.dated;
|
||||
|
|
Loading…
Reference in New Issue
Porque haces un find por id, si ya lo has hecho en la query/filter? Te devoilverá el resultado
Si filtras por 1101, te llegará [1101]
Corregido:
93015d9f98