@@ -41,14 +41,17 @@ |
||
| 41 | 41 | $this->translate( 'currency', $price->getCurrencyId() ) |
| 42 | 42 | ) ); ?> |
| 43 | 43 | </span> |
| 44 | - <?php else : ?> |
|
| 44 | + <?php else { |
|
| 45 | + : ?> |
|
| 45 | 46 | <span class="price-value"> |
| 46 | 47 | <?= $enc->html( sprintf( |
| 47 | 48 | /// Price format with price value (%1$s) and currency (%2$s) |
| 48 | 49 | $this->translate( 'client/code', 'price:default', null, null, false ) ?: $this->translate( 'client', '%1$s %2$s' ), |
| 49 | 50 | $this->number( $price->getCosts() > 0 ? $price->getCosts() : 0, $price->getPrecision() ), |
| 50 | 51 | $this->translate( 'currency', $price->getCurrencyId() ) |
| 51 | - ) ); ?> |
|
| 52 | + ) ); |
|
| 53 | +} |
|
| 54 | +?> |
|
| 52 | 55 | </span> |
| 53 | 56 | <?php endif; ?> |
| 54 | 57 | |