Procházet zdrojové kódy

Correctif infos productions : get by id production

prodstable
keun před 7 roky
rodič
revize
74cf58f86f
2 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +2
    -2
      frontend/controllers/CommandeController.php
  2. +1
    -1
      frontend/web/js/lechatdesnoisettes.js

+ 2
- 2
frontend/controllers/CommandeController.php Zobrazit soubor

@@ -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 = [] ;

+ 1
- 1
frontend/web/js/lechatdesnoisettes.js Zobrazit soubor

@@ -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) {

Načítá se…
Zrušit
Uložit