Commit e31477ea by Damien Moulard

Fix bug creation prestataires avec contact depuis admin

parent e8a2e43d
...@@ -189,13 +189,16 @@ class Comptoir ...@@ -189,13 +189,16 @@ class Comptoir
$this->contacts = $contacts; $this->contacts = $contacts;
return $this; return $this;
} }
/** /**
* @param ContactComptoir $contact * @param ContactComptoir $contact
* @return $this * @return $this
*/ */
public function addContact(ContactComptoir $contact): self public function addContact(ContactComptoir $contact): self
{ {
if (is_null($this->contacts)) {
$this->contacts = new ArrayCollection();
}
if (!$this->contacts->contains($contact)) { if (!$this->contacts->contains($contact)) {
$this->contacts[] = $contact; $this->contacts[] = $contact;
$contact->setComptoir($this); $contact->setComptoir($this);
......
...@@ -203,7 +203,7 @@ class Prestataire ...@@ -203,7 +203,7 @@ class Prestataire
* @Groups({"read", "write"}) * @Groups({"read", "write"})
*/ */
private $groupeprestataires; private $groupeprestataires;
/** /**
* EtatPrestataire $etats * EtatPrestataire $etats
* @var ArrayCollection|EtatPrestataire[] * @var ArrayCollection|EtatPrestataire[]
...@@ -421,7 +421,7 @@ class Prestataire ...@@ -421,7 +421,7 @@ class Prestataire
$this->geolocs = $geolocs; $this->geolocs = $geolocs;
return $this; return $this;
} }
/** /**
* @param GeolocPrestataire $geoloc * @param GeolocPrestataire $geoloc
* @return $this * @return $this
...@@ -466,13 +466,16 @@ class Prestataire ...@@ -466,13 +466,16 @@ class Prestataire
$this->contacts = $contacts; $this->contacts = $contacts;
return $this; return $this;
} }
/** /**
* @param ContactPrestataire $contact * @param ContactPrestataire $contact
* @return $this * @return $this
*/ */
public function addContact(ContactPrestataire $contact): self public function addContact(ContactPrestataire $contact): self
{ {
if (is_null($this->contacts)) {
$this->contacts = new ArrayCollection();
}
if (!$this->contacts->contains($contact)) { if (!$this->contacts->contains($contact)) {
$this->contacts[] = $contact; $this->contacts[] = $contact;
$contact->setPrestataire($this); $contact->setPrestataire($this);
...@@ -500,7 +503,7 @@ class Prestataire ...@@ -500,7 +503,7 @@ class Prestataire
{ {
return $this->users; return $this->users;
} }
public function getUsersString() public function getUsersString()
{ {
return join(' - ', array_map(function ($user) { return join(' - ', array_map(function ($user) {
...@@ -673,7 +676,7 @@ class Prestataire ...@@ -673,7 +676,7 @@ class Prestataire
{ {
return $this->etats; return $this->etats;
} }
public function getEtatsString(): ?string public function getEtatsString(): ?string
{ {
return join(' - ', array_map(function ($etat) { return join(' - ', array_map(function ($etat) {
...@@ -763,7 +766,7 @@ class Prestataire ...@@ -763,7 +766,7 @@ class Prestataire
{ {
return $this->tauxreconversion; return $this->tauxreconversion;
} }
/** /**
* Set tauxreconversion * Set tauxreconversion
* @return $this * @return $this
......
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