Files
OMS/app/logisticsmanager/lib/waybill/aikucun.php
2025-12-28 23:13:25 +08:00

31 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class logisticsmanager_waybill_aikucun {
//获取物流公司
/**
* logistics
* @param mixed $logistics_code logistics_code
* @return mixed 返回值
*/
public function logistics($logistics_code = '') {
$logistics = array(
'ZTO' => array('code' => 'ZTO', 'name' => '中通速递','mode'=>'join'),
'YUNDA' => array('code' => 'YUNDA', 'name' => '韵达快递','mode'=>'join'),
'YTO' => array('code' => 'YTO','name'=>'圆通快递','mode'=>'join'),
'DBL' => array('code' => 'DBL','name'=>'德邦快递','mode'=>'direct'),
'UC' => array('code' => 'UC', 'name'=>'优速快递','mode'=>'join'),
'JD' => array('code' => 'JD', 'name'=>'京东快递'),
);
if(!empty($logistics_code)) {
return $logistics[$logistics_code];
}
return $logistics;
}
}