feat: 修复

dev_no_inv
chenhc 9 months ago committed by qyt
parent 5f373eba3e
commit d8dc5907af

@ -107,7 +107,7 @@ public class ThrOrderDownload implements IDownload {
if (BusTypeConstant.QXCF001.getBusType().equals(collectOrderRequest.getBusType())){
collectOrderBiz.setRelId(entity.getRelId());
BasicProductsEntity basicProductsEntity = basicProductsDao.selectOne(new LambdaQueryWrapper<BasicProductsEntity>().eq(BasicProductsEntity::getYbbm, entity.getYbbm()).last("limit 1"));
if (StrUtil.isEmpty(basicProductsEntity.getNameCode())) {
if (basicProductsEntity == null || StrUtil.isEmpty(basicProductsEntity.getNameCode())) {
errorMsg.append(entity.getCpmctymc()).append("字典未对照").append(";");
}
collectOrderBiz.setTagStatus(1);

Loading…
Cancel
Save