2012-06-23 62 views
0

在Magento中點擊「下訂單」,我想捕捉它的一些價值觀,它們提供給以下形式:編輯Magento的檢驗表

<form method="post" action="https://www.jambopay.com/JPExpress.aspx" target="_blank"> 
<input type="hidden" name="jp_item_type" value="cart"/> 
<input type="hidden" name="jp_item_name" value="test shop"/> 
<input type="hidden" name="order_id" value="455879"/> 
<input type="hidden" name="jp_business" value="[email protected]"/> 
<input type="hidden" name="jp_amount_1" value="51"/> 
<input type="hidden" name="jp_amount_2" value="0"/> 
<input type="hidden" name="jp_amount_5" value="0"/> 
<input type="hidden" name="jp_payee" value="[email protected]"/> 
<input type="hidden" name="jp_shipping" value="company name"/> 
<input type="hidden" name="jp_rurl" value="http://www.yourwebsite.com/testpost/Result.aspx?ii=0"/> 
<input type="hidden" name="jp_furl" value="http://www.yourwebsite.com/testpost/Result.aspx?ii=1"/> 
<input type="hidden" name="jp_curl" value="http://www.yourwebsite.com/testpost/Result.aspx?ii=2"/> 
<input type="image" src="https://www.jambopay.com/jambohelp/jambo/rsc/paymentsbyJamboPay.jpg"/> 
</form> 

的值包括: 訂單號, 總金額, 客戶電郵地址,

我該怎麼做?

回答

0

你可以保存訂單後的訂單價值是叫你可以從這個方法獲得最後訂單ID
$orderId = Mage::getSingleton('checkout/session')->getLastOrderId(); 一旦你有訂單ID,然後加載順序是這樣 $order = Mage::getModel('sales/order')->load($orderId); ,你可以得到的順序

所有細節