소스 검색

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

prodstable
keun 8 년 전
부모
커밋
2d527e8faf
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. +5
    -5
      backend/controllers/CommandeController.php

+ 5
- 5
backend/controllers/CommandeController.php 파일 보기

@@ -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) ;
}

Loading…
취소
저장