0

magento 1.9.1 の One Page チェックアウトで配送方法のステップをスキップしようとしています。これは必要ないので、モジュールを機能させ、ステップをスキップ/非表示にしました。カートページで方法選択を有効にしました。

私の問題は、チェックアウトに 4 つのステップがあることです。

  1. 請求情報
  2. 配送情報
  3. 支払い情報
  4. 注文レビュー

私が抱えている問題は、顧客が請求情報を入力し、配送に請求先住所を使用するをクリックした後、ステップ 3 に移動することです。ただし、進行状況アイコンは、スキップしたステップ 2 の完了状態に変わりません。たとえば、ステップ 1 で別の住所に発送することを決定し、ステップ 2 に移動すると、状態がアクティブに変更され、ステップ 3 に移動したときに完了します。

これを解決する方法がわかりません。専門知識をお役立てください。モジュールファイルの詳細は以下です。追加しても進行状況が変わらないため、これはこのモジュールが原因であることはわかっています。ただし、アクティブでないときは、手順が正常に機能しています。皆さんが助けてくれることを願っています。ありがとう

config.xml

<?xml version="1.0" encoding="UTF-8"?>
  <config>
      <modules>
          <JMAWD_Checkout>
              <version>0.0.2</version>
          </JMAWD_Checkout>
      </modules>
      <global>
          <models>
              <checkout>
                  <rewrite>
             <type_onepage>JMAWD_Checkout_Model_Type_Onepage</type_onepage>
                  </rewrite>
              </checkout>
          </models>
          <blocks>
              <checkout>
                  <rewrite>
             <onepage_shipping_method>JMAWD_Checkout_Block_Onepage_Shipping_Method</onepage_shipping_method>
                  </rewrite>
              </checkout>
          </blocks>     
      </global>
      <frontend>
          <routers>
              <checkout>
                  <args>
                      <modules>
                          <checkoutjmawd before="Mage_Checkout">JMAWD_Checkout</checkoutjmawd>
                      </modules>
                  </args>
              </checkout>
          </routers>
      </frontend>
  </config>

OnepageController.php

  class JMAWD_Checkout_OnepageController extends Mage_Checkout_OnepageController
  {
         public function saveShippingAction()
      {
          if ($this->_expireAjax()) {
              return;
          }
          if ($this->getRequest()->isPost()) {
              $data = $this->getRequest()->getPost('shipping', array());
              $customerAddressId = $this->getRequest()->getPost('shipping_address_id', false);
              $result = $this->getOnepage()->saveShipping($data, $customerAddressId);
              if (!isset($result['error'])) {
                  $result['goto_section'] = 'payment';
                  $result['update_section'] = array(
                      'name' => 'payment-method',
                      'html' => $this->_getPaymentMethodsHtml()
                  );
              }
        $this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
          }
      }
       public function saveBillingAction()
      {
          if ($this->_expireAjax()) {
              return;
          }
          if ($this->getRequest()->isPost()) {
              $data = $this->getRequest()->getPost('billing', array());
              $customerAddressId = $this->getRequest()->getPost('billing_address_id', false);
              $result = $this->getOnepage()->saveBilling($data, $customerAddressId);
              if (!isset($result['error'])) {
                  /* check quote for virtual */
                  if ($this->getOnepage()->getQuote()->isVirtual()) {
                      $result['goto_section'] = 'payment';
                      $result['update_section'] = array(
                          'name' => 'payment-method',
                          'html' => $this->_getPaymentMethodsHtml()
                      );
                  }
                  elseif (isset($data['use_for_shipping']) && $data['use_for_shipping'] == 1)             {
                      $result['goto_section'] = 'payment';
                      $result['update_section'] = array(
                          'name' => 'payment-method',
                          'html' => $this->_getPaymentMethodsHtml()
                      );
                  }
                  else {
                      $result['goto_section'] = 'shipping';
                  }
              }                 $this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
          }
      }
  }

/Model/Type フォルダの Onepage.php

<?php
class JMAWD_Checkout_Model_Type_Onepage extends Mage_Checkout_Model_Type_Onepage
  {
      protected function validateOrder()
      {
          $helper = Mage::helper('checkout');
          if ($this->getQuote()->getIsMultiShipping()) {
              Mage::throwException($helper->__('Invalid checkout type.'));
          }
          $addressValidation = $this->getQuote()->getBillingAddress()->validate();
          if ($addressValidation !== true) {
              Mage::throwException($helper->__('Please check billing address information.'));
          }
          if (!($this->getQuote()->getPayment()->getMethod())) {
              Mage::throwException($helper->__('Please select valid payment method.'));
          }
      }
  }

/Block/Onepage/Shipping フォルダーの Method.php

<?php
class JMAWD_Checkout_Block_Onepage_Shipping_Method extends  Mage_Checkout_Block_Onepage_Shipping_Method
{
    public function isShow()
    {
        return false;
    }
}

そして最後にモジュールxmlファイル

<?xml version="1.0" encoding="UTF-8"?>
  <config>
      <modules>
          <JMAWD_Checkout>
              <active>true</active>
              <codePool>local</codePool>
          </JMAWD_Checkout>
      </modules>
  </config>
4

1 に答える 1

0

コードを調べたところ、すべてが正常に機能し、正常に見えました。そのため、状態を変更するための進行状況を取得するために、jquery を使用しました。だから誰かが同じ問題を抱えているなら。以下のコードを使用できます。フッターに追加しただけです。

<script>
    jQuery(document).ready(function(){
    jQuery('#billing-buttons-container button').click(function(){
    if(!jQuery('#billing:use_for_shipping_no').is(':checked')) {
    jQuery('#top-opc-shipping').addClass('allow');
    }
    });
    });
</script>
于 2015-12-22T17:12:17.217 に答える