xblue Posted April 16, 2012 Share Posted April 16, 2012 Merhaba, ürün sayfasındaki indirim oranını yukarı nasıl yuvarlıyabilirim ? %20,15 yerine %20 yapmak istiyorum.. Link to comment Share on other sites More sharing options...
MahmutGulerce Posted April 25, 2012 Share Posted April 25, 2012 PHP de floor, ceil, round gibi yuvarlama fonksiyonları var. Ama TPL dosyalarının çalıştırıldığı Smarty katmanında bu tür işlemler yapılamıyor. Çekirdek modifikasyonuna razı iseniz, prestashop kurulu dizin/controllers/ProductController.php dosyasını açın aşağıdaki satırı bulun $row['real_value'] = Product::$_taxCalculationMethod == PS_TAX_INC ? $reduction_amount : $reduction_amount / (1 + $taxRate / 100); aşağıdaki satır ile değiştirin $row['real_value'] = Product::$_taxCalculationMethod == PS_TAX_INC ? (float)floor($reduction_amount) : (float)floor($reduction_amount / (1 + $taxRate / 100)); Bu floor() fonksiyonu sayının kesirli kısmını siler yani aşağı yuvarlar, rakamı hep üst tam sayıya yuvarlamak için floor yazan yerlere ceil yazabilirsiniz. Nereye yakınsa ona yuvarlansın isterseniz PHP bunu da yapar, round fonksiyonunu kullanabilirsiniz. 1 Link to comment Share on other sites More sharing options...
xblue Posted April 29, 2012 Author Share Posted April 29, 2012 Mahmut Bey hala aşağıdaki resimdeki gibi indirim oranındaki %'yi 3 haneli gösteriyor. Link to comment Share on other sites More sharing options...
MahmutGulerce Posted April 29, 2012 Share Posted April 29, 2012 Ozaman aşağıdaki yukarıdaki yerine kodu deneyin $row['real_value'] = Product::$_taxCalculationMethod == PS_TAX_INC ? (float)number_format($reduction_amount , 2, '.', '') : (float)number_format($reduction_amount / (1 + $taxRate / 100) , 2, '.', ''); Link to comment Share on other sites More sharing options...
xblue Posted May 7, 2012 Author Share Posted May 7, 2012 Buda işe yaramadı Mahmut Bey Link to comment Share on other sites More sharing options...
MahmutGulerce Posted May 8, 2013 Share Posted May 8, 2013 Buda işe yaramadı Mahmut Bey Nasıl bir sonuç aldınız hata kodu falan var mı ? Link to comment Share on other sites More sharing options...
Recommended Posts