Browse Source

Bug commandes automatiques non ajoutées lors de la création d'un jour de production (2)

Il faut sélectionner le jour de production par date et par id_etablissement sinon cela crée une interférance entre les différents établissements pour un jour de production donné.
prodstable
keun 8 years ago
parent
commit
6ae4623405
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      common/models/CommandeAuto.php

+ 4
- 1
common/models/CommandeAuto.php View File

public function add($date) public function add($date)
{ {
// production // production
$production = Production::findOne(['date' => date('Y-m-d',strtotime($date))]) ;
$production = Production::findOne([
'date' => date('Y-m-d',strtotime($date)),
'id_etablissement' => Yii::$app->user->identity->id_etablissement
]) ;
if($production) if($production)
{ {

Loading…
Cancel
Save