|
@@ -172,6 +172,11 @@ public class SaleClueInfoServiceImpl implements ISaleClueInfoService {
|
|
|
clue.setTransitionFlag(dataMap.get("transitionFlag"));
|
|
|
clue.setCreateUserId(createUserId);
|
|
|
clue.setUploadDate(uploadDate);
|
|
|
+
|
|
|
+ SaleRecordVo recordVo = saleClueInfoMapper.selectSaleClueInfoBySellerId(clue.getSellerId());
|
|
|
+ clue.setState(StringUtils.isNotNull(recordVo) ? recordVo.getState() : 1);
|
|
|
+
|
|
|
+
|
|
|
//查询行业
|
|
|
SysIndustryInfo industryInfo = sysIndustryInfoMapper.getIndustryInfoByName(dataMap.get("industryId"));
|
|
|
clue.setIndustryId(StringUtils.isNull(industryInfo) ? 0 : industryInfo.getId());
|