2012-04-19 3 views

답변

0

백지에서 mage_tax 모듈을 사용할 수 있습니까?

System > Configuration > Advanced > Enable the Mage_Tax module

그렇다면, 당신은 당신의 젠토 배포판에서 다음 폴더 생성이 대신

  1. 를 해결하려고 마법사 1.4을 사용하고 있습니다 :에

  2. 사본 app/code/core/Mage/CatalogRule/Model/Observer.phpapp/code/local/Mage/CatalogRule/모델 app/code/local/Mage/CatalogRule/Model

  3. 새 파일/복사 된 파일 열기

    if ($observer->hasCustomerGroupId()) { 
        $gId = $observer->getEvent()->getCustomerGroupId(); 
    } elseif ($product->hasCustomerGroupId()) { 
        $gId = $product->getCustomerGroupId(); 
    } else { 
        $gId = Mage::getSingleton('customer/session')->getCustomerGroupId(); 
    } 
    

    if ($observer->hasCustomerGroupId()) { 
        $gId = $observer->getEvent()->getCustomerGroupId(); 
    } elseif ($product->hasCustomerGroupId()) { 
        $gId = $product->hasCustomerGroupId(); 
    } else { 
        $gId = Mage::getSingleton('customer/session')->getCustomerGroupId(); 
    } 
    

    에서

:와 105 변경이 코드를 라인으로 이동

관련 문제