0
1
Fork 0

Remove fetching of default order method

This commit is contained in:
William Buezas 2024-09-02 12:39:03 -03:00
parent 975495113d
commit 7026e3416f
1 changed files with 0 additions and 12 deletions

View File

@ -239,13 +239,6 @@ const onPreviousStep = async stepIndex => {
}
};
const getDefaultValues = async () => {
return await jApi.query(
`SELECT deliveryMethod, agencyModeFk, addressFk, defaultAgencyFk
FROM myBasketDefaults`
);
};
const submit = async () => {
loading.value = true;
let query =
@ -299,11 +292,6 @@ onMounted(async () => {
orderForm.value.agency = order.agencyModeFk;
orderForm.value.address = order.addressFk;
}
} else {
const [defaultValues] = await getDefaultValues();
if (defaultValues) {
orderForm.value.method = defaultValues.deliveryMethod;
}
}
getAddresses();