|
|
|
@ -7,7 +7,9 @@ import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrProductsEntity;
|
|
|
|
|
import com.glxp.api.dao.thrsys.ThrProductsDao;
|
|
|
|
|
import com.glxp.api.req.thrsys.FilterThrProductsRequest;
|
|
|
|
|
import com.glxp.api.res.thrsys.ThrProductsAddDiResponse;
|
|
|
|
|
import com.glxp.api.res.thrsys.ThrProductsResponse;
|
|
|
|
|
import com.glxp.api.service.thrsys.ThrProductsAddDiService;
|
|
|
|
|
import com.glxp.api.service.thrsys.ThrProductsService;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@ -29,6 +31,8 @@ public class ThrProductsServiceImpl implements ThrProductsService {
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
ThrProductsDao thrProductsDao;
|
|
|
|
|
@Resource
|
|
|
|
|
ThrProductsAddDiService thrProductsAddDiService;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public ThrProductsEntity selectByCode(String code) {
|
|
|
|
@ -98,11 +102,13 @@ public class ThrProductsServiceImpl implements ThrProductsService {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Boolean isExit(String code, String thirdIdFk) {
|
|
|
|
|
//判断di表有没有该产品数据
|
|
|
|
|
FilterThrProductsRequest filterThrProductsRequest = new FilterThrProductsRequest();
|
|
|
|
|
filterThrProductsRequest.setThirdSysFk(thirdIdFk);
|
|
|
|
|
filterThrProductsRequest.setCode(code);
|
|
|
|
|
List<ThrProductsAddDiResponse> filterThrProductsDiList=thrProductsAddDiService.filterThrProductsDiList(filterThrProductsRequest);
|
|
|
|
|
List<ThrProductsEntity> data = thrProductsDao.selectThrProducts(filterThrProductsRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(data)) {
|
|
|
|
|
if (CollUtil.isNotEmpty(data) || CollUtil.isNotEmpty(filterThrProductsDiList)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|