Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
windows
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
zhanhai
windows
Commits
03624105
Commit
03624105
authored
Dec 04, 2023
by
LSL
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
23f1c6cf
ab911575
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
6 deletions
+49
-6
GetSignContractCommand.java
...java/com/jqtx/windows/command/GetSignContractCommand.java
+4
-1
SyncCreditCommand.java
...main/java/com/jqtx/windows/command/SyncCreditCommand.java
+17
-0
ExceptionConfig.java
.../java/com/jqtx/windows/common/config/ExceptionConfig.java
+1
-0
ZyJsonResult.java
...n/java/com/jqtx/windows/component/model/ZyJsonResult.java
+17
-1
CreditThirdDataJob.java
src/main/java/com/jqtx/windows/job/CreditThirdDataJob.java
+10
-4
No files found.
src/main/java/com/jqtx/windows/command/GetSignContractCommand.java
View file @
03624105
...
@@ -3,6 +3,7 @@ package com.jqtx.windows.command;
...
@@ -3,6 +3,7 @@ package com.jqtx.windows.command;
import
com.alibaba.fastjson.JSONObject
;
import
com.alibaba.fastjson.JSONObject
;
import
com.jqtx.infrastructure.oss.starter.config.OssUtils
;
import
com.jqtx.infrastructure.oss.starter.config.OssUtils
;
import
com.jqtx.infrastructure.oss.starter.properties.OssProperties
;
import
com.jqtx.windows.common.exception.BizException
;
import
com.jqtx.windows.common.exception.BizException
;
import
com.jqtx.windows.common.factory.AbstractCommand
;
import
com.jqtx.windows.common.factory.AbstractCommand
;
import
com.jqtx.windows.common.factory.RuntimeContextHolder
;
import
com.jqtx.windows.common.factory.RuntimeContextHolder
;
...
@@ -22,6 +23,8 @@ public class GetSignContractCommand extends AbstractCommand {
...
@@ -22,6 +23,8 @@ public class GetSignContractCommand extends AbstractCommand {
private
IProtocalFeignService
iProtocalFeignService
;
private
IProtocalFeignService
iProtocalFeignService
;
@Autowired
@Autowired
private
OssUtils
ossUtils
;
private
OssUtils
ossUtils
;
@Autowired
private
OssProperties
ossProperties
;
@Override
@Override
...
@@ -33,7 +36,7 @@ public class GetSignContractCommand extends AbstractCommand {
...
@@ -33,7 +36,7 @@ public class GetSignContractCommand extends AbstractCommand {
JsonResult
<
String
>
rongdanPdfJsonResult
=
iProtocalFeignService
.
getFilePathPdf
(
getSignContractModel
.
getLoanNo
(),
"own-rongdan"
);
JsonResult
<
String
>
rongdanPdfJsonResult
=
iProtocalFeignService
.
getFilePathPdf
(
getSignContractModel
.
getLoanNo
(),
"own-rongdan"
);
if
(
rongdanPdfJsonResult
.
isSuccess
()
&&
StringUtils
.
isNotEmpty
(
rongdanPdfJsonResult
.
getResult
()))
{
if
(
rongdanPdfJsonResult
.
isSuccess
()
&&
StringUtils
.
isNotEmpty
(
rongdanPdfJsonResult
.
getResult
()))
{
getSignContractResponse
.
setSignStatus
(
"SIGN"
);
getSignContractResponse
.
setSignStatus
(
"SIGN"
);
String
path
=
oss
Utils
.
generateTempURLPrivateDomain
(
rongdanPdfJsonResult
.
getResult
()
);
String
path
=
oss
Properties
.
getPrivateDomain
()
+
rongdanPdfJsonResult
.
getResult
(
);
getSignContractResponse
.
setContractFileUrl
(
path
);
getSignContractResponse
.
setContractFileUrl
(
path
);
}
else
{
}
else
{
getSignContractResponse
.
setSignStatus
(
"SIGN_ING"
);
getSignContractResponse
.
setSignStatus
(
"SIGN_ING"
);
...
...
src/main/java/com/jqtx/windows/command/SyncCreditCommand.java
View file @
03624105
...
@@ -7,19 +7,26 @@ import com.jqtx.windows.common.factory.AbstractCommand;
...
@@ -7,19 +7,26 @@ import com.jqtx.windows.common.factory.AbstractCommand;
import
com.jqtx.windows.common.factory.RuntimeContextHolder
;
import
com.jqtx.windows.common.factory.RuntimeContextHolder
;
import
com.jqtx.windows.common.utils.ValidateUtil
;
import
com.jqtx.windows.common.utils.ValidateUtil
;
import
com.jqtx.windows.component.CreditResultComponent
;
import
com.jqtx.windows.component.CreditResultComponent
;
import
com.jqtx.windows.component.LoanComponent
;
import
com.jqtx.windows.component.model.CreditResultModel
;
import
com.jqtx.windows.component.model.CreditResultModel
;
import
com.jqtx.windows.component.model.LoanModel
;
import
com.jqtx.windows.web.request.SyncCreditResultRequest
;
import
com.jqtx.windows.web.request.SyncCreditResultRequest
;
import
com.jqtx.windows.web.response.JsonResult
;
import
com.jqtx.windows.web.response.JsonResult
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.time.LocalDateTime
;
@Service
@Service
@Slf4j
@Slf4j
public
class
SyncCreditCommand
extends
AbstractCommand
{
public
class
SyncCreditCommand
extends
AbstractCommand
{
@Autowired
@Autowired
private
CreditResultComponent
creditResultComponent
;
private
CreditResultComponent
creditResultComponent
;
@Autowired
private
LoanComponent
loanComponent
;
@Override
@Override
public
JsonResult
execute
()
{
public
JsonResult
execute
()
{
...
@@ -31,6 +38,16 @@ public class SyncCreditCommand extends AbstractCommand {
...
@@ -31,6 +38,16 @@ public class SyncCreditCommand extends AbstractCommand {
CreditResultModel
creditResultModel
=
BeanUtil
.
toBean
(
syncCreditResultRequest
,
CreditResultModel
.
class
);
CreditResultModel
creditResultModel
=
BeanUtil
.
toBean
(
syncCreditResultRequest
,
CreditResultModel
.
class
);
creditResultModel
.
setCreditStatus
(
syncCreditResultRequest
.
getStatus
());
creditResultModel
.
setCreditStatus
(
syncCreditResultRequest
.
getStatus
());
creditResultComponent
.
insert
(
creditResultModel
);
creditResultComponent
.
insert
(
creditResultModel
);
if
(
StringUtils
.
isNotEmpty
(
creditResultModel
.
getLoanNo
()))
{
boolean
pass
=
syncCreditResultRequest
.
getStatus
().
equals
(
"1"
);
LoanModel
loanModel
=
new
LoanModel
();
loanModel
.
setLoanNo
(
creditResultModel
.
getLoanNo
());
loanModel
.
setLoanStatus
(
pass
?
"AUDITED"
:
"CANCELED"
);
loanModel
.
setGmtModified
(
LocalDateTime
.
now
());
loanComponent
.
updateByLoanNo
(
loanModel
);
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
error
(
"同步授信结果授信编号:{},报错:{}"
,
syncCreditResultRequest
.
getOrderNo
(),
e
.
getMessage
(),
e
);
log
.
error
(
"同步授信结果授信编号:{},报错:{}"
,
syncCreditResultRequest
.
getOrderNo
(),
e
.
getMessage
(),
e
);
throw
new
BizException
(
"同步授信结果错误"
);
throw
new
BizException
(
"同步授信结果错误"
);
...
...
src/main/java/com/jqtx/windows/common/config/ExceptionConfig.java
View file @
03624105
...
@@ -55,6 +55,7 @@ public class ExceptionConfig {
...
@@ -55,6 +55,7 @@ public class ExceptionConfig {
@ResponseBody
@ResponseBody
public
JsonResult
handleHttpRequestMethodNotSupportedException
(
HttpRequestMethodNotSupportedException
e
,
public
JsonResult
handleHttpRequestMethodNotSupportedException
(
HttpRequestMethodNotSupportedException
e
,
HttpServletRequest
request
)
{
HttpServletRequest
request
)
{
log
.
error
(
"全局异常捕捉:HttpRequestMethodNotSupportedException[url:{},message:{}]"
,
request
.
getRequestURI
(),
log
.
error
(
"全局异常捕捉:HttpRequestMethodNotSupportedException[url:{},message:{}]"
,
request
.
getRequestURI
(),
e
.
getMessage
(),
e
);
e
.
getMessage
(),
e
);
return
JsonResult
.
error
(
ExceptionCodeEnum
.
HTTP_METHOD_ERROR
);
return
JsonResult
.
error
(
ExceptionCodeEnum
.
HTTP_METHOD_ERROR
);
...
...
src/main/java/com/jqtx/windows/component/model/ZyJsonResult.java
View file @
03624105
...
@@ -27,7 +27,8 @@ public class ZyJsonResult<T> implements Serializable {
...
@@ -27,7 +27,8 @@ public class ZyJsonResult<T> implements Serializable {
private
T
result
;
private
T
result
;
@ApiModelProperty
(
"扩展字段"
)
@ApiModelProperty
(
"扩展字段"
)
private
JSONArray
externalInfo
;
private
JSONArray
externalInfo
;
@ApiModelProperty
(
"返回码"
)
private
String
status
;
public
JSONArray
getExternalInfo
()
{
public
JSONArray
getExternalInfo
()
{
return
externalInfo
;
return
externalInfo
;
}
}
...
@@ -79,4 +80,19 @@ public class ZyJsonResult<T> implements Serializable {
...
@@ -79,4 +80,19 @@ public class ZyJsonResult<T> implements Serializable {
this
.
result
=
result
;
this
.
result
=
result
;
}
}
public
Boolean
getSuccess
()
{
return
success
;
}
public
void
setSuccess
(
Boolean
success
)
{
this
.
success
=
success
;
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
;
}
}
}
src/main/java/com/jqtx/windows/job/CreditThirdDataJob.java
View file @
03624105
...
@@ -44,8 +44,10 @@ public class CreditThirdDataJob {
...
@@ -44,8 +44,10 @@ public class CreditThirdDataJob {
thirdCredit
.
put
(
"reqNo"
,
c
.
getOrderNo
());
thirdCredit
.
put
(
"reqNo"
,
c
.
getOrderNo
());
thirdCredit
.
put
(
"type"
,
"01"
);
thirdCredit
.
put
(
"type"
,
"01"
);
ZyJsonResult
zyJsonResult
=
abcHttpClient
.
postRequest
(
thirdCredit
.
toJSONString
(),
ZNPostUrlEnum
.
CREDIT_QUERY
.
getCode
());
ZyJsonResult
zyJsonResult
=
abcHttpClient
.
postRequest
(
thirdCredit
.
toJSONString
(),
ZNPostUrlEnum
.
CREDIT_QUERY
.
getCode
());
JSONArray
jsonArray
=
zyJsonResult
.
getExternalInfo
();
if
(
"00"
.
equalsIgnoreCase
(
zyJsonResult
.
getStatus
())||
"01"
.
equalsIgnoreCase
(
zyJsonResult
.
getStatus
())){
processThirdData
(
c
.
getClientCell
(),
c
.
getOrderNo
(),
jsonArray
);
JSONArray
jsonArray
=
zyJsonResult
.
getExternalInfo
();
processThirdData
(
c
.
getClientCell
(),
c
.
getOrderNo
(),
jsonArray
);
}
});
});
List
<
CreditModel
>
withdraw
=
creditComponent
.
getListModelByCreditThirdStatus
(
"INIT-WITHDRAW"
);
List
<
CreditModel
>
withdraw
=
creditComponent
.
getListModelByCreditThirdStatus
(
"INIT-WITHDRAW"
);
...
@@ -54,9 +56,13 @@ public class CreditThirdDataJob {
...
@@ -54,9 +56,13 @@ public class CreditThirdDataJob {
JSONObject
thirdCredit
=
new
JSONObject
();
JSONObject
thirdCredit
=
new
JSONObject
();
thirdCredit
.
put
(
"reqNo"
,
loanModel
.
getLoanNo
());
thirdCredit
.
put
(
"reqNo"
,
loanModel
.
getLoanNo
());
thirdCredit
.
put
(
"type"
,
"02"
);
thirdCredit
.
put
(
"type"
,
"02"
);
ZyJsonResult
zyJsonResult
=
abcHttpClient
.
postRequest
(
thirdCredit
.
toJSONString
(),
ZNPostUrlEnum
.
CREDIT_QUERY
.
getCode
());
ZyJsonResult
zyJsonResult
=
abcHttpClient
.
postRequest
(
thirdCredit
.
toJSONString
(),
ZNPostUrlEnum
.
CREDIT_QUERY
.
getCode
());
JSONArray
jsonArray
=
zyJsonResult
.
getExternalInfo
();
if
(
"00"
.
equalsIgnoreCase
(
zyJsonResult
.
getStatus
())||
"01"
.
equalsIgnoreCase
(
zyJsonResult
.
getStatus
())){
processThirdData
(
w
.
getClientCell
(),
w
.
getOrderNo
(),
jsonArray
);
JSONArray
jsonArray
=
zyJsonResult
.
getExternalInfo
();
processThirdData
(
w
.
getClientCell
(),
w
.
getOrderNo
(),
jsonArray
);
}
});
});
}
}
...
...
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