Commit 90eb60a5 authored by tangfang's avatar tangfang

修改注册判断银行卡

parent e8f9820e
...@@ -97,7 +97,6 @@ public class FinanceController { ...@@ -97,7 +97,6 @@ public class FinanceController {
.notBlankCheck("companyId", req.getCompanyId()) .notBlankCheck("companyId", req.getCompanyId())
.notBlankCheck("companyName", req.getCompanyName()) .notBlankCheck("companyName", req.getCompanyName())
.notBlankCheck("bankId", req.getBankId()) .notBlankCheck("bankId", req.getBankId())
.notBlankCheck("bankCardCode", req.getBankCardCode())
.notBlankCheck("orderMoney", req.getOrderMoney()) .notBlankCheck("orderMoney", req.getOrderMoney())
.checkException(); .checkException();
return financeService.applyWithdrawal(req); return financeService.applyWithdrawal(req);
......
...@@ -233,6 +233,7 @@ public class CompanyServiceImpl implements CompanyService { ...@@ -233,6 +233,7 @@ public class CompanyServiceImpl implements CompanyService {
GetEmptyRolesReqVo getEmptyRolesReqVo = new GetEmptyRolesReqVo(); GetEmptyRolesReqVo getEmptyRolesReqVo = new GetEmptyRolesReqVo();
List<RoleVo> roleVoList = roleDao.getEmptyRoles(getEmptyRolesReqVo); List<RoleVo> roleVoList = roleDao.getEmptyRoles(getEmptyRolesReqVo);
resVo.setRoleVoList(roleVoList); resVo.setRoleVoList(roleVoList);
System.out.println("======1111=====" + JsonHelper.serialize(resVo));
return resVo; return resVo;
} }
...@@ -307,7 +308,7 @@ public class CompanyServiceImpl implements CompanyService { ...@@ -307,7 +308,7 @@ public class CompanyServiceImpl implements CompanyService {
// 查询公司用户信息和角色信息 // 查询公司用户信息和角色信息
} }
System.out.println("===========" + JsonHelper.serialize(resVo));
return resVo; return resVo;
} }
......
...@@ -23,7 +23,6 @@ import com.pangding.web.vo.system.res.company.CompanyResVo; ...@@ -23,7 +23,6 @@ import com.pangding.web.vo.system.res.company.CompanyResVo;
import com.yanzuoguang.util.base.ObjectHelper; import com.yanzuoguang.util.base.ObjectHelper;
import com.yanzuoguang.util.exception.CodeException; import com.yanzuoguang.util.exception.CodeException;
import com.yanzuoguang.util.helper.DateHelper; import com.yanzuoguang.util.helper.DateHelper;
import com.yanzuoguang.util.helper.JsonHelper;
import com.yanzuoguang.util.helper.StringHelper; import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.vo.PageSizeData; import com.yanzuoguang.util.vo.PageSizeData;
import com.yanzuoguang.util.vo.ResponseResult; import com.yanzuoguang.util.vo.ResponseResult;
...@@ -219,7 +218,6 @@ public class FinanceServiceImpl implements FinanceService { ...@@ -219,7 +218,6 @@ public class FinanceServiceImpl implements FinanceService {
capitalFlowVo.setTime(DateHelper.getNow()); capitalFlowVo.setTime(DateHelper.getNow());
capitalFlowVo.setStatus(0); capitalFlowVo.setStatus(0);
capitalFlowDao.save(capitalFlowVo); capitalFlowDao.save(capitalFlowVo);
System.out.println("========" + JsonHelper.serialize(capitalFlowVo));
CashWithdrawalReqVo cashWithdrawalReqVo = new CashWithdrawalReqVo(); CashWithdrawalReqVo cashWithdrawalReqVo = new CashWithdrawalReqVo();
ObjectHelper.writeWithFrom(cashWithdrawalReqVo, capitalFlowVo); ObjectHelper.writeWithFrom(cashWithdrawalReqVo, capitalFlowVo);
cashWithdrawalReqVo.setActualType(companyResVo.getWithdrawType()); cashWithdrawalReqVo.setActualType(companyResVo.getWithdrawType());
......
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