quanwei
2 days ago 04102f7237efefa744090ed7c25f7b5d0807b679
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
52
53
54
55
56
57
58
59
60
61
<?php
 
namespace app\agent\model\settings;
 
use app\common\model\settings\ReturnAddress as ReturnAddressModel;
 
/**
 * 退货地址模型
 */
class ReturnAddress extends ReturnAddressModel
{
    /**
     * 获取列表
     */
    public function getList($limit = 10)
    {
        return $this->order(['sort' => 'asc'])
            ->where('is_delete', '=', 0)
            ->paginate($limit);
    }
 
    /**
     * 获取全部收货地址
     */
    public function getAll($shop_supplier_id)
    {   
        $model = $this;
        if($shop_supplier_id){
            $model = $model->where(['shop_supplier_id'=>$shop_supplier_id]);
        }
        return $model->order(['sort' => 'asc'])
            ->where('is_delete', '=', 0)
            ->select();
    }
 
    /**
     * 添加新记录
     */
    public function add($data)
    {
        $data['agent_id'] = self::$agent_id;
        return $this->save($data);
    }
 
    /**
     * 编辑记录
     */
    public function edit($data)
    {
        return $this->save($data);
    }
 
    /**
     * 删除记录
     */
    public function remove()
    {
        return $this->save(['is_delete' => 1]);
    }
 
}