You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.7 KiB
100 lines
2.7 KiB
<?php
|
|
|
|
namespace app\api\model\wanlshop;
|
|
|
|
use think\Model;
|
|
use traits\model\SoftDelete;
|
|
|
|
class CouponReceive extends Model
|
|
{
|
|
|
|
use SoftDelete;
|
|
|
|
|
|
|
|
// 表名
|
|
protected $name = 'wanlshop_coupon_receive';
|
|
|
|
// 自动写入时间戳字段
|
|
protected $autoWriteTimestamp = 'int';
|
|
|
|
// 定义时间戳字段名
|
|
protected $createTime = 'createtime';
|
|
protected $updateTime = 'updatetime';
|
|
protected $deleteTime = 'deletetime';
|
|
|
|
// 追加属性
|
|
protected $append = [
|
|
'type_text',
|
|
'usertype_text',
|
|
'rangetype_text',
|
|
'pretype_text'
|
|
];
|
|
|
|
public function getTypeList()
|
|
{
|
|
return ['reduction' => __('Type reduction'), 'discount' => __('Type discount'), 'shipping' => __('Type shipping'), 'vip' => __('Type vip')];
|
|
}
|
|
|
|
public function getUsertypeList()
|
|
{
|
|
return ['reduction' => __('Usertype reduction'), 'discount' => __('Usertype discount')];
|
|
}
|
|
|
|
public function getRangetypeList()
|
|
{
|
|
return ['all' => __('Rangetype all'), 'goods' => __('Rangetype goods'), 'category' => __('Rangetype category')];
|
|
}
|
|
|
|
public function getPretypeList()
|
|
{
|
|
return ['appoint' => __('Pretype appoint'), 'fixed' => __('Pretype fixed')];
|
|
}
|
|
|
|
|
|
public function getTypeTextAttr($value, $data)
|
|
{
|
|
$value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
|
|
$list = $this->getTypeList();
|
|
return isset($list[$value]) ? $list[$value] : '';
|
|
}
|
|
|
|
|
|
public function getUsertypeTextAttr($value, $data)
|
|
{
|
|
$value = $value ? $value : (isset($data['usertype']) ? $data['usertype'] : '');
|
|
$list = $this->getUsertypeList();
|
|
return isset($list[$value]) ? $list[$value] : '';
|
|
}
|
|
|
|
|
|
public function getRangetypeTextAttr($value, $data)
|
|
{
|
|
$value = $value ? $value : (isset($data['rangetype']) ? $data['rangetype'] : '');
|
|
$list = $this->getRangetypeList();
|
|
return isset($list[$value]) ? $list[$value] : '';
|
|
}
|
|
|
|
|
|
public function getPretypeTextAttr($value, $data)
|
|
{
|
|
$value = $value ? $value : (isset($data['pretype']) ? $data['pretype'] : '');
|
|
$list = $this->getPretypeList();
|
|
return isset($list[$value]) ? $list[$value] : '';
|
|
}
|
|
|
|
public function coupon()
|
|
{
|
|
return $this->belongsTo('app\api\model\wanlshop\Conpou', 'conpou_id', 'id', [], 'LEFT')->setEagerlyType(0);
|
|
}
|
|
|
|
public function order()
|
|
{
|
|
return $this->belongsTo('app\api\model\wanlshop\Order', 'order_id', 'id', [], 'LEFT')->setEagerlyType(0);
|
|
}
|
|
|
|
public function shop()
|
|
{
|
|
return $this->belongsTo('app\api\model\wanlshop\Shop', 'shop_id', 'id', [], 'LEFT')->setEagerlyType(0);
|
|
}
|
|
}
|
|
|