0
我想設置爲用戶自定義屬性在Onepage.php
路徑爲Onepage.php
的saveBilling()
方法是
/app/code/core/Mage/Checkout/Model/Type/Onepage.php
在saveBilling()
我寫了下面的代碼
$this->getQuote()->setData("customer_dri_license","22");
,你可以看到我試圖設定值22
for customer_dri_license
我想在saveOrder()
檢索這個值,我寫了下面的代碼
$this->getQuote()->getData("customer_dri_license")
線,但我無法接收值「22」作爲saveBilling()
設置請讓我知道如果我錯過一些東西。