0

多分誰かが手がかりを持っています。opencart で小売価格を適切な数値に丸めたいと考えています。

基本計算は次のとおりです: (1.50 ユーロ - 2.00 ユーロ - 2.50 ユーロなど)

        $price = sprintf("%.2f", round($pice * 2) / 2);

controller/product/product.php でこのようにしようと思ったのですが、うまくいきません。すべてのテーマ .tpl を編集したくないので、opencart コードで行う必要があります。

今、私はこれを持っていますが、€0.49 または €0.99 の値を取得します

        $price_new = $this->tax->calculate($result['price'],                        $result['tax_class_id'], $this->config->get('config_tax'));
        $price_new_1 = count($price_new , 2)/2-0.01;
    $price_complete = $this->currency->format($price_new_1);
    $spec_price_new = $this->tax->calculate($result['special'], $result['tax_class_id'], $this->config->get('config_tax'));
    $spec_price_new_1 = round($spec_price_new, 2)/2-0.01;
    $spec_price_complete = $this->currency->format($spec_price_new_1);
        
    if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
                $price = $price_complete;
            } else {
                $price = false;
            }
                    
            if ((float)$result['special']) {
                $special = $spec_price_complete;
            } else {
                $special = false;
            }
        

価格につながらなかった以前の試み:

        if (($this->config->get('config_customer_price') && $this->customer-                     >isLogged()) || !$this->config->get('config_customer_price')) {
           $price = sprintf("%.2f", round($this->currency->format($this-  >tax->calculate($result['price'], $result['tax_class_id'], $this->config-  >get('config_tax'))) * 2) / 2);
           
        } else {
           $price = false;
        }
              
        if ((float)$result['special']) {
           $special = sprintf("%.2f", round($this->currency->format($this->tax->calculate($result['special'], $result['tax_class_id'], $this->config->get('config_tax')))* 2) / 2);
        } else {
           $special = false;
        }

私もこの方法で試しました:

        // round price calculation
        $normaloldprice = $this->currency->format($this->tax- >calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax')));
        $newprice = round($normaloldprice * 2)/2;

        $specialoldprice = $this->currency->format($this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax')));
        $newspecialprice = round($specialoldwprice * 2)/2;

        $oldtaxprice = $this->currency->format((float)$product_info['special'] ? $product_info['special'] :                                                  $product_info['price']);
        $newtaxprice = round($oldtaxprice * 2)/2;
        // end round price calculation
                    
        if (($this->config->get('config_customer_price') &&           $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
            $this->data['price'] = $newprice;
        } else {
            $this->data['price'] = false;
        }
                    
        if ((float)$product_info['special']) {
            $this->data['special'] = $newspecialprice;
        } else {
            $this->data['special'] = false;
        }
        
        if ($this->config->get('config_tax')) {
            $this->data['tax'] = $newtaxprice;
        } else {
            $this->data['tax'] = false;
        }
4

1 に答える 1

0

クリーンで鮮明なソリューションのために、このモジュールは必要なことを行います。

http://www.opencart.com/index.php?route=extension/extension/info&extension_id=10351

于 2013-02-03T01:58:59.890 に答える