Completed
Push — master ( ef196c...55b270 )
by Andrii
04:40
created

SaleQuery::attributesMap()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 26
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 26
ccs 0
cts 26
cp 0
rs 8.8571
cc 1
eloc 18
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * API for Billing
4
 *
5
 * @link      https://github.com/hiqdev/billing-hiapi
6
 * @package   billing-hiapi
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hiqdev\billing\hiapi\sale;
12
13
use hiqdev\billing\hiapi\models\Sale;
14
15
class SaleQuery extends \hiqdev\yii\DataMapper\query\Query
16
{
17
    /**
18
     * @var string
19
     */
20
    protected $modelClass = Sale::class;
21
22
    protected function attributesMap()
23
    {
24
        return [
25
            'id' => 'zs.obj_id',
26
            'target' => [
27
                'id' => 'zs.object_id',
28
                'type' => 'oc.name',
29
            ],
30
            'customer' => [
31
                'id' => 'zc.obj_id',
32
                'login' => 'zc.login',
33
                'seller' => [
34
                    'id' => 'cr.obj_id',
35
                    'login' => 'cr.login',
36
                ],
37
            ],
38
            'seller' => [
39
                'id' => 'zs.seller_id',
40
            ],
41
            'plan' => [
42
                'id' => 'zs.tariff_id',
43
                'name' => 'zt.tariff',
44
            ],
45
            'time' => 'zs.time',
46
        ];
47
    }
48
49 View Code Duplication
    public function initFrom()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
50
    {
51
        return $this->from('zsale   zs')
52
            ->leftJoin('obj         so', 'so.obj_id = zs.object_id')
53
            ->leftJoin('zref        oc', 'oc.obj_id = so.class_id')
54
            ->leftJoin('ztariff     zt', 'zt.obj_id = zs.tariff_id')
55
            ->leftJoin('zclient     zc', 'zc.obj_id = zs.buyer_id')
56
            ->leftJoin('zclient     cr', 'cr.obj_id = zc.seller_id');
57
    }
58
}
59