Переглянути джерело

Merge branch 'dev'

master
Guillaume 3 роки тому
джерело
коміт
5dc18cec66
2 змінених файлів з 3 додано та 2 видалено
  1. +1
    -1
      producer/views/order/order.php
  2. +2
    -1
      producer/views/site/index.php

+ 1
- 1
producer/views/order/order.php Переглянути файл

<span class="other"> <span class="other">
<span v-if="product.description.length">/</span> <span v-if="product.description.length">/</span>
<span class="description">{{ product.description }}</span> <span class="description">{{ product.description }}</span>
<span v-if="product.weight">({{ product.weight }}g)</span>
<span v-if="product.weight">({{ product.weight }}&nbsp;g)</span>
</span> </span>
<span v-if="product.quantity_max > 0 && ((product.quantity_form / product.coefficient_unit == product.quantity_remaining) || ((product.quantity_remaining * product.coefficient_unit) - product.quantity_form) < product.step)" class="label label-danger"> <span v-if="product.quantity_max > 0 && ((product.quantity_form / product.coefficient_unit == product.quantity_remaining) || ((product.quantity_remaining * product.coefficient_unit) - product.quantity_form) < product.step)" class="label label-danger">
Épuisé Épuisé

+ 2
- 1
producer/views/site/index.php Переглянути файл

if($hasProductWeight) { if($hasProductWeight) {
$columnsProducts[] = [ $columnsProducts[] = [
'attribute' => 'weight', 'attribute' => 'weight',
'format' => 'raw',
'value' => function($model) { 'value' => function($model) {
if(strlen($model->weight)) { if(strlen($model->weight)) {
return $model->weight.' g' ;
return $model->weight.'&nbsp;g' ;
} }
return '' ; return '' ;
} }

Завантаження…
Відмінити
Зберегти