]; | ]; | ||||
} | } | ||||
public function actionInfosProduction($date) { | |||||
public function actionInfosProduction($id_production) { | |||||
$production = Production::find()->where(['date' => $date])->one(); | |||||
$production = Production::findOne($id_production); | |||||
if ($production) { | if ($production) { | ||||
$arr = [] ; | $arr = [] ; |
// produits dispos à la vente à cette date | // produits dispos à la vente à cette date | ||||
$.get('index.php',{ | $.get('index.php',{ | ||||
r: 'commande/infos-production', | r: 'commande/infos-production', | ||||
date: str_date, | |||||
id_production: $('#dates .id_production').text() | |||||
}, function(data) { | }, function(data) { | ||||
if(data.produits_dispos) { | if(data.produits_dispos) { |