Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TCM
tcm-system
Commits
e70ce48b
Commit
e70ce48b
authored
Dec 06, 2024
by
tangfang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改公司查询审核信息问题
parent
4b6012c0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
25 deletions
+1
-25
FinanceServiceImpl.java
...ngding/web/authority/service/impl/FinanceServiceImpl.java
+1
-1
RegisterServiceImpl.java
...gding/web/authority/service/impl/RegisterServiceImpl.java
+0
-24
No files found.
src/main/java/com/pangding/web/authority/service/impl/FinanceServiceImpl.java
View file @
e70ce48b
...
...
@@ -261,7 +261,7 @@ public class FinanceServiceImpl implements FinanceService {
ObjectHelper
.
writeWithFrom
(
cashWithdrawalReqVo
,
capitalFlowVo
);
cashWithdrawalReqVo
.
setActualType
(
companyResVo
.
getWithdrawType
());
cashWithdrawalReqVo
.
setBankCardType
(
companyBankCardVo
.
getType
());
cashWithdrawalReqVo
.
setOrderFee
(
CalcHelper
.
sub
(
capitalFlowVo
.
getOrderFee
(),
capitalFlowVo
.
getServiceCharge
()));
cashWithdrawalReqVo
.
setOrderFee
(
CalcHelper
.
add
(
capitalFlowVo
.
getOrderFee
(),
capitalFlowVo
.
getServiceCharge
()));
companyConsumer
.
cashWithdrawal
(
cashWithdrawalReqVo
);
ResponseResult
<
CapitalFlowReqVo
>
responseResult
=
new
ResponseResult
<>();
responseResult
.
setData
(
req
);
...
...
src/main/java/com/pangding/web/authority/service/impl/RegisterServiceImpl.java
View file @
e70ce48b
...
...
@@ -478,30 +478,6 @@ public class RegisterServiceImpl implements RegisterService {
resVo
.
setMsg
(
"公司基本信息未完善,跳转公司完善页面"
);
return
resVo
;
}
/*判断电子签约状态,若不等于1,则跳转签约页面*/
/*else if (companyVo.getSigningStatus() != CompanyConstant.COMPANY_STATUS_SIGN_success){
CompanySaveReqVo companyReqVo = new CompanySaveReqVo();
companyReqVo.setId(companyVo.getId());
ResponseResult result1 = new ResponseResult();
try {
result1 = payFeign.sign(companyReqVo);
}catch (Exception e){
e.printStackTrace();
throw new CodeException("跳转签约页面失败,请重试");
}
CompanySaveReqVo companyReqVo1 = (CompanySaveReqVo) result1.getData();
resVo.setCode("04");
resVo.setMsg("未签约,跳转签约页面");
resVo.setUrl(companyReqVo1.getSignUrl());
return resVo;
}*/
// if (companyBankCardVoList == null || companyBankCardVoList.isEmpty()) {
// /*该公司没有银行卡,需要跳转添加银行卡*/
// resVo.setCode("03");
// resVo.setMsg("还未添加银行卡,跳转添加银行卡页面");
// return resVo;
// }
/*获取用户权限列表*/
RoleAuthorityGetReqVo
roleAuthorityGetReqVo
=
new
RoleAuthorityGetReqVo
();
roleAuthorityGetReqVo
.
setUserId
(
userVo
.
getId
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment