2011-01-06 105 views
1

有沒有辦法在Magento的管理員中爲Google Checkout更改默認的新訂單狀態。Magento Google Checkout更改新訂單狀態

在下拉框中,只有選項可選擇待定。理想情況下,我希望能夠將其設置爲Processing。

如何在該下拉框中添加更多選項?

回答

3

的最快方法是創建一個模塊具有以下system.xml文件:

<config> 
    <sections> 
     <google> 
      <groups> 
       <checkout> 
        <fields> 
         <order_status> 
          <source_model>adminhtml/system_config_source_order_status</source_model> 
         </order_status> 
        <fields> 
       <checkout> 
      </groups> 
     </google> 
    </sections> 
</config> 

這將只是讓所有狀態可用。

+0

這是一個偉大的想法clockworkgeek。我會這樣做!謝謝! – sulman 2011-01-08 10:12:02

相關問題