给商品库存接口增加仓位货架的查询参数
This commit is contained in:
parent
261c5a069d
commit
f56b3774d6
@ -558,6 +558,7 @@ public class MaterialController {
|
||||
@RequestParam("pageSize") Integer pageSize,
|
||||
@RequestParam(value = "depotIds", required = false) String depotIds,
|
||||
@RequestParam(value = "categoryId", required = false) Long categoryId,
|
||||
@RequestParam(value = "position", required = false) String position,
|
||||
@RequestParam("materialParam") String materialParam,
|
||||
@RequestParam("zeroStock") Integer zeroStock,
|
||||
@RequestParam("mpList") String mpList,
|
||||
@ -582,10 +583,10 @@ public class MaterialController {
|
||||
depotList.add(object.getLong("id"));
|
||||
}
|
||||
}
|
||||
List<MaterialVo4Unit> dataList = materialService.getListWithStock(depotList, idList, StringUtil.toNull(materialParam), zeroStock,
|
||||
StringUtil.safeSqlParse(column), StringUtil.safeSqlParse(order), (currentPage-1)*pageSize, pageSize);
|
||||
int total = materialService.getListWithStockCount(depotList, idList, StringUtil.toNull(materialParam), zeroStock);
|
||||
MaterialVo4Unit materialVo4Unit= materialService.getTotalStockAndPrice(depotList, idList, StringUtil.toNull(materialParam));
|
||||
List<MaterialVo4Unit> dataList = materialService.getListWithStock(depotList, idList, StringUtil.toNull(position), StringUtil.toNull(materialParam),
|
||||
zeroStock, StringUtil.safeSqlParse(column), StringUtil.safeSqlParse(order), (currentPage-1)*pageSize, pageSize);
|
||||
int total = materialService.getListWithStockCount(depotList, idList, StringUtil.toNull(position), StringUtil.toNull(materialParam), zeroStock);
|
||||
MaterialVo4Unit materialVo4Unit= materialService.getTotalStockAndPrice(depotList, idList, StringUtil.toNull(position), StringUtil.toNull(materialParam));
|
||||
map.put("total", total);
|
||||
map.put("currentStock", materialVo4Unit.getCurrentStock()!=null?materialVo4Unit.getCurrentStock():BigDecimal.ZERO);
|
||||
map.put("currentStockPrice", materialVo4Unit.getCurrentStockPrice()!=null?materialVo4Unit.getCurrentStockPrice():BigDecimal.ZERO);
|
||||
|
||||
@ -125,6 +125,7 @@ public interface MaterialMapperEx {
|
||||
List<MaterialVo4Unit> getListWithStock(
|
||||
@Param("depotList") List<Long> depotList,
|
||||
@Param("idList") List<Long> idList,
|
||||
@Param("position") String position,
|
||||
@Param("materialParam") String materialParam,
|
||||
@Param("zeroStock") Integer zeroStock,
|
||||
@Param("column") String column,
|
||||
@ -135,12 +136,14 @@ public interface MaterialMapperEx {
|
||||
int getListWithStockCount(
|
||||
@Param("depotList") List<Long> depotList,
|
||||
@Param("idList") List<Long> idList,
|
||||
@Param("position") String position,
|
||||
@Param("materialParam") String materialParam,
|
||||
@Param("zeroStock") Integer zeroStock);
|
||||
|
||||
MaterialVo4Unit getTotalStockAndPrice(
|
||||
@Param("depotList") List<Long> depotList,
|
||||
@Param("idList") List<Long> idList,
|
||||
@Param("position") String position,
|
||||
@Param("materialParam") String materialParam);
|
||||
|
||||
int checkIsExist(
|
||||
|
||||
@ -1260,14 +1260,14 @@ public class MaterialService {
|
||||
return materialMapperEx.getInitialStockWithMaterial(depotList);
|
||||
}
|
||||
|
||||
public List<MaterialVo4Unit> getListWithStock(List<Long> depotList, List<Long> idList, String materialParam, Integer zeroStock,
|
||||
public List<MaterialVo4Unit> getListWithStock(List<Long> depotList, List<Long> idList, String position, String materialParam, Integer zeroStock,
|
||||
String column, String order, Integer offset, Integer rows) throws Exception {
|
||||
Map<Long, BigDecimal> initialStockMap = new HashMap<>();
|
||||
List<MaterialInitialStockWithMaterial> initialStockList = getInitialStockWithMaterial(depotList);
|
||||
for (MaterialInitialStockWithMaterial mism: initialStockList) {
|
||||
initialStockMap.put(mism.getMaterialId(), mism.getNumber());
|
||||
}
|
||||
List<MaterialVo4Unit> dataList = materialMapperEx.getListWithStock(depotList, idList, materialParam, zeroStock, column, order, offset, rows);
|
||||
List<MaterialVo4Unit> dataList = materialMapperEx.getListWithStock(depotList, idList, position, materialParam, zeroStock, column, order, offset, rows);
|
||||
for(MaterialVo4Unit item: dataList) {
|
||||
item.setUnitName(null!=item.getUnitId()?item.getUnitName() + "[多单位]":item.getUnitName());
|
||||
item.setInitialStock(null!=initialStockMap.get(item.getId())?initialStockMap.get(item.getId()):BigDecimal.ZERO);
|
||||
@ -1276,12 +1276,12 @@ public class MaterialService {
|
||||
return dataList;
|
||||
}
|
||||
|
||||
public int getListWithStockCount(List<Long> depotList, List<Long> idList, String materialParam, Integer zeroStock) {
|
||||
return materialMapperEx.getListWithStockCount(depotList, idList, materialParam, zeroStock);
|
||||
public int getListWithStockCount(List<Long> depotList, List<Long> idList, String position, String materialParam, Integer zeroStock) {
|
||||
return materialMapperEx.getListWithStockCount(depotList, idList, position, materialParam, zeroStock);
|
||||
}
|
||||
|
||||
public MaterialVo4Unit getTotalStockAndPrice(List<Long> depotList, List<Long> idList, String materialParam) {
|
||||
return materialMapperEx.getTotalStockAndPrice(depotList, idList, materialParam);
|
||||
public MaterialVo4Unit getTotalStockAndPrice(List<Long> depotList, List<Long> idList, String position, String materialParam) {
|
||||
return materialMapperEx.getTotalStockAndPrice(depotList, idList, position, materialParam);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -621,6 +621,10 @@
|
||||
#{item}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="position != null and position !=''">
|
||||
<bind name="bindPosition" value="'%'+position+'%'"/>
|
||||
and m.position like #{bindPosition}
|
||||
</if>
|
||||
<if test="materialParam != null">
|
||||
<bind name="bindParam" value="'%'+materialParam+'%'"/>
|
||||
and (me.bar_code like #{bindParam} or m.name like #{bindParam} or m.standard like #{bindParam} or m.model like #{bindParam} or m.color like #{bindParam})
|
||||
@ -662,6 +666,10 @@
|
||||
#{item}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="position != null and position !=''">
|
||||
<bind name="bindPosition" value="'%'+position+'%'"/>
|
||||
and m.position like #{bindPosition}
|
||||
</if>
|
||||
<if test="materialParam != null">
|
||||
<bind name="bindParam" value="'%'+materialParam+'%'"/>
|
||||
and (me.bar_code like #{bindParam} or m.name like #{bindParam} or m.standard like #{bindParam} or m.model like #{bindParam} or m.color like #{bindParam})
|
||||
@ -698,6 +706,10 @@
|
||||
#{item}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="position != null and position !=''">
|
||||
<bind name="bindPosition" value="'%'+position+'%'"/>
|
||||
and m.position like #{bindPosition}
|
||||
</if>
|
||||
<if test="materialParam != null">
|
||||
<bind name="bindParam" value="'%'+materialParam+'%'"/>
|
||||
and (me.bar_code like #{bindParam} or m.name like #{bindParam} or m.standard like #{bindParam} or m.model like #{bindParam})
|
||||
|
||||
Loading…
Reference in New Issue
Block a user