联系电话:0755-27515592
最新动态:

zencart教程

Zen-cart自定义运费模块–HK POST

点击数:9492015-07-21 09:54:06 来源: 外贸网站建设,深圳外贸网站建设,深圳网站建设,外贸商城网站制作-亿恩科技

新闻摘要:香港邮政航空小包的计费方式是:挂号费+每公斤的费用。比如13+100/KG, 如果是100克,那么收费是13+0.1*100 = 23元。 Zen-cart中并没有符合这个计算逻辑的运费模块。参照现存的模块,自定义一个非

香港邮政航空小包的计费方式是:挂号费+每公斤的费用。比如13+100/KG, 如果是100克,那么收费是13+0.1*100 = 23元。

Zen-cart中并没有符合这个计算逻辑的运费模块。参照现存的模块,自定义一个非常简单,需要先理解Zen-cart运费模块的工作模式,可参考:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// class methods
function quote($method = '') {
    global $order,$shipping_weight,$shipping_num_boxes,$db,$currencies;
  
    $total_weight = $shipping_weight * $shipping_num_boxes;
 
    if($total_weight > (int)MODULE_SHIPPING_HK_POST_MAX_WEIGHT){
        return false;  
    }
    //package weight
    $total_weight += (int)MODULE_SHIPPING_HK_POST_PACKAGE_WEIGHT;
  
    ////////////////////
    $cost = explode(',',MODULE_SHIPPING_HK_POST_COST);
    $first = 13; $continue = 108;
  
    if(count($cost) >= 2){
        $first = (int)$cost[0];
    $continue = round($cost[1],2);
    }else{
        $tmp = round($cost[0],2);
        if($tmp > 70){
            $continue = $tmp;
        }
    }
    ////////////////////
 
$rate = (float)$currencies->currencies['CNY']['value'];
    if($rate <= 0){
        $rate = 1;
}
  
    $ttl = round(($first+$continue*ceil($total_weight/10)/100)/$rate,2);
    $this->quotes = array('id' => $this->code,
                        'module' => MODULE_SHIPPING_HK_POST_TEXT_TITLE,
                        'methods' => array(array('id' => $this->code,
                                                 'title' => MODULE_SHIPPING_HK_POST_TEXT_WAY,
                                                 'cost' => $ttl)));
    if ($this->tax_class > 0) {
        $this->quotes['tax'] = zen_get_tax_rate($this->tax_class, $order->delivery['country']['id'], $order->delivery['zone_id']);
    }
 
    if (zen_not_null($this->icon)) $this->quotes['icon'] = zen_image($this->icon, $this->title);
 
    return $this->quotes;
}

需要实现quote方法,这个方法按照如上返回对应内容。运费成本计算逻辑就一句代码:

1
$ttl = round(($first+$continue*ceil($total_weight/10)/100)/$rate,2);

注意,这里除以了人民币的汇率得到基准货币,那是因为插件后台设置的值为人民币为单位。插件其它代码参考Zen-cart默认的运费模块即可完成。

这里显示的运费就是根据上面的逻辑进行计算的。

【责任编辑:(Top) 返回页面顶端
贴心
全国7×24小时客服热线
安全
病毒杀除率高于99%
稳定
网站可用性高于99.9%
实力
服务68家上市企业及集团公司
亿恩科技手机站
关注亿恩科技微信

亿恩科技—企业信息化一站式服务专家


Copyright © 2008- 深圳市亿恩科技有限公司版权所有 粤ICP备15056041号

联系我们 | 常见问题 | 在线留言 | 支付方式 | 软件开发 | 我的观点 | 资质荣誉 | 服务流程