|
@@ -15,6 +15,7 @@ package com.qunzhixinxi.hnqz.admin.service.impl;/*
|
|
|
* Author: hnqz
|
|
|
*/
|
|
|
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.qunzhixinxi.hnqz.admin.api.entity.SysDictItem;
|
|
@@ -84,6 +85,13 @@ public class WmScoreTaskTypeServiceImpl extends ServiceImpl<WmScoreTaskTypeMappe
|
|
|
if(StringUtils.isEmpty(type.getParentId())){
|
|
|
continue;
|
|
|
}
|
|
|
+ if (StrUtil.equals("39", type.getId())) {
|
|
|
+ type.setTaskTypeName("应收账款回款");
|
|
|
+ }
|
|
|
+ if (StrUtil.equals("40", type.getId()) || StrUtil.equals("41", type.getId())) {
|
|
|
+ // 应收账款回款-A类/应收账款回款-B类/应收账款回款-C类 统一回显为一个‘应收账款回款’
|
|
|
+ continue;
|
|
|
+ }
|
|
|
if(resultMap.containsKey(type.getParentId())){
|
|
|
String typeName = resultMap.get(type.getParentId());
|
|
|
typeName = typeName +";"+ type.getTaskTypeName();
|