@@ -0,0 +1,7 @@
// Kargo hesabı
const KARGO_UCRETI = 49.90; // TL
const KARGO_BEDAVA_SINIRI = 500; // TL üzeri bedava
function kargoUcreti(sepetTutari) {
return sepetTutari >= KARGO_BEDAVA_SINIRI ? 0 : KARGO_UCRETI;
}
The note is not visible to the blocked user.