diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index b3007e8f..798a7e53 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -2022,7 +2022,6 @@ async function exampleReceipt(id: string) { " @example=" () => { - console.log(v); exampleReceipt(v.id); } " diff --git a/src/stores/payment/index.ts b/src/stores/payment/index.ts index 9d63f426..4b5b716d 100644 --- a/src/stores/payment/index.ts +++ b/src/stores/payment/index.ts @@ -28,7 +28,6 @@ export const usePayment = defineStore('payment-store', () => { `/payment/${id}/flow-account`, ); if (res.status >= 400) return null; - console.log(res); return res.data; }