目前,Im公司在Magento Backend plugin上为产品制造植被。 我试图获得每个国家产品海运费用清单。
我所说的话:
我把装上产品模型的后备控制器交给我,并从这一模型获得我所需要的全部数据。
这个问题正在得到一个每个国家的航运费用清单。 我如何能够这样做?
I ve试图利用这个例子( ʍǝɥʇɐɯ在评论中刊登。 但是,这并不奏效,我总是空洞。
$addToCartInfo = array("estimate"=> array("country_id"=> "US"), "product"=> "1", "related_product" => "", "qty" => "1" );
$product->setAddToCartInfo($addToCartInfo);
$quote = Mage::getModel( sales/quote );
$shippingAddress = $quote->getShippingAddress();
$shippingAddress->setCountryId( US );
$shippingAddress->setCollectShippingRates(true);
$request = new Varien_Object($addToCartInfo);
$request->setQty(1);
$quote->addProduct($product, $request);
$quote->collectTotals();
$rateResult = $shippingAddress->getGroupedAllShippingRates();
Is there any difference between frontend and backend in this example that makes this code unusuable? How can I do that in the backend?