Skip to content

Commit

Permalink
fix current payment_profile infos
Browse files Browse the repository at this point in the history
  • Loading branch information
Erico Pedroso committed Feb 12, 2016
1 parent 6e07f81 commit 32b7841
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 0.2.5 - 02/02/2015
- Correção no bug de cancelamento da assinatura pela Área do Cliente
- Melhorias na listagem dos planos para criação dos produtos
- Ajustes na exibição do método de pagemento atual do Cliente na tela de checkout

# 0.2.4 - 02/02/2015
- Adicionando suporte para tls 1.2 e aumentando versão mínima do PHP para 5.5.19​
Expand Down
9 changes: 1 addition & 8 deletions includes/class-vindi-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ private function request($endpoint, $method = 'POST', $data = array(), $data_to_

return false;
}

$status = sprintf('%s %s', $response['response']['code'], $response['response']['message']);
$this->logger->log(sprintf("[Request #%s]: Nova Resposta da API.\n%s\n%s", $request_id, $status, print_r($response['body'], true)));

Expand Down Expand Up @@ -242,13 +241,7 @@ public function get_payment_profile($user_code)
if(empty($customer))
return false;

$query = array(
'customer_id' => $customer,
'status' => 'active',
'type' => 'PaymentProfile::CreditCard',
);

$query = http_build_query($query);
$query = urlencode("customer_id={$customer} status=active type=PaymentProfile::CreditCard");
$response = $this->request('payment_profiles?query='.$query, 'GET');

if(isset($response['payment_profiles'][0]))
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Caso necessite de informações sobre a plataforma ou API por favor siga atravé
= 0.2.5 - 02/02/2015 =
- Correção no bug de cancelamento da assinatura pela Área do Cliente
- Melhorias na listagem dos planos para criação dos produtos
- Ajustes na exibição do método de pagemento atual do Cliente na tela de checkout

= 0.2.4 - 02/02/2015 =
- Adicionando suporte para tls 1.2 e aumentando versão mínima do PHP para 5.5.19​
Expand Down

0 comments on commit 32b7841

Please sign in to comment.