فهرست منبع

优化4G上报ICCID

zhangdongming 1 سال پیش
والد
کامیت
5ed49423fe
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      Controller/UnicomCombo/UnicomComboController.py

+ 3 - 0
Controller/UnicomCombo/UnicomComboController.py

@@ -494,6 +494,9 @@ class UnicomComboView(View):
             dx_iot = EIoTClubObject()
             params = {'iccid': iccid}
             result = dx_iot.get_cards_info('v3', **params)
+            if result['code'] == '900911' and len(iccid) == 20:
+                params = {'iccid': iccid[0:19]}
+                result = dx_iot.get_cards_info('v3', **params)
             assert result['code'] == '200'
             return True
         except Exception as e: