This commit is contained in:
Mekan1206
2026-05-06 13:35:10 +05:00
parent c9a0021bc3
commit 97b6561ad3

View File

@@ -382,13 +382,12 @@ class NovaVisaMasterPaymentOrder extends Resource
$order = $this->resource; $order = $this->resource;
if (in_array($order->status, [ if (in_array($order->status, [
OrderRepo::PENDING, OrderRepo::COMPLETED,
OrderRepo::CANCELLED,
])) { ])) {
return false; return true;
} }
return true; return false;
}), }),
]; ];
} }