This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/model/OrderAddress.php
2020-04-25 22:20:29 +08:00

46 lines
974 B
PHP

<?php
namespace app\common\model;
/**
* 订单收货地址模型
* Class OrderAddress
* @package app\common\model
*/
class OrderAddress extends BaseModel
{
protected $name = 'order_address';
protected $updateTime = false;
/**
* 追加字段
* @var array
*/
protected $append = ['region'];
/**
* 地区名称
* @param $value
* @param $data
* @return array
*/
public function getRegionAttr($value, $data)
{
return [
'province' => Region::getNameById($data['province_id']),
'city' => Region::getNameById($data['city_id']),
'region' => $data['region_id'] == 0 ? '' : Region::getNameById($data['region_id']),
];
}
/**
* 获取完整地址
* @return string
*/
public function getFullAddress()
{
return $this['region']['province'] . $this['region']['city'] . $this['region']['region'] . $this['detail'];
}
}