diff --git a/src/components/05_quotation/ProductItem.vue b/src/components/05_quotation/ProductItem.vue index 597107ce..5276ff60 100644 --- a/src/components/05_quotation/ProductItem.vue +++ b/src/components/05_quotation/ProductItem.vue @@ -57,7 +57,6 @@ const currentBtnOpen = ref<{ title: string; opened: boolean[] }[]>([ ]); function calcPrice(c: (typeof rows.value)[number]) { - console.log(c); const originalPrice = c.pricePerUnit; const finalPriceWithVat = precisionRound( originalPrice + originalPrice * (config.value?.vat || 0.07),