From 663c16e09437221cfe6cc1e15dad0a6281b60287 Mon Sep 17 00:00:00 2001 From: "Kullanici (Patron)" Date: Thu, 30 Jul 2026 03:53:06 +0300 Subject: [PATCH] =?UTF-8?q?fiyat.js:=20g=C4=B1da=20KDV'si=20%10=20(sat?= =?UTF-8?q?=C4=B1r=208)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fiyat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fiyat.js b/fiyat.js index 5c7e470..954511a 100644 --- a/fiyat.js +++ b/fiyat.js @@ -5,7 +5,7 @@ function sonFiyat(fiyat) { return fiyat - (fiyat * INDIRIM / 100); } -const KDV = 18; // yüzde — yeni genel oran +const KDV = 10; // yüzde — gıda indirimi kaldı (rebase çözümü: dalın niyeti korundu) function kdvliFiyat(fiyat) { return fiyat + (fiyat * KDV / 100);