|
|
@@ -79,21 +79,19 @@ foreach ($produits as $p) { |
|
|
|
<!-- produits sélectionnés --> |
|
|
|
<form id="produits-production" action="<?php echo Yii::$app->urlManager->createUrl(['commande/index', 'date' => $date]); ?>" method="post"> |
|
|
|
<div class="overflow"> |
|
|
|
<table class="table table-hover table-condensed"> |
|
|
|
<table class="table table-condensed"> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th class="td-produit">Produit</th> |
|
|
|
<th class="td-actif">Actif</th> |
|
|
|
<th class="td-produit">Produit</th> |
|
|
|
<th class="td-max">Max.</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<?php foreach ($produits as $p): ?> |
|
|
|
<tr<?php if ($p->vrac): ?> style="display:none;"<?php endif; ?>> |
|
|
|
<td class="td-produit"><label for="produit-<?php echo $p->id; ?>"><?php if (strlen($p->description)): echo Html::encode($p->description); |
|
|
|
else: echo Html::encode($p->nom); |
|
|
|
endif; ?></label></td> |
|
|
|
<tr<?php if ($p->vrac): ?> style="display:none;"<?php endif; ?> <?php if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']): ?>class="active"<?php endif; ?>> |
|
|
|
<td class="td-actif"><input id="produit-<?php echo $p->id; ?>" name="Produit[<?php echo $p->id; ?>][actif]" type="checkbox" <?php if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']): ?>checked="checked"<?php endif; ?> /></td> |
|
|
|
<td class="td-produit"><label for="produit-<?php echo $p->id; ?>"><?= Html::encode($p->nom) ?></label></td> |
|
|
|
<td class="td-max"><input class="quantite-max" name="Produit[<?php echo $p->id; ?>][quantite_max]" type="text" value="<?php if (isset($produits_selec[$p->id])) echo $produits_selec[$p->id]['quantite_max']; ?>" /></td> |
|
|
|
</tr> |
|
|
|
<?php endforeach; ?> |