...
|
...
|
@@ -331,13 +331,19 @@ class OrderModel |
|
|
return $result;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 获取快递有关信息
|
|
|
* @param boolean $showLogistics 是否显示
|
|
|
* @param array $order 订单信息
|
|
|
* @param array $result
|
|
|
*/
|
|
|
private static function assignExpressInfo($showLogistics, $order, &$result)
|
|
|
{
|
|
|
$result['logisticsUrl'] = Helpers::url('/home/logistic', array('order_code' => $order['order_code']));
|
|
|
|
|
|
if ($showLogistics && isset($order['express_company']['caption'])) {
|
|
|
$result['logisticsCompany'] = $order['express_company']['caption'];
|
|
|
$result['logisticsNum'] = $order['express_number'];
|
|
|
$result['logisticsNum'] = isset($order['express_number']) ? $order['express_number'] : '';
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|