|
|
@@ -40,6 +40,7 @@ import org.springblade.salesPart.excel.ShareTheNextDayDataExcel;
|
|
|
import org.springblade.salesPart.share.entity.SharePutOnShelves;
|
|
|
import org.springblade.salesPart.share.service.ISharePutOnShelvesService;
|
|
|
import org.springblade.salesPart.share.vo.SharePutOnShelvesVO;
|
|
|
+import org.springframework.util.StringUtils;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
@@ -97,6 +98,8 @@ public class SharePutOnShelvesController extends BladeController {
|
|
|
.like(ObjectUtils.isNotNull(sharePutOnShelves.getGoodsDescription()), SharePutOnShelves::getGoodsDescription, sharePutOnShelves.getGoodsDescription())
|
|
|
.like(ObjectUtils.isNotNull(sharePutOnShelves.getPlaceProduction()), SharePutOnShelves::getPlaceProduction, sharePutOnShelves.getPlaceProduction())
|
|
|
.like(ObjectUtils.isNotNull(sharePutOnShelves.getBrandName()), SharePutOnShelves::getBrandName, sharePutOnShelves.getBrandName())
|
|
|
+ .like(StringUtils.hasText(sharePutOnShelves.getBrandItem()), SharePutOnShelves::getBrandItem, sharePutOnShelves.getBrandItem())
|
|
|
+ .like(StringUtils.hasText(sharePutOnShelves.getSpecificationAndModel()), SharePutOnShelves::getSpecificationAndModel, sharePutOnShelves.getSpecificationAndModel())
|
|
|
.like(ObjectUtils.isNotNull(sharePutOnShelves.getBrandId()), SharePutOnShelves::getBrandId, sharePutOnShelves.getBrandId())
|
|
|
.like(ObjectUtils.isNotNull(sharePutOnShelves.getSrcSalesCompanyName()), SharePutOnShelves::getSrcSalesCompanyName, sharePutOnShelves.getSrcSalesCompanyName())
|
|
|
.like(ObjectUtils.isNotNull(sharePutOnShelves.getSharedCompany()), SharePutOnShelves::getSharedCompany, sharePutOnShelves.getSharedCompany())
|