|
|
|
|
|
|
|
|
$arr_jours_production[$j->id] = date('d/m/Y', strtotime($j->date)); |
|
|
$arr_jours_production[$j->id] = date('d/m/Y', strtotime($j->date)); |
|
|
|
|
|
|
|
|
// produits |
|
|
// produits |
|
|
$produits = Produit::find()->where(['actif' => 1])->andWhere('vrac IS NULL OR vrac = 0')->orderBy('order ASC')->all(); |
|
|
|
|
|
|
|
|
$produits = Produit::find() |
|
|
|
|
|
->where(['actif' => 1, 'id_etablissement' => $id_etablissement]) |
|
|
|
|
|
->andWhere('vrac IS NULL OR vrac = 0') |
|
|
|
|
|
->orderBy('order ASC')->all(); |
|
|
$arr_produits = array(); |
|
|
$arr_produits = array(); |
|
|
foreach ($produits as $p) |
|
|
foreach ($produits as $p) |
|
|
$arr_produits[] = $p; |
|
|
$arr_produits[] = $p; |