Commit 760f9d1f authored by jianglx's avatar jianglx

Merge branch 'master-video' of http://113.105.137.151:22280/lify/rvapp into Branch_1.4.6

parents e68b045f c44f3a1b
......@@ -438,7 +438,6 @@ public class MainActivity extends BaseActivity<CommonPresenter> implements EasyP
if (mAdapter != null) {
mAdapter.getCurrentFragment().onActivityResult(requestCode, resultCode, data);
}
}
@Override
......
......@@ -161,6 +161,7 @@ public class ConfirmOrderActivity extends BaseStatusActivity<CommonPresenter> {
private final int TYPE_REQUEST_DRIVING = 3;
private boolean serviceFeeShow = true;
private boolean cleanFeeShow = true;
private OrderDataBean dataBean;
......@@ -664,6 +665,16 @@ public class ConfirmOrderActivity extends BaseStatusActivity<CommonPresenter> {
tvLayoutMemberHint.setVisibility(View.VISIBLE);
llLayoutMemberHint.setVisibility(View.VISIBLE);
tvFreeCarDays.setText("(剩余" + memberData.getRentFreeDays() + "天)");
if (memberData.getRentFreeDays() > 0) {
swbtnMember.setChecked(true);
isMemberType = 1;
dataBean.setRentFreeDay(1);
couponAmount = 0;
getPayMoney();
}else {
dataBean.setRentFreeDay(0);
isMemberType = 0;
}
}
if (priceBean.getData() != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment