Explorar el Código

Aucun jour de production programmé

Affichage d'un message à l'utilisateur lorsqu'aucun jour de production n'est programmé sur la page des commandes.
refactoring
keun hace 6 años
padre
commit
ad02f3a19f
Se han modificado 1 ficheros con 8 adiciones y 1 borrados
  1. +8
    -1
      producer/views/commande/_form.php

+ 8
- 1
producer/views/commande/_form.php Ver fichero

@@ -10,8 +10,15 @@ use yii\widgets\ActiveForm;
'enableClientScript' => false
]);
?>
<?php
if(count($jours_production) <= 1) :
?>
<div class="alert alert-warning">Aucun jour de production n'a été programmé par le producteur.</div>
<?php endif; ?>
<?php if($id_etablissement && $etablissement_paiement_ok): ?>
<?php if($id_etablissement && count($jours_production) > 1): ?>
<div id="step-choix-date" class="col-md-6">
<?= $form->field($model, 'id_production')->label('')->hiddenInput(); ?>

Cargando…
Cancelar
Guardar