查询bug修改
This commit is contained in:
parent
369e6bc0aa
commit
3cdf018629
|
|
@ -12,6 +12,7 @@ import com.bonus.flowable.service.BusinessService;
|
|||
import com.bonus.flowable.utils.FlowTaskUtils;
|
||||
import com.bonus.system.api.RemoteUserService;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import liquibase.pro.packaged.A;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
|
|
@ -57,6 +58,11 @@ public class BusinessController {
|
|||
if (StringUtils.isNotBlank(auditTask.getTaskId())){
|
||||
taskIdArr = auditTask.getTaskId().split(",");
|
||||
}
|
||||
// if(uuidArr.length!=taskIdArr.length){
|
||||
// return AjaxResult.error("数据异常,请联系管理员进行处理!");
|
||||
// }
|
||||
|
||||
//TODO -异常bug -未发现是怎么回显 数组越界
|
||||
AjaxResult code = null;
|
||||
for (int i = 0; i < uuidArr.length; i++) {
|
||||
auditTask.setUuid(uuidArr[i]);
|
||||
|
|
|
|||
|
|
@ -400,9 +400,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
lkc.exit_reason as reason
|
||||
FROM
|
||||
lk_cont_person lkc
|
||||
LEFT JOIN pt_cons_person pcp ON lkc.cons_persion_id = pcp.cons_user_id AND pcp.is_active = '1'
|
||||
LEFT JOIN pt_cons_person pcp ON lkc.cons_persion_id = pcp.cons_user_id
|
||||
left join sys_dict_data sdd on sdd.dict_value = pcp.post and sdd.dict_type = 'sys_cons_post' and sdd.status ='0'
|
||||
WHERE lkc.into_status = '3' AND lkc.out_status != '0'
|
||||
WHERE lkc.into_status = '3' AND lkc.out_status != '0' AND pcp.is_active = '1'
|
||||
<if test="bean.proId != null and bean.proId != ''">
|
||||
and lkc.pro_id = #{bean.proId}
|
||||
</if>
|
||||
|
|
|
|||
Loading…
Reference in New Issue