|
@@ -193,6 +193,9 @@ public class DailyBoardServiceImpl implements DailyBoardService {
|
|
|
Long key = null;
|
|
|
SkuSpec skuSpec = skuSpecMap.get(skuSpecId);
|
|
|
if (skuSpec != null) {
|
|
|
+ if (Objects.equals(skuSpec.getGiftTag(), StatusConstant.YES)) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
key = skuSpec.getBomSpecId();
|
|
|
}
|
|
|
BomSpecBo bomSpecBo = bomSpecMap.get(key);
|
|
@@ -258,6 +261,9 @@ public class DailyBoardServiceImpl implements DailyBoardService {
|
|
|
SkuSpec skuSpec = skuSpecMap.get(outboundOrder.getSkuSpecCode());
|
|
|
BomSpecBo bomSpec = null;
|
|
|
if (skuSpec != null) {
|
|
|
+ if (Objects.equals(skuSpec.getGiftTag(), StatusConstant.YES)) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
bomSpec = bomSpecMap.get(skuSpec.getBomSpecId());
|
|
|
if (bomSpec != null && !Objects.equals(bomSpec.getClassifyParentId(), 1L)) {
|
|
|
continue;
|