Parcourir la source

Activer/désactiver les points de vente : adaptations (suite)

prodstable
keun il y a 8 ans
Parent
révision
2d527e8faf
1 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. +5
    -5
      backend/controllers/CommandeController.php

+ 5
- 5
backend/controllers/CommandeController.php Voir le fichier

@@ -283,11 +283,11 @@ class CommandeController extends BackendController {
// production_point_vente à définir s'ils ne sont pas initialisés
if($production && $production->actif) {
$count_productions_point_vente = self::find()->
where([
'id_production' => $production->id
])
->count() ;
$count_productions_point_vente = ProductionPointVente::find()->
where([
'id_production' => $production->id
])
->count() ;
ProductionPointVente::setAll($production->id, true) ;
}

Chargement…
Annuler
Enregistrer