Commit 4b0ef580 authored by 刘林's avatar 刘林

fix(jg):移装变更接口修改

parent 1d096ab5
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
select change_data select change_data
from tzs_jg_registration_history his, from tzs_jg_registration_history his,
tzs_jg_change_registration_transfer crt tzs_jg_change_registration_transfer crt
where crt.sequence_nbr = his.current_document_id where crt.apply_no = his.current_document_id
and crt.audit_status in ('三级待受理', '二级待受理', '一级待受理') and crt.audit_status in ('三级待受理', '二级待受理', '一级待受理')
and his.registration_class = '移装变更登记' and his.registration_class = '移装变更登记'
</select> </select>
......
...@@ -776,7 +776,6 @@ public class JgChangeRegistrationTransferServiceImpl extends BaseService<JgChang ...@@ -776,7 +776,6 @@ public class JgChangeRegistrationTransferServiceImpl extends BaseService<JgChang
//流程执行完成后,更新设备使用信息 //流程执行完成后,更新设备使用信息
JgRegistrationHistory historyData = jgRegistrationHistoryMapper.selectOne(new LambdaQueryWrapper<JgRegistrationHistory>() JgRegistrationHistory historyData = jgRegistrationHistoryMapper.selectOne(new LambdaQueryWrapper<JgRegistrationHistory>()
.eq(JgRegistrationHistory::getCurrentDocumentId, jgChangeRegistrationTransfer.getApplyNo())); .eq(JgRegistrationHistory::getCurrentDocumentId, jgChangeRegistrationTransfer.getApplyNo()));
this.updateByFlowEnd(jgChangeRegistrationTransfer.getSequenceNbr().toString(), historyData); this.updateByFlowEnd(jgChangeRegistrationTransfer.getSequenceNbr().toString(), historyData);
HashMap<String, Object> map = new HashMap<>(); HashMap<String, Object> map = new HashMap<>();
map.put("taskStatus", FlowStatusEnum.TO_BE_FINISHED.getCode()); map.put("taskStatus", FlowStatusEnum.TO_BE_FINISHED.getCode());
......
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