|
|
@@ -429,7 +429,7 @@ class CommandeController extends FrontendController { |
|
|
|
$quantite_voulue = $produits_dispos[$p->id]['quantite_restante']; |
|
|
|
|
|
|
|
$commande_produit->quantite = $quantite_voulue; |
|
|
|
|
|
|
|
|
|
|
|
$commande_produit->save(); |
|
|
|
} |
|
|
|
} |
|
|
@@ -456,12 +456,15 @@ class CommandeController extends FrontendController { |
|
|
|
$montant_payer = $credit ; |
|
|
|
} |
|
|
|
|
|
|
|
$commande->creditHistorique( |
|
|
|
CreditHistorique::TYPE_PAIEMENT, |
|
|
|
$montant_payer, |
|
|
|
$production->id_etablissement, |
|
|
|
Yii::$app->user->identity->id |
|
|
|
) ; |
|
|
|
if($montant_payer > 0) |
|
|
|
{ |
|
|
|
$commande->creditHistorique( |
|
|
|
CreditHistorique::TYPE_PAIEMENT, |
|
|
|
$montant_payer, |
|
|
|
$production->id_etablissement, |
|
|
|
Yii::$app->user->identity->id |
|
|
|
) ; |
|
|
|
} |
|
|
|
} |
|
|
|
// surplus à rembourser |
|
|
|
elseif($commande->getStatutPaiement() == Commande::STATUT_SURPLUS) |