共计 4548 个字符,预计需要花费 12 分钟才能阅读完成。
Magento 内置了UPS FEDEX DHL USPS 的扩展,因为这些扩展都需要条用官方的结果,而我们的价格和官方又不一样,所以独立出来新建扩展就可以自定义自己的计算规则和价格.同样我也考虑了用SOAP,因为站点比较多.价格也统一了
参考官方文档的步骤很快能实现这一功能:
Magento Official WIKI :Create Shiping Mod
创建模块的步骤:
1.在app/etc/modules中新建xml配置文件用来申明该插件的代码位置和状态
2.在app/code/local(community)目录中存放插件,目录需要在app/etc/modules/Company_Module.xml中指定
3.在插件目錄中撰寫config.xml和system.xml配置相關的文件進行配置.
4.撰寫php代碼,model和block部份.
5.後臺配置,前臺調試
一.先到app/etc/modules目录中新建一个文件,名为:Plima_Ship.xml.根据Magento的命名规则,_前为org名 称(公司或者组织,当然了.根据自己喜好设定),_后为模块名称.文件全称意味着在 app/etc/code/local(community)中目录和配置文件相符.如:Plima_Ship.xml对应的目录应该为:app/etc /code/local(community)/Plima/Ship
Create config file in app/etc/modules and declare module
[php]
< ?xml version="1.0"?>
< config>
< modules>
< Plima_Ship>
< active>t< /active>
< codePool>lo< /codePool>
< /Plima_Ship>
< /modules>
< /config>
[/php]
为模块名称,必须和文件对应,否则Magento找不到模块
中true为启用,反之false为停用
代码位置,之前我提到了有两个地方:local和community,在此申明就可以了,当然了.如果你非要写在core也是可以的,只是预留在这两个位置方便我们对插件进行管理.接下来进行第二步.
二.在app/etc/code/local/中創建插件的目錄結構:
etc 中存放config.xml和system.xml的配置文件
Model 為php的計算模型
Helper 為助手,根據框架的思想來設計的
三.在etc中新建兩個文件,config.xml和system.xml
由于文件代码较多,在文章中我就不一一阐述了,只挑一部分进行说明,两个文件可以在下边的url中下载:
config.xml:http://
system.xml http://
文件说明:
1.config.xml:
之前強調的模塊名稱再一次在這裡出現,需要特別注意名稱的大小寫和目錄的目錄須保持一致;
[php]
< modules>
< Plima_Ship>
< version>0.1.0 B< /version>
< depends>
< Mage_Shipping />
< /depends>
< /Plima_Ship>
< /modules>
[/php]
中告訴Magento ship provider 的類名
注:我用pems作為文件名稱是考慮到如果我用ups和fedex時可能會和magento內置的模塊衝突,故在文件名前+了p,如果不需要可先在app/etc/modules/Mage_All.xml中找到 Usa 停用即可
像title name allowspecific這些配置為默認後臺看到的選項,接下來我會在system.xml中說明
[php]
< default>
< carriers>
< pems>
< activ< /active>
< model>plima_ship_model_shipping_carrier_p< /model>
< allowed_metho< /allowed_methods>
< weight_unit< /weight_unit>
< rounding_rule>n< /rounding_rule>
< google_checkout_compatibl< /google_checkout_compatible>
< name>P< /name>
< title>Plima < /title>
< sallowspecifi< /sallowspecific>
< specificcountry< /specificcountry>
< sort_orde< /sort_order>
< /pems>
< carriers>
< /default>
[/php]
2.system.xml
< label>Plima_EMS< /label> 這塊為後臺配置時顯示的塊名稱,可以在這裡修改;
fields為詳細的選項,比如常用
active,title,salowspecific,specificcountry等等,這些字段的申明是爲了在model中接受參數,而參數的鍵值正為這裡什麽的名稱,如果我定義一個則我在model中接受的時候需這樣寫:
$val = $this->getConfigData(‘discount’);
而值是根據配置來定的,如果是文本,則值為文本域所保存的值.
< frontend_type>text< /frontend_type>這一段就是什麽字段類型為文本;
具體可以查看數據庫 core_config_data中的表.
[php]
< pems translate="label" module="ship">
< label>Plima_< /label>
< frontend_type>t< /frontend_type>
< sort_order< /sort_order>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< fields>
< active translate="label">
< label>Enab< /label>
< frontend_type>sel< /frontend_type>
< source_model>adminhtml/system_config_source_ye< /source_model>
< sort_orde< /sort_order>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< /active>
< gateway_url translate="label">
< label>SOAP < /label>
< frontend_type>t< /frontend_type>
< sort_order< /sort_order>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< /gateway_url>
< tax_fee translate="label">
< label>< /label>
< frontend_type>t< /frontend_type>
< sort_order< /sort_order>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< /tax_fee>
< sort_order translate="label">
< label>Sort or< /label>
< frontend_type>t< /frontend_type>
< sort_order>< /sort_order>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< /sort_order>
< title translate="label">
< label>Ti< /label>
< frontend_type>t< /frontend_type>
< sort_orde< /sort_order>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< /title>
< sallowspecific translate="label">
< label>Ship to applicable countr< /label>
< frontend_type>sel< /frontend_type>
< sort_order< /sort_order>
< frontend_class>shipping-applicable-coun< /frontend_class>
<source_model>adminhtml/system_config_source_shipping_allspecificcountr< /source_model>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< /sallowspecific>
< specificcountry translate="label">
< label>Ship to Specific countr< /label>
< frontend_type>multisel< /frontend_type>
< sort_order< /sort_order>
< source_model>adminhtml/system_config_source_coun< /source_model>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< /specificcountry>
< showmethod translate="label">
< label>Show method if not applica< /label>
< frontend_type>sel< /frontend_type>
< sort_order< /sort_order>
< source_model>adminhtml/system_config_source_ye< /source_model>
< show_in_defaul< /show_in_default>
< show_in_websit< /show_in_website>
< show_in_stor< /show_in_store>
< /showmethod>
< /fields>
< /pems>[/php]