|
@@ -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:
|