|
|
@@ -2006,7 +2006,7 @@ public class ShipServiceImpl extends ServiceImpl<ShipMapper, PjShip> implements
|
|
|
if (!pjStockDescArrayListUpdate.isEmpty()) {
|
|
|
iStockDescService.updateBatchById(pjStockDescArrayListUpdate);
|
|
|
}
|
|
|
- if (!"TKSHGD".contains(ship.getBizTypeName())) {
|
|
|
+ if (!"TKSHGD".equals(ship.getBizTypeName())) {
|
|
|
orderItemsService.updateBatchById(pjOrderItemsList);
|
|
|
}
|
|
|
//查询所有上架商品
|
|
|
@@ -2071,7 +2071,7 @@ public class ShipServiceImpl extends ServiceImpl<ShipMapper, PjShip> implements
|
|
|
rwShip.setUpdateTime(new Date());
|
|
|
baseMapper.updateById(rwShip);
|
|
|
}
|
|
|
- if (!"TKSHGD".contains(ship.getBizTypeName())) {
|
|
|
+ if (!"TKSHGD".equals(ship.getBizTypeName())) {
|
|
|
PjOrder order = orderMapper.selectById(ship.getOrdId());
|
|
|
List<PjOrderItems> orderItemsList = orderItemsService.list(new LambdaQueryWrapper<PjOrderItems>()
|
|
|
.eq(PjOrderItems::getTenantId, AuthUtil.getTenantId())
|