|
|
|
@ -9,8 +9,12 @@ import com.logpm.report.vo.indexCount.IndexDeliveryDataVO;
|
|
|
|
|
import com.logpm.report.vo.indexCount.IndexSignforDataVO; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.common.cache.CacheNames; |
|
|
|
|
import org.springblade.common.constant.DistributionTypeConstant; |
|
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
|
import org.springblade.core.redis.cache.BladeRedis; |
|
|
|
|
import org.springblade.core.secure.BladeUser; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
@ -24,7 +28,9 @@ import java.util.*;
|
|
|
|
|
@AllArgsConstructor |
|
|
|
|
public class WarehouseIndexServiceImpl implements IWarehouseIndexService { |
|
|
|
|
|
|
|
|
|
private WarehouseIndexMapper warehouseIndexMapper; |
|
|
|
|
private final WarehouseIndexMapper warehouseIndexMapper; |
|
|
|
|
|
|
|
|
|
private final BladeRedis bladeRedis; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IndexOpenOrderDataVO openOrderData(IndexDTO indexDTO) { |
|
|
|
@ -111,78 +117,103 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IndexHandOrderDataVO handOrderData(IndexDTO indexDTO) { |
|
|
|
|
List<Long> warehouseIds = indexDTO.getWarehouseIds(); |
|
|
|
|
IndexHandOrderDataVO indexHandOrderDataVO = new IndexHandOrderDataVO(); |
|
|
|
|
if (warehouseIds.isEmpty()) { |
|
|
|
|
return indexHandOrderDataVO; |
|
|
|
|
//增加缓存
|
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
String key = CacheNames.tenantKey(user.getTenantId(), user.getUserId() + "", "allocationData"); |
|
|
|
|
IndexHandOrderDataVO indexHandOrderDataVO = bladeRedis.get(key); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(indexHandOrderDataVO)) { |
|
|
|
|
List<Long> warehouseIds = indexDTO.getWarehouseIds(); |
|
|
|
|
indexHandOrderDataVO = new IndexHandOrderDataVO(); |
|
|
|
|
if (warehouseIds.isEmpty()) { |
|
|
|
|
return indexHandOrderDataVO; |
|
|
|
|
} |
|
|
|
|
//当前在库的数据 订制品 零担
|
|
|
|
|
indexHandOrderDataVO = warehouseIndexMapper.handOrderData(indexDTO); |
|
|
|
|
//当前在库的库存品
|
|
|
|
|
Integer stockListNum = warehouseIndexMapper.findHandStockListNum(indexDTO); |
|
|
|
|
indexHandOrderDataVO.setTotalNum(indexHandOrderDataVO.getTotalNum() + stockListNum); |
|
|
|
|
|
|
|
|
|
//已打托数量
|
|
|
|
|
Integer trayNum = warehouseIndexMapper.findTrayNum(indexDTO); |
|
|
|
|
indexHandOrderDataVO.setTrayNum(trayNum); |
|
|
|
|
bladeRedis.setEx(key, indexHandOrderDataVO, 3600L); |
|
|
|
|
} |
|
|
|
|
//当前在库的数据 订制品 零担
|
|
|
|
|
indexHandOrderDataVO = warehouseIndexMapper.handOrderData(indexDTO); |
|
|
|
|
//当前在库的库存品
|
|
|
|
|
Integer stockListNum = warehouseIndexMapper.findHandStockListNum(indexDTO); |
|
|
|
|
indexHandOrderDataVO.setTotalNum(indexHandOrderDataVO.getTotalNum() + stockListNum); |
|
|
|
|
|
|
|
|
|
//已打托数量
|
|
|
|
|
Integer trayNum = warehouseIndexMapper.findTrayNum(indexDTO); |
|
|
|
|
indexHandOrderDataVO.setTrayNum(trayNum); |
|
|
|
|
|
|
|
|
|
return indexHandOrderDataVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IndexAllocationDataVO allocationData(IndexDTO indexDTO) { |
|
|
|
|
List<Long> warehouseIds = indexDTO.getWarehouseIds(); |
|
|
|
|
IndexAllocationDataVO indexAllocationDataVO = new IndexAllocationDataVO(); |
|
|
|
|
if (warehouseIds.isEmpty()) { |
|
|
|
|
return indexAllocationDataVO; |
|
|
|
|
} |
|
|
|
|
//当前在库的数据 订制品 零担
|
|
|
|
|
IndexHandOrderDataVO indexHandOrderDataVO = warehouseIndexMapper.handOrderData(indexDTO); |
|
|
|
|
//当前在库的库存品
|
|
|
|
|
Integer stockListNum = warehouseIndexMapper.findHandStockListNum(indexDTO); |
|
|
|
|
Integer totalNum = indexHandOrderDataVO.getTotalNum() + stockListNum; |
|
|
|
|
|
|
|
|
|
//查询库位总数
|
|
|
|
|
Integer totalAllocationNum = warehouseIndexMapper.findTotalAllocationNum(indexDTO); |
|
|
|
|
//已使用库位数
|
|
|
|
|
Integer useAllocationNum = warehouseIndexMapper.findUseAllocationNum(indexDTO); |
|
|
|
|
//已上架件数
|
|
|
|
|
Integer upshelfNum = warehouseIndexMapper.findUpshelfNum(indexDTO); |
|
|
|
|
|
|
|
|
|
indexAllocationDataVO.setTotalNum(totalAllocationNum); |
|
|
|
|
indexAllocationDataVO.setUseNum(useAllocationNum); |
|
|
|
|
indexAllocationDataVO.setNullNum(totalAllocationNum - useAllocationNum); |
|
|
|
|
indexAllocationDataVO.setUpshelfNum(upshelfNum); |
|
|
|
|
indexAllocationDataVO.setNoUpshelfNum(totalNum - upshelfNum); |
|
|
|
|
|
|
|
|
|
//增加缓存
|
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
String key = CacheNames.tenantKey(user.getTenantId(), user.getUserId() + "", "allocationData"); |
|
|
|
|
IndexAllocationDataVO indexAllocationDataVO = bladeRedis.get(key); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(indexAllocationDataVO)) { |
|
|
|
|
List<Long> warehouseIds = indexDTO.getWarehouseIds(); |
|
|
|
|
indexAllocationDataVO = new IndexAllocationDataVO(); |
|
|
|
|
if (warehouseIds.isEmpty()) { |
|
|
|
|
return indexAllocationDataVO; |
|
|
|
|
} |
|
|
|
|
//当前在库的数据 订制品 零担
|
|
|
|
|
IndexHandOrderDataVO indexHandOrderDataVO = warehouseIndexMapper.handOrderData(indexDTO); |
|
|
|
|
//当前在库的库存品
|
|
|
|
|
Integer stockListNum = warehouseIndexMapper.findHandStockListNum(indexDTO); |
|
|
|
|
Integer totalNum = indexHandOrderDataVO.getTotalNum() + stockListNum; |
|
|
|
|
|
|
|
|
|
//查询库位总数
|
|
|
|
|
Integer totalAllocationNum = warehouseIndexMapper.findTotalAllocationNum(indexDTO); |
|
|
|
|
//已使用库位数
|
|
|
|
|
Integer useAllocationNum = warehouseIndexMapper.findUseAllocationNum(indexDTO); |
|
|
|
|
//已上架件数
|
|
|
|
|
Integer upshelfNum = warehouseIndexMapper.findUpshelfNum(indexDTO); |
|
|
|
|
|
|
|
|
|
indexAllocationDataVO.setTotalNum(totalAllocationNum); |
|
|
|
|
indexAllocationDataVO.setUseNum(useAllocationNum); |
|
|
|
|
indexAllocationDataVO.setNullNum(totalAllocationNum - useAllocationNum); |
|
|
|
|
indexAllocationDataVO.setUpshelfNum(upshelfNum); |
|
|
|
|
indexAllocationDataVO.setNoUpshelfNum(totalNum - upshelfNum); |
|
|
|
|
bladeRedis.setEx(key, indexAllocationDataVO, 3600L); |
|
|
|
|
} |
|
|
|
|
return indexAllocationDataVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IndexTrunklineHandOrderDataVO trunklineHandOrderData(IndexDTO indexDTO) { |
|
|
|
|
List<Long> warehouseIds = indexDTO.getWarehouseIds(); |
|
|
|
|
IndexTrunklineHandOrderDataVO indexTrunklineHandOrderDataVO = new IndexTrunklineHandOrderDataVO(); |
|
|
|
|
if (warehouseIds.isEmpty()) { |
|
|
|
|
return indexTrunklineHandOrderDataVO; |
|
|
|
|
|
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
String key = CacheNames.tenantKey(user.getTenantId(), user.getUserId() + "", "trunklineHandOrderData"); |
|
|
|
|
IndexTrunklineHandOrderDataVO indexAllocationDataVO = bladeRedis.get(key); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(indexAllocationDataVO)) { |
|
|
|
|
List<Long> warehouseIds = indexDTO.getWarehouseIds(); |
|
|
|
|
IndexTrunklineHandOrderDataVO indexTrunklineHandOrderDataVO = new IndexTrunklineHandOrderDataVO(); |
|
|
|
|
if (warehouseIds.isEmpty()) { |
|
|
|
|
return indexTrunklineHandOrderDataVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//订制品
|
|
|
|
|
JSONObject packageJson = warehouseIndexMapper.findPackageTrunklineHandOrderData(indexDTO); |
|
|
|
|
Integer packageWaybillNum = packageJson.getInteger("waybillNum"); |
|
|
|
|
Integer packageHandleNum = packageJson.getInteger("handleNum"); |
|
|
|
|
BigDecimal packageHandleWeight = packageJson.getBigDecimal("handleWeight"); |
|
|
|
|
BigDecimal packageHandleVolume = packageJson.getBigDecimal("handleVolume"); |
|
|
|
|
//零担
|
|
|
|
|
JSONObject zeroJson = warehouseIndexMapper.findZeroTrunklineHandOrderData(indexDTO); |
|
|
|
|
Integer zeroWaybillNum = zeroJson.getInteger("waybillNum"); |
|
|
|
|
Integer zeroHandleNum = zeroJson.getInteger("handleNum"); |
|
|
|
|
BigDecimal zeroHandleWeight = zeroJson.getBigDecimal("handleWeight"); |
|
|
|
|
BigDecimal zeroHandleVolume = zeroJson.getBigDecimal("handleVolume"); |
|
|
|
|
|
|
|
|
|
indexTrunklineHandOrderDataVO.setWaybillNum(packageWaybillNum + zeroWaybillNum); |
|
|
|
|
indexTrunklineHandOrderDataVO.setHandleNum(packageHandleNum + zeroHandleNum); |
|
|
|
|
indexTrunklineHandOrderDataVO.setHandleWeight(packageHandleWeight.add(zeroHandleWeight)); |
|
|
|
|
indexTrunklineHandOrderDataVO.setHandleVolume(packageHandleVolume.add(zeroHandleVolume)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//订制品
|
|
|
|
|
JSONObject packageJson = warehouseIndexMapper.findPackageTrunklineHandOrderData(indexDTO); |
|
|
|
|
Integer packageWaybillNum = packageJson.getInteger("waybillNum"); |
|
|
|
|
Integer packageHandleNum = packageJson.getInteger("handleNum"); |
|
|
|
|
BigDecimal packageHandleWeight = packageJson.getBigDecimal("handleWeight"); |
|
|
|
|
BigDecimal packageHandleVolume = packageJson.getBigDecimal("handleVolume"); |
|
|
|
|
//零担
|
|
|
|
|
JSONObject zeroJson = warehouseIndexMapper.findZeroTrunklineHandOrderData(indexDTO); |
|
|
|
|
Integer zeroWaybillNum = zeroJson.getInteger("waybillNum"); |
|
|
|
|
Integer zeroHandleNum = zeroJson.getInteger("handleNum"); |
|
|
|
|
BigDecimal zeroHandleWeight = zeroJson.getBigDecimal("handleWeight"); |
|
|
|
|
BigDecimal zeroHandleVolume = zeroJson.getBigDecimal("handleVolume"); |
|
|
|
|
|
|
|
|
|
indexTrunklineHandOrderDataVO.setWaybillNum(packageWaybillNum + zeroWaybillNum); |
|
|
|
|
indexTrunklineHandOrderDataVO.setHandleNum(packageHandleNum + zeroHandleNum); |
|
|
|
|
indexTrunklineHandOrderDataVO.setHandleWeight(packageHandleWeight.add(zeroHandleWeight)); |
|
|
|
|
indexTrunklineHandOrderDataVO.setHandleVolume(packageHandleVolume.add(zeroHandleVolume)); |
|
|
|
|
|
|
|
|
|
return indexTrunklineHandOrderDataVO; |
|
|
|
|
} |
|
|
|
@ -326,10 +357,10 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
String dayUnSignforNum = warehouseIndexMapper.findUnSignforDataByDay(indexDTO); |
|
|
|
|
indexSignforDayDataVO.setUnSignNum(dayUnSignforNum); |
|
|
|
|
//计算签收率
|
|
|
|
|
if (!"0".equals(daySignforNum) && !"0".equals(dayUnSignforNum) ) { |
|
|
|
|
if (!"0".equals(daySignforNum) && !"0".equals(dayUnSignforNum)) { |
|
|
|
|
BigDecimal bd1 = new BigDecimal(daySignforNum); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(dayUnSignforNum); |
|
|
|
|
BigDecimal divide = bd1.divide(bd1.add(bd2),4,BigDecimal.ROUND_HALF_EVEN); |
|
|
|
|
BigDecimal divide = bd1.divide(bd1.add(bd2), 4, BigDecimal.ROUND_HALF_EVEN); |
|
|
|
|
String signScale = divide.toString(); |
|
|
|
|
indexSignforDayDataVO.setSignScale(signScale); |
|
|
|
|
} |
|
|
|
@ -342,7 +373,7 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
if (!"0".equals(dayClerkSignforNum) && !"0".equals(dayPlanByday)) { |
|
|
|
|
BigDecimal bd1 = new BigDecimal(dayClerkSignforNum); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(dayPlanByday); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2),4,BigDecimal.ROUND_CEILING); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2), 4, BigDecimal.ROUND_CEILING); |
|
|
|
|
String signScale = multiply.toString(); |
|
|
|
|
indexSignforDayDataVO.setClerkSignforScale(signScale); |
|
|
|
|
} |
|
|
|
@ -360,10 +391,10 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
String monthUnSignforNum = warehouseIndexMapper.findUnSignforDataByMonth(indexDTO); |
|
|
|
|
indexSignforMonthDataVO.setUnSignNum(monthUnSignforNum); |
|
|
|
|
//计算签收率
|
|
|
|
|
if (!"0".equals(monthSignforNum) &&!"0".equals(monthUnSignforNum)) { |
|
|
|
|
if (!"0".equals(monthSignforNum) && !"0".equals(monthUnSignforNum)) { |
|
|
|
|
BigDecimal bd1 = new BigDecimal(monthSignforNum); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(monthUnSignforNum); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2),4, BigDecimal.ROUND_CEILING); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2), 4, BigDecimal.ROUND_CEILING); |
|
|
|
|
String signScale = multiply.toString(); |
|
|
|
|
indexSignforMonthDataVO.setSignScale(signScale); |
|
|
|
|
} |
|
|
|
@ -371,20 +402,20 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
String monthClerkSignforNum = warehouseIndexMapper.findClerkSignforNumByMonth(indexDTO); |
|
|
|
|
indexSignforMonthDataVO.setClerkSignNum(monthClerkSignforNum); |
|
|
|
|
String monthPlan = warehouseIndexMapper.findPlanNumByMonth(indexDTO); |
|
|
|
|
if (!"0".equals(monthClerkSignforNum) &&!"0".equals(monthPlan)) { |
|
|
|
|
if (!"0".equals(monthClerkSignforNum) && !"0".equals(monthPlan)) { |
|
|
|
|
BigDecimal bd1 = new BigDecimal(monthClerkSignforNum); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(monthPlan); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2),4, BigDecimal.ROUND_CEILING); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2), 4, BigDecimal.ROUND_CEILING); |
|
|
|
|
String signScale = multiply.toString(); |
|
|
|
|
indexSignforMonthDataVO.setClerkSignforScale(signScale); |
|
|
|
|
} |
|
|
|
|
//查询当月文员复核
|
|
|
|
|
String monthClerkOverTimeSignfoNum = warehouseIndexMapper.findClerkOverTimeNumByMonth(indexDTO); |
|
|
|
|
indexSignforMonthDataVO.setClerkOverTimeSignfoNum(monthClerkOverTimeSignfoNum); |
|
|
|
|
if (!"0".equals(monthClerkOverTimeSignfoNum) && !"0".equals(monthPlan)) { |
|
|
|
|
if (!"0".equals(monthClerkOverTimeSignfoNum) && !"0".equals(monthPlan)) { |
|
|
|
|
BigDecimal bd1 = new BigDecimal(monthClerkOverTimeSignfoNum); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(monthPlan); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2),4, BigDecimal.ROUND_CEILING); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2), 4, BigDecimal.ROUND_CEILING); |
|
|
|
|
String signScale = multiply.toString(); |
|
|
|
|
indexSignforMonthDataVO.setClerkOverTimeScale(signScale); |
|
|
|
|
} |
|
|
|
@ -401,10 +432,10 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
String dayBillLadingUnSignfor = warehouseIndexMapper.findBillLadingUnSignforByDay(indexDTO); |
|
|
|
|
indexBillLadingSignforDayDataVO.setUnSignNum(dayBillLadingUnSignfor); |
|
|
|
|
//计算当天的签收率
|
|
|
|
|
if (!"0".equals(dayBillLadingSignfor) &&!"0".equals(dayBillLadingUnSignfor) ) { |
|
|
|
|
if (!"0".equals(dayBillLadingSignfor) && !"0".equals(dayBillLadingUnSignfor)) { |
|
|
|
|
BigDecimal bd1 = new BigDecimal(dayBillLadingSignfor); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(dayBillLadingUnSignfor); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2),4, BigDecimal.ROUND_CEILING); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2), 4, BigDecimal.ROUND_CEILING); |
|
|
|
|
String signScale = multiply.toString(); |
|
|
|
|
indexBillLadingSignforDayDataVO.setClerkSignforScale(signScale); |
|
|
|
|
} |
|
|
|
@ -415,11 +446,11 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
//查询当天文员复核数
|
|
|
|
|
String dayBillLadingSignforNum = warehouseIndexMapper.findBillLadingSignForNumByDay(indexDTO); |
|
|
|
|
indexBillLadingSignforDayDataVO.setClerkSignNum(dayBillLadingSignforNum); |
|
|
|
|
if (!"0".equals(dayBillLadingPlanNum) && !"0".equals(dayBillLadingSignforNum) ) { |
|
|
|
|
if (!"0".equals(dayBillLadingPlanNum) && !"0".equals(dayBillLadingSignforNum)) { |
|
|
|
|
//计算当月的超时签收率
|
|
|
|
|
BigDecimal bd1 = new BigDecimal(dayBillLadingSignforNum); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(dayBillLadingPlanNum); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2),1, BigDecimal.ROUND_CEILING); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2), 1, BigDecimal.ROUND_CEILING); |
|
|
|
|
String signScale = multiply.toString(); |
|
|
|
|
indexBillLadingSignforDayDataVO.setClerkOverTimeScale(signScale); |
|
|
|
|
} |
|
|
|
@ -439,10 +470,10 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
String monthBillLadingUnSignfor = warehouseIndexMapper.findBillLadingUnSignforByMonth(indexDTO); |
|
|
|
|
indexBillLadingSignforMonthDataVO.setUnSignNum(monthBillLadingUnSignfor); |
|
|
|
|
//计算当月的签收率
|
|
|
|
|
if ( !"0".equals(monthBillLadingSignfor) && !"0".equals(monthBillLadingUnSignfor) ) { |
|
|
|
|
if (!"0".equals(monthBillLadingSignfor) && !"0".equals(monthBillLadingUnSignfor)) { |
|
|
|
|
BigDecimal bd1 = new BigDecimal(monthBillLadingSignfor); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(monthBillLadingUnSignfor); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2),4, BigDecimal.ROUND_CEILING); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2), 4, BigDecimal.ROUND_CEILING); |
|
|
|
|
String signScale = multiply.toString(); |
|
|
|
|
indexBillLadingSignforMonthDataVO.setSignScale(signScale); |
|
|
|
|
} |
|
|
|
@ -455,11 +486,11 @@ public class WarehouseIndexServiceImpl implements IWarehouseIndexService {
|
|
|
|
|
indexBillLadingSignforMonthDataVO.setClerkOverTimeSignfoNum(monthBillLadingOverTimeNum); |
|
|
|
|
//查询当月计划总数
|
|
|
|
|
String monthBillLadingPlanNum = warehouseIndexMapper.findBillLadingPlanNumByMonth(indexDTO); |
|
|
|
|
if (!"0".equals(monthBillLadingOverTimeNum) && !"0".equals(monthBillLadingPlanNum) ) { |
|
|
|
|
if (!"0".equals(monthBillLadingOverTimeNum) && !"0".equals(monthBillLadingPlanNum)) { |
|
|
|
|
//计算当月的超时签收率
|
|
|
|
|
BigDecimal bd1 = new BigDecimal(monthBillLadingOverTimeNum); |
|
|
|
|
BigDecimal bd2 = new BigDecimal(monthBillLadingPlanNum); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2),4, BigDecimal.ROUND_CEILING); |
|
|
|
|
BigDecimal multiply = bd1.divide(bd1.add(bd2), 4, BigDecimal.ROUND_CEILING); |
|
|
|
|
String signScale = multiply.toString(); |
|
|
|
|
indexBillLadingSignforMonthDataVO.setClerkOverTimeScale(signScale); |
|
|
|
|
} |
|
|
|
|