8315-devToTest #1094

Merged
alexm merged 253 commits from 8315-devToTest into test 2024-12-18 10:31:55 +00:00
1 changed files with 0 additions and 4 deletions
Showing only changes of commit 50360523b3 - Show all commits

View File

@ -17,19 +17,15 @@ const agencyList = ref([]);
defineEmits(['confirm', ...useDialogPluginComponent.emits]);
const fetchAgencyList = async (landed, addressFk) => {
console.log('hola');
if (!landed || !addressFk) {
return;
}
console.log('despuesdelIf');
const { data } = await axios.get('Agencies/landsThatDay', {
params: {
addressFk,
landed: new Date(landed).toISOString(),
},
});
console.log('fetchAgency', data);
agencyList.value = data;
};