sell product changes
This commit is contained in:
56
frontend/views/product/_view.php
Normal file
56
frontend/views/product/_view.php
Normal file
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
?>
|
||||
<table class="table table-bordered table-striped">
|
||||
<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>
|
||||
<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>
|
||||
</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>
|
||||
Reference in New Issue
Block a user