@@ -302,7 +302,7 @@ public class ResultBean<T> { | |||
private String tradeState; | |||
private String totalFee; | |||
private String tradeStateDesc; | |||
private String isValueCard; // 1:储值卡(无需签约) 2:记账卡(需要签约) | |||
private String isValueCard; // 1:记账卡(需要签约) 2:储值卡(无需签约) | |||
private String positiveImageUrl; | |||
private String negativeImageUrl; | |||
private String agentName; |
@@ -107,9 +107,9 @@ public class ETCHandleActivity extends AppActivity implements OnRefreshLoadMoreL | |||
Bundle bundle = new Bundle(); | |||
bundle.putString("bizContent", JSON.toJSONString(items)); | |||
bundle.putString("orderId", getIntent().getStringExtra("orderId") + ""); | |||
if (items.getIsValueCard().equals("1")){//储值卡-无需签约 | |||
if (items.getIsValueCard().equals("2")){//储值卡-无需签约 | |||
jumpToPage(ETCHandleSonActivity.class,bundle); | |||
}else if (items.getIsValueCard().equals("2")){//记账卡-需要签约 | |||
}else if (items.getIsValueCard().equals("1")){//记账卡-需要签约 | |||
jumpToPage(ContractActivity.class,bundle); | |||
} | |||
} |
@@ -65,10 +65,10 @@ public class InformationConfirmedActivity extends AppActivity implements StatusA | |||
@Override | |||
protected void onSuccess(ResultBean resultBean, ResultBean.BizContent bizContent1) { | |||
showComplete(); | |||
if ("1".equals(bizContent1.getIsValueCard())) { //1 - 储值卡 | |||
start = "1"; | |||
} else { //2 - 记账卡 | |||
if ("2".equals(bizContent1.getIsValueCard())) { //2 - 储值卡(无需签约) | |||
start = "2"; | |||
} else { //1 - 记账卡 (需要签约) | |||
start = "1"; | |||
} | |||
binding.text1.setText(bizContent1.getVehiclePlate()); | |||
binding.text2.setText(bizContent1.getVehiclePlateColorStr()); |