最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > ZenCart > ZenCart教程 >

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

时间:2014-06-02 07:59来源:未知 作者:最模板zuimoban 点击:
香港邮政航空小包的计费方式是:挂号费+每公斤的费用。比如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默认的运费模块即可完成。

Zen-cart运费计算_香港小包

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

(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容