| Conditions | 3 |
| Paths | 4 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function run() |
||
| 30 | { |
||
| 31 | $locals = $this->getSumsString($this->local_sums ?? []); |
||
| 32 | $totals = $this->getSumsString($this->total_sums ?? []); |
||
| 33 | return '<div class="summary">' . |
||
| 34 | ($totals !== '' ? Yii::t('hipanel:stock', 'TOTAL: {sum}', ['sum' => $totals]) : null) . |
||
| 35 | ($locals !== '' ? '<br><span class="text-muted">' . Yii::t('hipanel:stock', 'on screen: {sum}', ['sum' => $locals]) . '</span>' : null) . |
||
| 36 | '</div>'; |
||
| 37 | } |
||
| 38 | |||
| 62 |