1 | <?php |
||
13 | class TariffQuery extends \hiqdev\hiart\ActiveQuery |
||
14 | { |
||
15 | public function details() |
||
16 | { |
||
17 | $this->andWhere([ |
||
18 | 'show_final' => true, |
||
19 | 'show_deleted' => true, |
||
20 | 'with_resources' => true, |
||
21 | 'with_parts' => true, |
||
22 | ]); |
||
23 | |||
24 | $this->joinWith(['resources' => function ($query) { |
||
25 | return $query->joinWith('part'); |
||
26 | }]); |
||
27 | |||
28 | return $this; |
||
29 | } |
||
30 | |||
31 | public function byId($id) |
||
35 | } |
||
36 |