获取Magento中的税收规则名称

时间:2014-07-14 06:22:17

标签: php magento

我在tax_calculation_rule_id中获得magento所以我想要的是从rule name表中获取tax_calculation_rule。是否有任何功能可以帮助我这样做。

所以基本上这个函数将是tax_calculation_rule表&的查询。将根据tax_calculation_rule_id

重新执行代码

1 个答案:

答案 0 :(得分:2)

请尝试以下操作:

$tax_calculation_rule_id = 10;

$resource = Mage::getSingleton('core/resource');
$adapter = $resource->getConnection('core_read');
$query = $adapter->select()
        ->from($resource->getTableName('tax/tax_calculation_rule'))
        ->where("tax_calculation_rule_id=?", $tax_calculation_rule_id);

$results = $adapter->fetchAll($query);

#checking output 
print_r($results);

P.S。 [code] =>是名字(你在看)