|
@@ -19,6 +19,7 @@ import com.cooleshow.base.utils.helper.QMUIStatusBarHelper;
|
|
|
import com.cooleshow.base.widgets.dialog.CommonDialog;
|
|
|
import com.cooleshow.teacher.R;
|
|
|
import com.cooleshow.teacher.bean.WithdrawalInfoBean;
|
|
|
+import com.cooleshow.teacher.constants.TeacherInfoConstants;
|
|
|
import com.cooleshow.teacher.contract.WithdrawalContract;
|
|
|
import com.cooleshow.teacher.databinding.ActivityWithdrawalBinding;
|
|
|
import com.cooleshow.teacher.presenter.income.WithdrawalPresenter;
|
|
@@ -35,41 +36,47 @@ import java.text.DecimalFormat;
|
|
|
@Route(path = RouterPath.IncomeCenter.TEACHER_MINE_WITHDRAWAL)
|
|
|
public class WithdrawalActivity extends BaseMVPActivity<ActivityWithdrawalBinding, WithdrawalPresenter> implements WithdrawalContract.WithdrawalView, View.OnClickListener {
|
|
|
|
|
|
- private CommonDialog mCommonDialog;
|
|
|
private CommonDialog mProtocolTipDialog;
|
|
|
+ private CommonDialog bindcardTipDialog;
|
|
|
+
|
|
|
+ private String signStatus = TeacherInfoConstants.WITHDRAW_PROTOCOL_NOT_SIGN;
|
|
|
|
|
|
@Override
|
|
|
public void onClick(View view) {
|
|
|
- switch (view.getId()) {
|
|
|
- case com.cooleshow.base.R.id.tv_right_text:
|
|
|
- ARouter.getInstance().build(RouterPath.IncomeCenter.TEACHER_MINE_WITHDRAWAL_RECORD)
|
|
|
- .navigation();
|
|
|
- break;
|
|
|
- case R.id.tv_withdrawal_all:
|
|
|
- viewBinding.etPrice.setText(mWithdrawalInfo.amountWithdrawal + "");
|
|
|
- break;
|
|
|
- case R.id.tv_confirm_withdrawal:
|
|
|
- if (mWithdrawalInfo == null) {
|
|
|
- return;
|
|
|
- }
|
|
|
- String amountWithdrawal = viewBinding.etPrice.getText().toString().trim();
|
|
|
- if (TextUtils.isEmpty(amountWithdrawal)) {
|
|
|
- return;
|
|
|
- }
|
|
|
- if (Double.parseDouble(amountWithdrawal) <= mWithdrawalInfo.withdrawalServiceFee) {
|
|
|
- ToastUtil.getInstance().showShort("结算金额需要大于手续费");
|
|
|
- break;
|
|
|
- }
|
|
|
- if (null == mWithdrawalInfo.userBankCard) {
|
|
|
- ToastUtil.getInstance().showShort("请先绑定银行卡");
|
|
|
- ARouter.getInstance().build(RouterPath.MineCenter.MINE_MY_BANKCARD)
|
|
|
- .navigation();
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
+ int id = view.getId();
|
|
|
+ if (id == com.cooleshow.base.R.id.tv_right_text) {
|
|
|
+ ARouter.getInstance().build(RouterPath.IncomeCenter.TEACHER_MINE_WITHDRAWAL_RECORD)
|
|
|
+ .navigation();
|
|
|
+ } else if (id == R.id.tv_withdrawal_all) {
|
|
|
+ viewBinding.etPrice.setText(mWithdrawalInfo.amountWithdrawal + "");
|
|
|
+ } else if (id == R.id.tv_confirm_withdrawal) {
|
|
|
+ if (mWithdrawalInfo == null) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (signStatus != TeacherInfoConstants.WITHDRAW_PROTOCOL_SUCCESS) {
|
|
|
+ showProtocolTipDialog();
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (null == mWithdrawalInfo.userBankCard) {
|
|
|
+ showBindCardTipDialog();
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- presenter.userAccountPage(amountWithdrawal, mWithdrawalInfo.userBankCard.id + "");
|
|
|
- break;
|
|
|
+ String amountWithdrawal = viewBinding.etPrice.getText().toString().trim();
|
|
|
+ if (TextUtils.isEmpty(amountWithdrawal)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (Double.parseDouble(amountWithdrawal) <= mWithdrawalInfo.withdrawalServiceFee) {
|
|
|
+ ToastUtil.getInstance().showShort("结算金额需要大于手续费");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ presenter.userAccountPage(amountWithdrawal, mWithdrawalInfo.userBankCard.id + "");
|
|
|
+ } else if (id == R.id.fl_protocol) {
|
|
|
+ goSignProtocol();
|
|
|
+ return;
|
|
|
+ } else if (id == R.id.tv_go_bind_bankcard) {
|
|
|
+ goBindCard();
|
|
|
+ return;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -88,6 +95,8 @@ public class WithdrawalActivity extends BaseMVPActivity<ActivityWithdrawalBindin
|
|
|
viewBinding.toolbarInclude.tvRightText.setOnClickListener(this);
|
|
|
viewBinding.tvWithdrawalAll.setOnClickListener(this);
|
|
|
viewBinding.tvConfirmWithdrawal.setOnClickListener(this);
|
|
|
+ viewBinding.flProtocol.setOnClickListener(this);
|
|
|
+ viewBinding.tvGoBindBankcard.setOnClickListener(this);
|
|
|
|
|
|
viewBinding.etPrice.addTextChangedListener(new TextWatcher() {
|
|
|
@Override
|
|
@@ -181,62 +190,70 @@ public class WithdrawalActivity extends BaseMVPActivity<ActivityWithdrawalBindin
|
|
|
return;
|
|
|
}
|
|
|
mWithdrawalInfo = data;
|
|
|
- viewBinding.tvAvailablePrice.setText("可结算余额 " + getTwoDecimal(data.amountWithdrawal));
|
|
|
+ viewBinding.tvAvailablePrice.setText("可结算余额 ¥" + getTwoDecimal(data.amountWithdrawal));
|
|
|
viewBinding.tvServiceFee.setText("单次收入结算时,平台将收取" + getTwoDecimal(data.withdrawalServiceFee) + "元手续费");
|
|
|
if (null != data.userBankCard) {
|
|
|
viewBinding.tvBankName.setText(data.userBankCard.bankName + getBankNum(data.userBankCard.bankCard));
|
|
|
viewBinding.tvTip.setVisibility(View.VISIBLE);
|
|
|
+ viewBinding.tvGoBindBankcard.setText("去换绑");
|
|
|
} else {
|
|
|
viewBinding.tvBankName.setText("您未绑定银行卡");
|
|
|
- viewBinding.tvTip.setVisibility(View.INVISIBLE);
|
|
|
- showNotBindBankCardTip();
|
|
|
+ viewBinding.tvTip.setVisibility(View.GONE);
|
|
|
+ viewBinding.tvGoBindBankcard.setText("去绑卡");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private void showNotBindBankCardTip() {
|
|
|
- if (mCommonDialog == null) {
|
|
|
- mCommonDialog = new CommonDialog(this);
|
|
|
+ private void showBindCardTipDialog() {
|
|
|
+ if (bindcardTipDialog == null) {
|
|
|
+ bindcardTipDialog = new CommonDialog(this);
|
|
|
}
|
|
|
- if (!mCommonDialog.isShowing()) {
|
|
|
- mCommonDialog.show();
|
|
|
+ if (!bindcardTipDialog.isShowing()) {
|
|
|
+ bindcardTipDialog.show();
|
|
|
}
|
|
|
- mCommonDialog.setTitle("绑定银行卡");
|
|
|
- mCommonDialog.setContent("您需要先绑定银行卡后才能结算");
|
|
|
- mCommonDialog.setOnConfirmClickListener(new View.OnClickListener() {
|
|
|
+ bindcardTipDialog.setTitle("绑定银行卡");
|
|
|
+ bindcardTipDialog.setContent("您暂未绑定银行卡,请绑定后结算");
|
|
|
+ bindcardTipDialog.setConfirmText("去绑定");
|
|
|
+ bindcardTipDialog.setOnConfirmClickListener(new View.OnClickListener() {
|
|
|
@Override
|
|
|
public void onClick(View v) {
|
|
|
- ARouter.getInstance().build(RouterPath.MineCenter.MINE_MY_BANKCARD)
|
|
|
- .navigation();
|
|
|
+ goBindCard();
|
|
|
}
|
|
|
});
|
|
|
- mCommonDialog.setOnCancelClickListener(new View.OnClickListener() {
|
|
|
+ bindcardTipDialog.setOnCancelClickListener(new View.OnClickListener() {
|
|
|
@Override
|
|
|
public void onClick(View v) {
|
|
|
- if (mCommonDialog != null) {
|
|
|
- mCommonDialog.dismiss();
|
|
|
+ if (bindcardTipDialog != null) {
|
|
|
+ bindcardTipDialog.dismiss();
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void goBindCard() {
|
|
|
+ ARouter.getInstance().build(RouterPath.MineCenter.MINE_MY_BANKCARD)
|
|
|
+ .navigation();
|
|
|
}
|
|
|
|
|
|
private void showProtocolTipDialog() {
|
|
|
if (mProtocolTipDialog == null) {
|
|
|
mProtocolTipDialog = new CommonDialog(this);
|
|
|
- mProtocolTipDialog.setCanceledOnTouchOutside(false);
|
|
|
- mProtocolTipDialog.setCancelable(false);
|
|
|
+// mProtocolTipDialog.setCanceledOnTouchOutside(false);
|
|
|
+// mProtocolTipDialog.setCancelable(false);
|
|
|
}
|
|
|
if (!mProtocolTipDialog.isShowing()) {
|
|
|
mProtocolTipDialog.show();
|
|
|
}
|
|
|
mProtocolTipDialog.setTitle("协议签署");
|
|
|
mProtocolTipDialog.setContent("您需要先签署协议才能结算");
|
|
|
+ mProtocolTipDialog.setConfirmText("去签署");
|
|
|
mProtocolTipDialog.setOnConfirmClickListener(new View.OnClickListener() {
|
|
|
@Override
|
|
|
public void onClick(View v) {
|
|
|
- mProtocolTipDialog.dismiss();
|
|
|
- ARouter.getInstance().build(RouterPath.WebCenter.ACTIVITY_HTML)
|
|
|
- .withString(WebConstants.WEB_URL, WebConstants.PROTOCOL_SIGN_BY_TEACHER_WIYHDRAW)
|
|
|
- .navigation();
|
|
|
+ if (mProtocolTipDialog != null) {
|
|
|
+ mProtocolTipDialog.dismiss();
|
|
|
+ }
|
|
|
+ goSignProtocol();
|
|
|
}
|
|
|
});
|
|
|
mProtocolTipDialog.setOnCancelClickListener(new View.OnClickListener() {
|
|
@@ -245,16 +262,20 @@ public class WithdrawalActivity extends BaseMVPActivity<ActivityWithdrawalBindin
|
|
|
if (mProtocolTipDialog != null) {
|
|
|
mProtocolTipDialog.dismiss();
|
|
|
}
|
|
|
- finish();
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+ private void goSignProtocol() {
|
|
|
+ ARouter.getInstance().build(RouterPath.WebCenter.ACTIVITY_HTML)
|
|
|
+ .withString(WebConstants.WEB_URL, WebConstants.PROTOCOL_SIGN_BY_TEACHER_WIYHDRAW)
|
|
|
+ .navigation();
|
|
|
+ }
|
|
|
+
|
|
|
private String getTwoDecimal(double num) {
|
|
|
DecimalFormat df = new DecimalFormat("#,##0.00");
|
|
|
String str = df.format(num);
|
|
|
return str;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -265,15 +286,24 @@ public class WithdrawalActivity extends BaseMVPActivity<ActivityWithdrawalBindin
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void checkContractSignResult(boolean result) {
|
|
|
+ public void checkContractSignResult(String result) {
|
|
|
if (!checkActivityExist()) {
|
|
|
return;
|
|
|
}
|
|
|
- if (result) {
|
|
|
- presenter.getWithdrawalInfo();
|
|
|
- } else {
|
|
|
- showProtocolTipDialog();
|
|
|
+ this.signStatus = result;
|
|
|
+ int textColor = getResources().getColor(com.cooleshow.base.R.color.color_666666);
|
|
|
+ String text = "";
|
|
|
+ if (TextUtils.equals(result, TeacherInfoConstants.WITHDRAW_PROTOCOL_NOT_SIGN)) {
|
|
|
+ text = "待签署";
|
|
|
+ } else if (TextUtils.equals(result, TeacherInfoConstants.WITHDRAW_PROTOCOL_DOING)) {
|
|
|
+ text = "签署中";
|
|
|
+ } else if (TextUtils.equals(result, TeacherInfoConstants.WITHDRAW_PROTOCOL_SUCCESS)) {
|
|
|
+ text = "已签署";
|
|
|
+ textColor = getResources().getColor(com.cooleshow.base.R.color.color_2dc7aa);
|
|
|
}
|
|
|
+ viewBinding.tvSignStatus.setText(text);
|
|
|
+ viewBinding.tvSignStatus.setTextColor(textColor);
|
|
|
+ presenter.getWithdrawalInfo();
|
|
|
}
|
|
|
|
|
|
private String getBankNum(String num) {
|