给库存报表增加排序

This commit is contained in:
季圣华
2021-10-17 22:18:14 +08:00
parent 28c9b3ed52
commit 12c6c22ea0
4 changed files with 16 additions and 4 deletions

View File

@@ -818,8 +818,9 @@ public class MaterialService {
return materialMapperEx.getMaterialByBarCode(barCodeArray);
}
public List<MaterialVo4Unit> getListWithStock(Long depotId, List<Long> idList, String materialParam, Integer offset, Integer rows) {
return materialMapperEx.getListWithStock(depotId, idList, materialParam, offset, rows);
public List<MaterialVo4Unit> getListWithStock(Long depotId, List<Long> idList, String materialParam,
String column, String order, Integer offset, Integer rows) {
return materialMapperEx.getListWithStock(depotId, idList, materialParam, column, order, offset, rows);
}
public int getListWithStockCount(Long depotId, List<Long> idList, String materialParam) {