我在tax_calculation_rule_id
中获得magento
所以我想要的是从rule name
表中获取tax_calculation_rule
。是否有任何功能可以帮助我这样做。
所以基本上这个函数将是tax_calculation_rule
表&的查询。将根据tax_calculation_rule_id
。
答案 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] =>是名字(你在看)