aşağıdaki Değişiklikleri yaparak faturanızda Kdv'siz Değer gösterebilirsiniz. Örnek resimde sorulduğu gibi. admin/controller/sale/order.php Dosyasını açın (1.5.5 Sürümü için anlatıyorum); //Arayın PHP: 'price' => $this->currency->format($product['price'] + ($this->config->get('config_tax') ? $product['tax'] : 0), $order_info['currency_code'], $order_info['currency_value']), //Değiştirin PHP: 'price' => $this->currency->format($product['price'], $order_info['currency_code'], $order_info['currency_value']), //Arayın PHP: 'total' => $this->currency->format($product['total'] + ($this->config->get('config_tax') ? ($product['tax'] * $product['quantity']) : 0), $order_info['currency_code'], $order_info['currency_value']) //Değiştirin PHP: 'total' => $this->currency->format($product['total'] * $product['quantity'], $order_info['currency_code'], $order_info['currency_value'])
aynı düzenlemeyi 2.3 de denemem sonucu admin panelde siparişleri inceleyemedim. mantıklı olan düzenlenen şekilde olduğu halde ilgilenen olmaması ilginç. bu düzenlemenin aynı zamanda müşteri sepetinde de olması gerek.