Commit 63c5f79b authored by huyuchen's avatar huyuchen

huych-社保自动化相关提交

parent a29790bb
......@@ -383,7 +383,7 @@ public class TDispatchInfoPre extends BaseEntity {
@ExcelAttribute(name = "派单id")
@ExcelProperty("派单id")
@Schema(description = "派单id")
private String disPatcherId;
private String dispatcherId;
@Schema(description = "发起失败原因")
private String errorInfo;
......
......@@ -1139,7 +1139,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
TDispatchInfoPre dispatchInfoPre = dispatchInfoPreMapper.selectById(preId);
if (Common.isNotNull(dispatchInfoPre)) {
dispatchInfoPre.setProcessStatus(CommonConstants.THREE_STRING);
dispatchInfoPre.setDisPatcherId(socialFund.getId());
dispatchInfoPre.setDispatcherId(socialFund.getId());
dispatchInfoPre.setErrorInfo(null);
dispatchInfoPre.setErrorTime(null);
dispatchInfoPreMapper.updateById(dispatchInfoPre);
......@@ -3688,7 +3688,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
if (null != socialInfo) {
//派单审核通过更新社保待购买表的状态
TDispatchInfoPre dispatchInfoPre = dispatchInfoPreMapper.selectOne(Wrappers.<TDispatchInfoPre>query().lambda()
.eq(TDispatchInfoPre::getDisPatcherId, sf.getId())
.eq(TDispatchInfoPre::getDispatcherId, sf.getId())
.eq(TDispatchInfoPre::getProcessStatus, CommonConstants.THREE_STRING)
.last(CommonConstants.LAST_ONE_SQL));
// 派增审核
......@@ -4422,7 +4422,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
}
//针对社保自动化过来的数据,办理更新待购买数据状态
TDispatchInfoPre dispatchInfoPre = dispatchInfoPreMapper.selectOne(Wrappers.<TDispatchInfoPre>query().lambda()
.eq(TDispatchInfoPre::getDisPatcherId, sf.getId())
.eq(TDispatchInfoPre::getDispatcherId, sf.getId())
.eq(TDispatchInfoPre::getProcessStatus, CommonConstants.FIVE_STRING)
.last(CommonConstants.LAST_ONE_SQL));
if (Common.isNotNull(dispatchInfoPre)) {
......
......@@ -52,7 +52,7 @@
<result property="paymentType" column="PAYMENT_TYPE"/>
<result property="contractStatus" column="CONTRACT_STATUS"/>
<result property="contractId" column="CONTRACT_ID"/>
<result property="disPatcherId" column="DISPATCHER_ID"/>
<result property="dispatcherId" column="DISPATCHER_ID"/>
<result property="createBy" column="CREATE_BY"/>
<result property="updateBy" column="UPDATE_BY"/>
<result property="createName" column="CREATE_NAME"/>
......
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