Parcourir la source

Merge branch 'dev'

prodstable
Guillaume il y a 3 ans
Parent
révision
0ca5dfe376
2 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. +2
    -2
      producer/views/order/order.php
  2. +1
    -1
      producer/views/site/index.php

+ 2
- 2
producer/views/order/order.php Voir le fichier

@@ -236,12 +236,12 @@ $producer = GlobalParam::getCurrentProducer() ;
<span class="other">
<span v-if="product.description.length">/</span>
<span class="description">{{ product.description }}</span>
<span v-if="product.unit == 'piece' && product.weight">({{ product.weight }}g)</span>
<span v-if="product.weight">({{ product.weight }}g)</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">
Épuisé
</span>
<div class="recipe" v-if="product.recipe.length">{{ product.recipe }}</div>
<div class="recipe" v-if="product.recipe.length">{{ product.recipe }}</div>
</td>
<td class="price-unit">
<template v-if="product.price_with_tax > 0">{{ formatPrice(product.price_with_tax) }}<br /><span class="unit">{{ product.wording_unit }}</span></template>

+ 1
- 1
producer/views/site/index.php Voir le fichier

@@ -174,7 +174,7 @@ $this->setPageTitle(Html::encode($producer->type.' à '.$producer->city)) ;
$columnsProducts[] = [
'attribute' => 'weight',
'value' => function($model) {
if($model->unit == 'piece' && strlen($model->weight)) {
if(strlen($model->weight)) {
return $model->weight.' g' ;
}
return '' ;

Chargement…
Annuler
Enregistrer