rabin 2 years ago
parent
commit
3a9ca349f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/shop/lib/Sell.php

+ 1 - 1
app/shop/lib/Sell.php

@@ -630,7 +630,7 @@ class Sell
                                 $price = $data['price'];
                             }
 
-                            if ($card_cash >= $price) {
+                            if ($card_cash > $price) {
                                 $data['card']['cash'] = $price;
                                 $data['price'] = 0;
                             } else {