Commit 413e88c2 by Julien Jorry

Fix achat monnaie to confirm

parent 198ec0c5
...@@ -127,6 +127,8 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface ...@@ -127,6 +127,8 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface
*/ */
protected $expediteur; protected $expediteur;
protected $destinataire = null;
/** /**
* @var bool RECONVERTI => Validation du dépôt d'espèce/chèque/virement * @var bool RECONVERTI => Validation du dépôt d'espèce/chèque/virement
* @Assert\Type("bool") * @Assert\Type("bool")
...@@ -192,6 +194,7 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface ...@@ -192,6 +194,7 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface
*/ */
public function setDestinataire($destinataire) public function setDestinataire($destinataire)
{ {
$this->destinataire = $destinataire;
return $this; return $this;
} }
...@@ -200,7 +203,7 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface ...@@ -200,7 +203,7 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface
*/ */
public function getDestinataire() public function getDestinataire()
{ {
return null; return $this->destinataire;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment