Skip to content

Commit

Permalink
Fixing missing trabsaction date
Browse files Browse the repository at this point in the history
  • Loading branch information
nuradiyana committed Mar 5, 2018
1 parent 38e1518 commit 525917e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Channel/Transfer/Bca.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public function makeResponse($rawResponse)
$response->setMessage($rawResponse->status_message);
$response->setType($rawResponse->payment_type);
$response->setStatus($rawResponse->transaction_status);
$response->setDateTime($rawResponse->transaction_time);
$response->setFraud($rawResponse->fraud_status);
$response->setOrderId($rawResponse->order_id);
$response->setOrderAmount($rawResponse->gross_amount);
Expand Down
1 change: 1 addition & 0 deletions src/Channel/Transfer/Bni.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public function makeResponse($rawResponse)
$response->setStatusCode($rawResponse->status_code);
$response->setMessage($rawResponse->status_message);
$response->setType($rawResponse->payment_type);
$response->setDateTime($rawResponse->transaction_time);
$response->setStatus($rawResponse->transaction_status);
$response->setFraud($rawResponse->fraud_status);
$response->setOrderId($rawResponse->order_id);
Expand Down
1 change: 1 addition & 0 deletions src/Channel/Transfer/Mandiri.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public function makeResponse($rawResponse)
$response->setStatusCode($rawResponse->status_code);
$response->setMessage($rawResponse->status_message);
$response->setType($rawResponse->payment_type);
$response->setDateTime($rawResponse->transaction_time);
$response->setStatus($rawResponse->transaction_status);
$response->setFraud($rawResponse->fraud_status);
$response->setOrderId($rawResponse->order_id);
Expand Down
1 change: 1 addition & 0 deletions src/Channel/Transfer/Permata.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public function makeResponse($rawResponse)
$response->setStatusCode($rawResponse->status_code);
$response->setMessage($rawResponse->status_message);
$response->setType($rawResponse->payment_type);
$response->setDateTime($rawResponse->transaction_time);
$response->setStatus($rawResponse->transaction_status);
$response->setFraud($rawResponse->fraud_status);
$response->setOrderId($rawResponse->order_id);
Expand Down

0 comments on commit 525917e

Please sign in to comment.