Skip to content

Commit

Permalink
Merge pull request #269 from TransbankDevelopers/fix/show-meta-box-st…
Browse files Browse the repository at this point in the history
…atus-when-no-transaction-found

fix: show meta box status when no transaction found
  • Loading branch information
mastudillot authored Nov 29, 2024
2 parents 0c85192 + 8107659 commit 45490fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugin/src/Controllers/TransactionStatusController.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public function getStatus(): void
$transaction = Transaction::getApprovedByOrderId($orderId);

if (!$transaction) {
$response['body']['message'] = self::NO_TRANSACTION_ERROR_MESSAGE;
$response['body'] = self::NO_TRANSACTION_ERROR_MESSAGE;
wp_send_json($response['body'], self::HTTP_UNPROCESSABLE_ENTITY);
return;
Expand Down
2 changes: 2 additions & 0 deletions plugin/templates/admin/order/transaction-status.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@
?>

<div class="tbk-status-button">
<?php if (!empty($viewData)): ?>
<a class="button tbk-button-primary get-transaction-status"
data-order-id="<?php echo $viewData['orderId']; ?>"
data-buy-order="<?php echo $viewData['buyOrder']; ?>"
data-token="<?php echo $viewData['token']; ?>"
href="#">
Consultar Estado
</a>
<?php endif; ?>
</div>

<div class="tbk-status tbk-status-info">
Expand Down

0 comments on commit 45490fd

Please sign in to comment.