Commit ba8a0018 by jianan

出账检核-分期出账6

parent 8228f65f
......@@ -1154,6 +1154,10 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
if (request == null) {
return queryWrapper;
}
// 默认查询条件 是否分期出账 1-是 0-否 2-拆分的原纪录
queryWrapper.in("is_part", 0, 1);
// 获取参数
String payableNo = request.getPayableNo();
String policyNo = request.getPolicyNo();
......
......@@ -43,7 +43,7 @@ public class Fortune implements Serializable {
private String fortuneBizType;
/**
* 是否部分出账拆分出来的出账记录 0=No, 1=Yes
* 是否拆分出来的出账 1-是 0-否 2-拆分的原纪录
*/
private Integer isPart;
......
......@@ -79,6 +79,11 @@ public class FortuneServiceImpl extends ServiceImpl<FortuneMapper, Fortune>
if (fortuneQueryRequest == null) {
return queryWrapper;
}
// 默认查询条件 是否分期出账 1-是 0-否 2-拆分的原纪录
queryWrapper.in("is_part", 0, 1);
// 获取参数
String reconciliationYearMonth = fortuneQueryRequest.getReconciliationYearMonth();
List<String> statusList = fortuneQueryRequest.getStatusList();
String policyNo = fortuneQueryRequest.getPolicyNo();
......
......@@ -42,6 +42,12 @@ public class FortuneVO implements Serializable {
private String fortuneBizType;
/**
* 是否拆分出来的出账 1-是 0-否 2-拆分的原纪录
*/
@Schema(description = "是否拆分出来的出账 1-是 0-否 2-拆分的原纪录")
private Integer isPart;
/**
* 预计出账业务ID
*/
@Schema(description = "预计出账业务ID")
......
......@@ -48,6 +48,7 @@
#{item}
</foreach>
</if>
AND ef.is_part in (0,1)
</where>
</select>
......
......@@ -80,6 +80,7 @@
#{fortuneId}
</foreach>
</if>
AND f.is_part in (0,1)
GROUP BY f.policy_no
</select>
......
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