Commit cad73302 authored by fangxinjiang's avatar fangxinjiang

派减分项办理 BUG 修复

parent 7dd102a4
......@@ -24,7 +24,10 @@ import java.io.Serializable;
*/
@Data
public class UpProjectSocialFundVo implements Serializable {
// 社保状态 社保状态(字典): 0 无社保 1 处理中 2.部分购买 3.正常 4.已派减
/**
* @Author fxj
* @Description 社保状态 社保状态(字典): 0 无社保 1 处理中 2.部分购买 3.正常 4.已派减
**/
@Schema(name = "社保状态(字典): 0 无社保 1 处理中 2.部分购买 3.正常 4.已派减")
String socialStatus;
// 公积金状态 社保状态(字典): 0 无社保 1 处理中 2.正常 3.已派减
......
......@@ -3858,12 +3858,6 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
){
vo.setSocialStatus(CommonConstants.ZERO_STRING);
}
// 待办理或办理中或部分办理失败或审核不通过部分办理成功或派减办理中为 处理中
if (CommonConstants.ZERO_STRING.equals(sf.getSocialStatus())
|| CommonConstants.TWO_STRING.equals(sf.getSocialStatus())
|| CommonConstants.ELEVEN_STRING.equals(sf.getSocialStatus())){
vo.setSocialStatus(CommonConstants.ONE_STRING);
}
// 部分办理失败或审核不通过部分办理成功或派减部分办理失败 为 部分购买
if (CommonConstants.FOUR_STRING.equals(sf.getSocialStatus())
|| CommonConstants.TWELVE_STRING.equals(sf.getSocialStatus())
......@@ -3884,6 +3878,12 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
){
vo.setSocialStatus(CommonConstants.TWO_STRING);
}
// 待办理或办理中或部分办理失败或审核不通过部分办理成功或派减办理中为 处理中
if (CommonConstants.ZERO_STRING.equals(sf.getSocialStatus())
|| CommonConstants.TWO_STRING.equals(sf.getSocialStatus())
|| CommonConstants.ELEVEN_STRING.equals(sf.getSocialStatus())){
vo.setSocialStatus(CommonConstants.ONE_STRING);
}
if (CommonConstants.NINE_STRING.equals(sf.getSocialStatus())){
// 如果办理失败 全部派减失败为正常购买
if (CommonConstants.FOUR_STRING.equals(sf.getPensionHandle())
......
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