降低产品价格的准确性
正如我在标题中所述,我想从价格(.00)中删除精度 我做了这些: 在app / code / core / Mage / Directory / Model / Currency.php中 在 public function format() 我变了 return $this->formatPrecision($price, 2, $options, $includeContainer, $addBrackets); 至 return $this->formatPrecision($price, 0, $options, $includeContainer, $addBrackets); 在/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Price.php中 在 public function getEscapedValue() 我变了 return number_format($value, 2, null, ''); 至 return number_format($value, 0, null, ''); …