|
|
@@ -98,7 +98,7 @@ public class GoodsDescController extends BladeController {
|
|
|
.like(StringUtils.isNotBlank(goods.getSpecificationAndModel()), GoodsDesc::getSpecificationAndModel, goods.getSpecificationAndModel())//规格型号
|
|
|
.like(StringUtils.isNotBlank(goods.getBrandItem()), GoodsDesc::getBrandItem, goods.getBrandItem())//花纹
|
|
|
.like(StringUtils.isNotBlank(goods.getCname()), GoodsDesc::getCname, goods.getCname())//商品名称
|
|
|
- .like(StringUtils.isNotBlank(goods.getBrand()), GoodsDesc::getBrand, goods.getBrand())//品牌
|
|
|
+ .like(ObjectUtils.isNotEmpty(goods.getBrandId()), GoodsDesc::getBrandId, goods.getBrandId())//品牌
|
|
|
.eq(ObjectUtils.isNotEmpty(goods.getSalesCompanyId()), GoodsDesc::getSalesCompanyId, goods.getSalesCompanyId())//所属公司
|
|
|
.eq(ObjectUtils.isNotEmpty(goods.getWhether()), GoodsDesc::getWhether, goods.getWhether())//是否管理到批次号
|
|
|
.eq(ObjectUtils.isNotEmpty(goods.getExplosionProof()), GoodsDesc::getExplosionProof, goods.getExplosionProof());//是否防爆
|