|
|
@@ -240,12 +240,6 @@ class CommandeController extends BackendController { |
|
|
|
->where(['id_etablissement' => Yii::$app->user->identity->id_etablissement]) |
|
|
|
->all(); |
|
|
|
|
|
|
|
// produits |
|
|
|
$produits = Produit::find() |
|
|
|
->where(['id_etablissement' => Yii::$app->user->identity->id_etablissement]) |
|
|
|
->orderBy('order ASC') |
|
|
|
->all(); |
|
|
|
|
|
|
|
// users |
|
|
|
$arr_users = [0 => '--']; |
|
|
|
$users = User::find()->orderBy('prenom, nom ASC')->all(); |
|
|
@@ -269,6 +263,9 @@ class CommandeController extends BackendController { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// produits |
|
|
|
$produits = Produit::getByProduction($production->id) ; |
|
|
|
|
|
|
|
// gestion des commandes |
|
|
|
$this->gestionFormCommandes($production, $date, $points_vente, $produits, $users); |
|
|
|
|
|
|
@@ -331,11 +328,7 @@ class CommandeController extends BackendController { |
|
|
|
$data_options_commandes[$c->id]['data-commande'] = json_encode($array_options[$c->id]) ; |
|
|
|
$data_options_commandes[$c->id]['value'] = $c->id ; |
|
|
|
|
|
|
|
//print_r($data_options_commandes) ; |
|
|
|
//die() ; |
|
|
|
//$data_options_commandes[] ; |
|
|
|
} |
|
|
|
//die() ; |
|
|
|
$pv->data_select_commandes = $data_select_commandes ; |
|
|
|
$pv->data_options_commandes = $data_options_commandes ; |
|
|
|
} |
|
|
@@ -436,6 +429,9 @@ class CommandeController extends BackendController { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// produits |
|
|
|
$produits = Produit::getByProduction($production->id) ; |
|
|
|
|
|
|
|
// poids total de la production et CA potentiel |
|
|
|
$ca_potentiel = 0; |