stanley-king 2 年之前
父節點
當前提交
80976679e5
共有 1 個文件被更改,包括 10 次插入20 次删除
  1. 10 20
      helper/refill/RefillBase.php

+ 10 - 20
helper/refill/RefillBase.php

@@ -603,29 +603,19 @@ class RefillBase
             if(empty($official_sn)) return false;
 
             $official_sn = strtoupper($official_sn);
-
-            if($card_type === mtopcard\ChinaMobileCard) {
-                if($start_with($official_sn,'0095')) {
-                    return true;
-                }
+            if($start_with($official_sn,'0095')) {
+                return true;
             }
-            elseif($card_type === mtopcard\ChinaUnicomCard) {
-                if($start_with($official_sn,'SP')) {
-                    return true;
-                }
-                elseif($start_with($official_sn,'J98')) {
-                    return true;
-                }
+            elseif($start_with($official_sn,'SP')) {
+                return true;
             }
-            elseif($card_type === mtopcard\ChinaTelecomCard) {
-                if($start_with($official_sn,'SP')) {
-                    return true;
-                }
-                elseif($start_with($official_sn,'WX')) {
-                    return true;
-                }
+            elseif($start_with($official_sn,'J98')) {
+                return true;
             }
-
+            elseif($start_with($official_sn,'WX')) {
+                return true;
+            }
+            
             return false;
         };