fitness-web/frontend/views/product/_view.php

65 lines
1.5 KiB
PHP

<?php
?>
<table class="table table-bordered table-striped table-product">
<tbody>
<tr>
<th>
<?php echo Yii::t('frontend/product','Name')?>
</th>
<td colspan="3">
<span class="product-name"></span>
</td>
</tr>
<tr>
<th>
<?php echo Yii::t('frontend/product','Barcode')?>
</th>
<td>
<span class="product-barcode">123456789</span>
</td>
<th>
<?php echo Yii::t('frontend/product','Product number')?>
</th>
<td>
<span class="product-number">123456789</span>
</td>
</tr>
<tr>
<?php if ( \common\components\Helper::isReceptionShowStock() ) {?>
<th>
<?php echo Yii::t('frontend/product','Stock'). ' (Db)'?>
</th>
<td>
<span class="product-stock"></span>
</td>
<th>
<?php echo Yii::t('frontend/product','Count'). ' (Db)'?>
</th>
<td>
<span class="product-count">1</span>
</td>
<?php }else { ?>
<th colspan="3">
<?php echo Yii::t('frontend/product','Count'). ' (Db)'?>
</th>
<td>
<span class="product-count">1</span>
</td>
<?php } ?>
</tr>
<tr>
<th>
<?php echo Yii::t('frontend/product','Sale Price')?>
</th>
<td>
<span class="product-sale-price"></span>
</td>
<th>
<?php echo Yii::t('frontend/product','Price')?>
</th>
<td>
<span class="product-price">100 000</span>
</td>
</tr>
</tbody>
</table>