auto kind of working

This commit is contained in:
2024-07-17 18:04:19 -04:00
parent 601c2e27ba
commit 74fcd282db
4 changed files with 49 additions and 32 deletions

View File

@@ -152,8 +152,8 @@ export default defineComponent({
withCredentials: true,
})
.then((response: any) => {
this.automatic = response.data.automatic;
this.getCustomer(response.data.automatic.customer_id);
this.automatic = response.data;
this.getCustomer(response.data.customer_id);
this.sumdelivery(this.$route.params.id);
})