se añaden cambios para kushki

parent 786ebe5d
......@@ -165,9 +165,9 @@ class PluSuscripcion
private $susHttpCodeKushki;
/**
* @var int|null
* @var text|null
*
* @ORM\Column(name="sus_response_kushki", type="integer", nullable=true)
* @ORM\Column(name="sus_response_kushki", type="text", nullable=true)
*/
private $susResponseKushki;
......@@ -468,18 +468,6 @@ class PluSuscripcion
return $this;
}
public function getSusResponseKushki(): ?int
{
return $this->susResponseKushki;
}
public function setSusResponseKushki(?int $susResponseKushki): self
{
$this->susResponseKushki = $susResponseKushki;
return $this;
}
public function getSusTokenKushki(): ?string
{
return $this->susTokenKushki;
......@@ -525,17 +513,29 @@ class PluSuscripcion
{
$this->susSuscriptionIdKushki = $susSuscriptionIdKushki;
return $this;
}
public function getSusTransactionIdKushki(): ?int
{
return $this->susTransactionIdKushki;
}
public function setSusTransactionIdKushki(?int $susTransactionIdKushki): self
{
$this->susTransactionIdKushki = $susTransactionIdKushki;
return $this;
}
public function getSusTransactionIdKushki(): ?int
public function getSusResponseKushki(): ?string
{
return $this->susTransactionIdKushki;
return $this->susResponseKushki;
}
public function setSusTransactionIdKushki(?int $susTransactionIdKushki): self
public function setSusResponseKushki(?string $susResponseKushki): self
{
$this->susTransactionIdKushki = $susTransactionIdKushki;
$this->susResponseKushki = $susResponseKushki;
return $this;
}
......
......@@ -137,6 +137,7 @@ class PagosController extends AbstractController {
return $this->render('frontend/paginas/confirm.html.twig', [
"listas" => $listas,
"lista" => $lista,
"msisdn"=> $userIdentifier,
"message" => $message,
"error" => $error
......
......@@ -14,7 +14,7 @@
<p class="numero-top text-left">
{{ lista.getLisNombre() }}
</p>
{% if error is defined and error = 1 %}
{% if error is defined and error == 1 %}
<div align="center">
<div class="alert alert-danger"> {{ message }} </div>
</div>
......
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