@@ -35,9 +35,9 @@ class CommandeController extends \yii\web\Controller { | |||
]; | |||
} | |||
public function actionInfosProduction($date) { | |||
public function actionInfosProduction($id_production) { | |||
$production = Production::find()->where(['date' => $date])->one(); | |||
$production = Production::findOne($id_production); | |||
if ($production) { | |||
$arr = [] ; |
@@ -362,7 +362,7 @@ function chat_systeme_commande_produits_dispos(str_date, date) { | |||
// produits dispos à la vente à cette date | |||
$.get('index.php',{ | |||
r: 'commande/infos-production', | |||
date: str_date, | |||
id_production: $('#dates .id_production').text() | |||
}, function(data) { | |||
if(data.produits_dispos) { |