|
@@ -7,6 +7,7 @@ import com.fs.common.core.domain.AjaxResult;
|
|
|
import com.fs.common.core.domain.R;
|
|
import com.fs.common.core.domain.R;
|
|
|
import com.fs.common.core.page.TableDataInfo;
|
|
import com.fs.common.core.page.TableDataInfo;
|
|
|
import com.fs.common.enums.BusinessType;
|
|
import com.fs.common.enums.BusinessType;
|
|
|
|
|
+import com.fs.common.utils.DictUtils;
|
|
|
import com.fs.common.utils.PubFun;
|
|
import com.fs.common.utils.PubFun;
|
|
|
import com.fs.common.utils.ServletUtils;
|
|
import com.fs.common.utils.ServletUtils;
|
|
|
import com.fs.common.utils.StringUtils;
|
|
import com.fs.common.utils.StringUtils;
|
|
@@ -370,6 +371,10 @@ public class QwExternalContactController extends BaseController
|
|
|
|
|
|
|
|
if (!StringUtil.strIsNullOrEmpty(item.getState()) && !wayList.isEmpty()) {
|
|
if (!StringUtil.strIsNullOrEmpty(item.getState()) && !wayList.isEmpty()) {
|
|
|
item.setState(item.getState()+"-"+getContactWayNameStream(item.getState(), wayList));
|
|
item.setState(item.getState()+"-"+getContactWayNameStream(item.getState(), wayList));
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+ if (item.getStatus()!=null){
|
|
|
|
|
+ item.setStatusName(DictUtils.getDictLabel("sys_qw_external_contact_status", String.valueOf(item.getStatus())));
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
ExcelUtil<QwExternalContactVO> util = new ExcelUtil<QwExternalContactVO>(QwExternalContactVO.class);
|
|
ExcelUtil<QwExternalContactVO> util = new ExcelUtil<QwExternalContactVO>(QwExternalContactVO.class);
|