Merge branch 'dev' into test
This commit is contained in:
@@ -8,7 +8,7 @@ import lombok.Data;
|
||||
public class IntPushContractReqVO {
|
||||
|
||||
@Schema(description = "接口请求号")
|
||||
private String __requestId_;
|
||||
private String __requestId__;
|
||||
@Schema(description = "接口类型")
|
||||
private String __interfaceType__;
|
||||
@Schema(description = "操作标志")
|
||||
|
||||
@@ -376,7 +376,7 @@ public class ContractApiImpl implements ContractApi {
|
||||
|
||||
// 返回数据
|
||||
IntPushContractRespVO body = new IntPushContractRespVO();
|
||||
body.set__requestId_(pushReqVO.get__requestId_());
|
||||
body.set__requestId_(pushReqVO.get__requestId__());
|
||||
body.set__interfaceType__("R_MY_JG_10");
|
||||
body.setBusiBillCode(pushReqVO.getBusiBillCode());
|
||||
body.setCode(code);
|
||||
|
||||
@@ -391,11 +391,15 @@ public class ContractServiceImpl implements ContractService {
|
||||
}
|
||||
|
||||
// 查询合同动态字段及条款
|
||||
TmplInscBsnRelRespVO tmplInscBsnRel = tmplInscBsnRelService.getTmplInscBsnRel(contractMainDO.getBusinessId());
|
||||
// 设置合同动态字段
|
||||
respVO.setDynamicsFields(tmplInscBsnRel.getTmplInscDatBsnRespVOS());
|
||||
// 设置合同动态条款
|
||||
respVO.setDynamicsItems(tmplInscBsnRel.getTmplInscItmBsnRespVOS());
|
||||
if (contractMainDO.getBusinessId() != null) {
|
||||
TmplInscBsnRelRespVO tmplInscBsnRel = tmplInscBsnRelService.getTmplInscBsnRel(contractMainDO.getBusinessId());
|
||||
if (tmplInscBsnRel != null) {
|
||||
// 设置合同动态字段
|
||||
respVO.setDynamicsFields(tmplInscBsnRel.getTmplInscDatBsnRespVOS());
|
||||
// 设置合同动态条款
|
||||
respVO.setDynamicsItems(tmplInscBsnRel.getTmplInscItmBsnRespVOS());
|
||||
}
|
||||
}
|
||||
|
||||
return respVO;
|
||||
}
|
||||
@@ -478,11 +482,15 @@ public class ContractServiceImpl implements ContractService {
|
||||
}
|
||||
|
||||
// 查询合同动态字段及条款
|
||||
TmplInscBsnRelRespVO tmplInscBsnRel = tmplInscBsnRelService.getTmplInscBsnRel(contractMainDO.getBusinessId());
|
||||
// 设置合同动态字段
|
||||
respVO.setDynamicsFields(tmplInscBsnRel.getTmplInscDatBsnRespVOS());
|
||||
// 设置合同动态条款
|
||||
respVO.setDynamicsItems(tmplInscBsnRel.getTmplInscItmBsnRespVOS());
|
||||
if (contractMainDO.getBusinessId() != null) {
|
||||
TmplInscBsnRelRespVO tmplInscBsnRel = tmplInscBsnRelService.getTmplInscBsnRel(contractMainDO.getBusinessId());
|
||||
if (tmplInscBsnRel != null) {
|
||||
// 设置合同动态字段
|
||||
respVO.setDynamicsFields(tmplInscBsnRel.getTmplInscDatBsnRespVOS());
|
||||
// 设置合同动态条款
|
||||
respVO.setDynamicsItems(tmplInscBsnRel.getTmplInscItmBsnRespVOS());
|
||||
}
|
||||
}
|
||||
|
||||
return respVO;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user