Commit 163325e1 by 阮思源

修改bug

parent 20fae908
...@@ -2179,7 +2179,9 @@ public class BookGroupBizImpl implements BookGroupBiz { ...@@ -2179,7 +2179,9 @@ public class BookGroupBizImpl implements BookGroupBiz {
ProductDto productDto = productDtoMap.get(bookGroupServe.getServeId()); ProductDto productDto = productDtoMap.get(bookGroupServe.getServeId());
if (productDto != null) { if (productDto != null) {
bookGroupServe.setServeName(productDto.getProductName()); bookGroupServe.setServeName(productDto.getProductName());
bookGroupServe.setFromType(productDto.getProductTypeCode()); if (productDto.getProductTypeDto() != null) {
bookGroupServe.setFromType(productDto.getProductTypeDto().getTypeCode());
}
bookGroupServe.setIsSuper(isSuperMap.get(bookGroupServe.getServeId())); bookGroupServe.setIsSuper(isSuperMap.get(bookGroupServe.getServeId()));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment