Ver código fonte

[Backend] Correction creditHistorique, missing argument

master
keun 6 anos atrás
pai
commit
82b77e8b55
1 arquivos alterados com 5 adições e 1 exclusões
  1. +5
    -1
      common/models/CommandeAuto.php

+ 5
- 1
common/models/CommandeAuto.php Ver arquivo

@@ -232,7 +232,11 @@ class CommandeAuto extends \yii\db\ActiveRecord {

if ($commande->getMontant() > 0) {
$commande->creditHistorique(
CreditHistorique::TYPE_PAIEMENT, $commande->getMontant(), $production->id_etablissement, $id_user_action
CreditHistorique::TYPE_PAIEMENT,
$commande->getMontant(),
$production->id_etablissement,
$commande->id_user,
$id_user_action
);
}
}

Carregando…
Cancelar
Salvar