|
|
@@ -73,6 +73,7 @@ public class CenterStockDescController {
|
|
|
.eq(ObjectUtil.isNotEmpty(centerStockDescVo.getStorageId()), CenterStockDesc::getStorageId, centerStockDescVo.getStorageId())
|
|
|
.eq(ObjectUtil.isNotEmpty(centerStockDescVo.getBrandId()), CenterStockDesc::getBrandId, centerStockDescVo.getBrandId())
|
|
|
.eq(ObjectUtil.isNotEmpty(centerStockDescVo.getGoodsTypeId()), CenterStockDesc::getGoodsTypeId, centerStockDescVo.getGoodsTypeId())
|
|
|
+ .eq(ObjectUtil.isNotEmpty(centerStockDescVo.getCustomerName()), CenterStockDesc::getCustomerName, centerStockDescVo.getCustomerName())
|
|
|
.like(ObjectUtil.isNotEmpty(centerStockDescVo.getDot()), CenterStockDesc::getDot, centerStockDescVo.getDot())
|
|
|
.orderByAsc(CenterStockDesc::getCreateTime);
|
|
|
if (CommonEnum.ZERO.info.equals(centerStockDescVo.getWhether())) {
|