|
|
|
@ -448,6 +448,8 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
Integer upshelfNum = Objects.isNull(warehouseNumberVO4) ? 0 : warehouseNumberVO4.getCountNumber(); |
|
|
|
|
|
|
|
|
|
indexAllocationDataVO.setTotalNum(totalAllocationNum); |
|
|
|
|
indexAllocationDataVO.setWarehouseId(handOrderDataByWarehouseIdVO.getWarehouseId()); |
|
|
|
|
indexAllocationDataVO.setWarehouseName(handOrderDataByWarehouseIdVO.getWarehouseName()); |
|
|
|
|
indexAllocationDataVO.setUseNum(useAllocationNum); |
|
|
|
|
indexAllocationDataVO.setNullNum(totalAllocationNum - useAllocationNum); |
|
|
|
|
indexAllocationDataVO.setUpshelfNum(upshelfNum); |
|
|
|
@ -873,7 +875,7 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
indexSignforDayDataVO.setClerkSignNum(dayClerkSignforNum); |
|
|
|
|
//查询计划数量
|
|
|
|
|
Integer dayPlanByday = warehouseIndexMapper.findPlanNumByDay(warehouseId); |
|
|
|
|
indexSignforDayDataVO.setPlanNum(dayClerkSignforNum); |
|
|
|
|
indexSignforDayDataVO.setPlanNum(dayPlanByday); |
|
|
|
|
//计算文员签收率
|
|
|
|
|
indexSignforDayDataVO.setClerkSignforScale("0.0000"); |
|
|
|
|
if (dayClerkSignforNum > 0 && dayPlanByday > 0) { |
|
|
|
|