|
|
@@ -281,7 +281,7 @@ public class StockDescController extends BladeController {
|
|
|
.like(ObjectUtil.isNotEmpty(stockDesc.getDot()), PjStockDesc::getDot, stockDesc.getDot())
|
|
|
.orderByDesc(PjStockDesc::getBalanceQuantity);
|
|
|
if ("0".equals(stockDesc.getWhether())) {
|
|
|
- lambdaQueryWrapper.ne(PjStockDesc::getStoreInventory, 0);
|
|
|
+ lambdaQueryWrapper.ne(PjStockDesc::getBalanceQuantity, 0);
|
|
|
}
|
|
|
if (ObjectUtil.isNotEmpty(stockDesc.getCname())) {
|
|
|
List<PjGoodsDesc> pjGoodsDescs = goodsDescService.list(new LambdaQueryWrapper<PjGoodsDesc>()
|
|
|
@@ -427,7 +427,7 @@ public class StockDescController extends BladeController {
|
|
|
.like(ObjectUtil.isNotEmpty(stockDesc.getDot()), PjStockDesc::getDot, stockDesc.getDot())
|
|
|
.orderByAsc(PjStockDesc::getCreateTime);
|
|
|
if ("0".equals(stockDesc.getWhether())) {
|
|
|
- lambdaQueryWrapper.ne(PjStockDesc::getStoreInventory, 0);
|
|
|
+ lambdaQueryWrapper.ne(PjStockDesc::getBalanceQuantity, 0);
|
|
|
}
|
|
|
if (ObjectUtil.isNotEmpty(stockDesc.getCname())) {
|
|
|
List<PjGoodsDesc> pjGoodsDescs = goodsDescService.list(new LambdaQueryWrapper<PjGoodsDesc>()
|
|
|
@@ -498,7 +498,7 @@ public class StockDescController extends BladeController {
|
|
|
.like(ObjectUtil.isNotEmpty(stockDesc.getDot()), PjStockDesc::getDot, stockDesc.getDot())
|
|
|
.orderByAsc(PjStockDesc::getCreateTime);
|
|
|
if ("0".equals(stockDesc.getWhether())) {
|
|
|
- lambdaQueryWrapper.ne(PjStockDesc::getStoreInventory, 0);
|
|
|
+ lambdaQueryWrapper.ne(PjStockDesc::getBalanceQuantity, 0);
|
|
|
}
|
|
|
if (ObjectUtil.isNotEmpty(stockDesc.getCname())) {
|
|
|
List<PjGoodsDesc> pjGoodsDescs = goodsDescService.list(new LambdaQueryWrapper<PjGoodsDesc>()
|