UserInvoice.php
1.2 KB
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
47
48
49
50
51
<?php
namespace app\api\model;
use think\Model;
class UserInvoice extends Model
{
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
// 追加属性
protected $append = [
];
public function getStatusList()
{
return ['1' => __('Status 1'), '2' => __('Status 2')];
}
public function getIsGroupTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['is_group']) ? $data['is_group'] : '');
$list = $this->getIsGroupList();
return isset($list[$value]) ? $list[$value] : '';
}
public function selectData($where, $limit)
{
$where['g.status'] = 1;
$data = $this->alias('g')
->join('fa_country c', 'g.country_id=c.id')
->where($where)
->field('g.id goods_id,g.ch_name,g.en_name,g.image,g.goods_price,c.ch_name ch_country_name,c.en_name en_country_name,is_vip_price,group_price,stock_num')
->limit($limit)
->order('g.weigh desc')
->select();
return $data;
}
}