Commit 482da095 authored by wangzb's avatar wangzb

feature-wzb :bug修复

parent a40a9be2
...@@ -276,17 +276,17 @@ public class TOrderServiceImpl extends ServiceImpl<TOrderMapper, TOrder> impleme ...@@ -276,17 +276,17 @@ public class TOrderServiceImpl extends ServiceImpl<TOrderMapper, TOrder> impleme
if (CollectionUtils.isNotEmpty(withHoldingList)) { if (CollectionUtils.isNotEmpty(withHoldingList)) {
orderDetailVO.setWithHoldingEnclosure(withHoldingList); orderDetailVO.setWithHoldingEnclosure(withHoldingList);
} else { } else {
orderDetailVO.setFundEnclosure(Lists.newArrayList()); orderDetailVO.setWithHoldingEnclosure(Lists.newArrayList());
} }
if (CollectionUtils.isNotEmpty(collectionList)) { if (CollectionUtils.isNotEmpty(collectionList)) {
orderDetailVO.setCollectionEnclosure(collectionList); orderDetailVO.setCollectionEnclosure(collectionList);
} else { } else {
orderDetailVO.setFundEnclosure(Lists.newArrayList()); orderDetailVO.setCollectionEnclosure(Lists.newArrayList());
} }
if (CollectionUtils.isNotEmpty(noTaxList)) { if (CollectionUtils.isNotEmpty(noTaxList)) {
orderDetailVO.setCollectionEnclosure(noTaxList); orderDetailVO.setNoTaxEnclosure(noTaxList);
} else { } else {
orderDetailVO.setNoTaxEnclosure(Lists.newArrayList()); orderDetailVO.setNoTaxEnclosure(Lists.newArrayList());
......
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