|
|
|
@ -1,28 +1,46 @@
|
|
|
|
|
package com.logpm.trunkline.service.impl; |
|
|
|
|
|
|
|
|
|
import com.logpm.trunkline.entity.TrunklineCarsLoadEntity; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineCarsLoadLineEntity; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineCarsLoadLogEntity; |
|
|
|
|
import com.logpm.trunkline.service.ICarsLoadAsyncService; |
|
|
|
|
import com.logpm.trunkline.service.ITrunklineCarsLoadLogService; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionStockArticleClient; |
|
|
|
|
import com.logpm.trunkline.entity.*; |
|
|
|
|
import com.logpm.trunkline.service.*; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseWaybillEntity; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseWaybillClient; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.common.constant.DictBizConstant; |
|
|
|
|
import org.springblade.common.constant.TenantNum; |
|
|
|
|
import org.springblade.common.constant.carsload.CarsLoadLogTypeConstant; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.system.cache.DictBizCache; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.scheduling.annotation.Async; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.math.RoundingMode; |
|
|
|
|
import java.util.Date; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Objects; |
|
|
|
|
|
|
|
|
|
@Slf4j |
|
|
|
|
@AllArgsConstructor |
|
|
|
|
@Service |
|
|
|
|
public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
private final ITrunklineCarsLoadLogService trunklineCarsLoadLogService; |
|
|
|
|
@Autowired |
|
|
|
|
private ITrunklineCarsLoadLogService trunklineCarsLoadLogService; |
|
|
|
|
@Autowired |
|
|
|
|
private ITrunklineCarsLoadScanService trunklineCarsLoadScanService; |
|
|
|
|
@Autowired |
|
|
|
|
private IWarehouseWaybillClient warehouseWaybillClient; |
|
|
|
|
@Autowired |
|
|
|
|
private ITrunklineCostShareRecordService trunklineCostShareRecordService; |
|
|
|
|
@Autowired |
|
|
|
|
private IDistributionStockArticleClient distributionStockArticleClient; |
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataWarehouseClient warehouseClient; |
|
|
|
|
|
|
|
|
|
@Async |
|
|
|
|
@Override |
|
|
|
@ -134,4 +152,160 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService {
|
|
|
|
|
trunklineCarsLoadLogService.save(carsLoadLogEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Async |
|
|
|
|
@Override |
|
|
|
|
public void saveCostShareRecord(Long loadId,TrunklineCarsLoadEntity carsLoadEntity) { |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> scanEntities = trunklineCarsLoadScanService.findListByLoadIdOrderByCreateTimeAsc(loadId); |
|
|
|
|
|
|
|
|
|
for (TrunklineCarsLoadScanEntity scanEntity : scanEntities) { |
|
|
|
|
Integer type = scanEntity.getType(); |
|
|
|
|
String waybillNo = scanEntity.getWaybillNo(); |
|
|
|
|
String orderCode = scanEntity.getOrderCode(); |
|
|
|
|
String scanCode = scanEntity.getScanCode(); |
|
|
|
|
Integer num = scanEntity.getUnloadNum(); |
|
|
|
|
Long fromWarehouseId = scanEntity.getFromWarehouseId(); |
|
|
|
|
Long warehouseId = scanEntity.getWarehouseId(); |
|
|
|
|
String warehouseName = scanEntity.getWarehouseName(); |
|
|
|
|
Long finalNodeId = scanEntity.getFinalNodeId(); |
|
|
|
|
Long unloadNodeId = scanEntity.getUnloadNodeId(); |
|
|
|
|
String unloadNodeName = scanEntity.getUnloadNodeName(); |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, fromWarehouseId); |
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(Objects.isNull(waybillEntity)){ |
|
|
|
|
log.warn("##############saveCostShareRecord: 运单信息不存在 waybillNo={}",waybillNo); |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
Long waybillId = waybillEntity.getId(); |
|
|
|
|
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId(); |
|
|
|
|
String departureWarehouseName = waybillEntity.getDepartureWarehouseName(); |
|
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
|
String destinationWarehouseName = waybillEntity.getDestinationWarehouseName(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TrunklineCostShareRecordEntity trunklineCostShareRecordEntity = null; |
|
|
|
|
if(type.equals(1)){ |
|
|
|
|
trunklineCostShareRecordEntity = trunklineCostShareRecordService.findPackageDataByLoadIdAndCode(scanCode,loadId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(Objects.isNull(trunklineCostShareRecordEntity)){ |
|
|
|
|
trunklineCostShareRecordEntity = new TrunklineCostShareRecordEntity(); |
|
|
|
|
trunklineCostShareRecordEntity.setLoadId(loadId); |
|
|
|
|
trunklineCostShareRecordEntity.setCarsNo(carsLoadEntity.getCarsNo()); |
|
|
|
|
trunklineCostShareRecordEntity.setWaybillId(waybillId); |
|
|
|
|
trunklineCostShareRecordEntity.setWaybillNo(waybillNo); |
|
|
|
|
if(!Objects.isNull(stockArticleEntity)){ |
|
|
|
|
trunklineCostShareRecordEntity.setOrderId(stockArticleEntity.getId()); |
|
|
|
|
} |
|
|
|
|
trunklineCostShareRecordEntity.setOrderCode(orderCode); |
|
|
|
|
trunklineCostShareRecordEntity.setProductType(type); |
|
|
|
|
trunklineCostShareRecordEntity.setProductCode(scanCode); |
|
|
|
|
trunklineCostShareRecordEntity.setNum(num); |
|
|
|
|
trunklineCostShareRecordEntity.setLoadingWarehouseId(warehouseId); |
|
|
|
|
trunklineCostShareRecordEntity.setLoadingWarehouseName(warehouseName); |
|
|
|
|
trunklineCostShareRecordEntity.setPlanUnloadWarehouseId(finalNodeId); |
|
|
|
|
BasicdataWarehouseEntity finalWarehouse = warehouseClient.getEntityWarehouseId(finalNodeId); |
|
|
|
|
if(!Objects.isNull(finalWarehouse)){ |
|
|
|
|
trunklineCostShareRecordEntity.setPlanUnloadWarehouseName(finalWarehouse.getName()); |
|
|
|
|
} |
|
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseId(unloadNodeId); |
|
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseName(unloadNodeName); |
|
|
|
|
trunklineCostShareRecordEntity.setWaybillStartWarehouseId(departureWarehouseId); |
|
|
|
|
trunklineCostShareRecordEntity.setWaybillStartWarehouseName(departureWarehouseName); |
|
|
|
|
trunklineCostShareRecordEntity.setWaybillEndWarehouseId(destinationWarehouseId); |
|
|
|
|
trunklineCostShareRecordEntity.setWaybillEndWarehouseName(destinationWarehouseName); |
|
|
|
|
trunklineCostShareRecordService.save(trunklineCostShareRecordEntity); |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseId(scanEntity.getUnloadNodeId()); |
|
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseName(scanEntity.getUnloadNodeName()); |
|
|
|
|
trunklineCostShareRecordService.updateById(trunklineCostShareRecordEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Async |
|
|
|
|
@Override |
|
|
|
|
public void costShareByLoadId(Long loadId,TrunklineCarsLoadEntity carsLoadEntity) { |
|
|
|
|
|
|
|
|
|
String proportion1 = DictBizCache.getValue(DictBizConstant.TRUNKLINE_COST_PROPORTION, "1"); |
|
|
|
|
String proportion2 = DictBizCache.getValue(DictBizConstant.TRUNKLINE_COST_PROPORTION, "2"); |
|
|
|
|
if(new BigDecimal(proportion1).add(new BigDecimal(proportion2)).compareTo(BigDecimal.ONE) != 0){ |
|
|
|
|
log.warn("###############costShareZhang: 配置比例有误"); |
|
|
|
|
throw new CustomerException(405,"配置比例有误"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal countTransportCost = carsLoadEntity.getCountTransportCost(); |
|
|
|
|
Integer totalUnloadNum = trunklineCostShareRecordService.findTotalUnloadNumByLoad(loadId); |
|
|
|
|
|
|
|
|
|
//计算单件成本
|
|
|
|
|
BigDecimal costPiece = countTransportCost.divide(new BigDecimal(totalUnloadNum),2, RoundingMode.HALF_UP); |
|
|
|
|
|
|
|
|
|
//先查询出该车次的所有记录
|
|
|
|
|
List<TrunklineCostShareRecordEntity> list = trunklineCostShareRecordService.findListByLoadId(loadId); |
|
|
|
|
|
|
|
|
|
BigDecimal totalIncome = BigDecimal.ZERO; |
|
|
|
|
for (TrunklineCostShareRecordEntity trunklineCostShareRecordEntity : list) { |
|
|
|
|
Integer num = trunklineCostShareRecordEntity.getNum(); |
|
|
|
|
trunklineCostShareRecordEntity.setCostPiece(costPiece.multiply(new BigDecimal(num))); |
|
|
|
|
|
|
|
|
|
Long waybillStartWarehouseId = trunklineCostShareRecordEntity.getWaybillStartWarehouseId(); |
|
|
|
|
Long waybillEndWarehouseId = trunklineCostShareRecordEntity.getWaybillEndWarehouseId(); |
|
|
|
|
Long loadingWarehouseId = trunklineCostShareRecordEntity.getLoadingWarehouseId(); |
|
|
|
|
Long realUnloadWarehouseId = trunklineCostShareRecordEntity.getRealUnloadWarehouseId(); |
|
|
|
|
|
|
|
|
|
//收入
|
|
|
|
|
String waybillNo = trunklineCostShareRecordEntity.getWaybillNo(); |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
|
BigDecimal totalFreight = waybillEntity.getTotalFreight();//运单运费
|
|
|
|
|
if(waybillStartWarehouseId.equals(loadingWarehouseId)){ |
|
|
|
|
//装车仓库 就是 运单起始仓
|
|
|
|
|
if(realUnloadWarehouseId.equals(waybillEndWarehouseId)){ |
|
|
|
|
//卸车仓库 就是 运单目的仓
|
|
|
|
|
totalFreight = totalFreight.multiply(BigDecimal.ONE);//运费收入就是100%
|
|
|
|
|
}else{ |
|
|
|
|
//卸车仓库 不是 运单目的仓
|
|
|
|
|
totalFreight = totalFreight.multiply(new BigDecimal(proportion1));//运费收入就是80%
|
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
totalFreight = totalFreight.multiply(new BigDecimal(proportion2));//运费收入就是20%
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount();//总件数
|
|
|
|
|
BigDecimal xincome = totalFreight.divide(new BigDecimal(totalCount),2, RoundingMode.HALF_DOWN); |
|
|
|
|
BigDecimal income = xincome.multiply(new BigDecimal(num)); |
|
|
|
|
trunklineCostShareRecordEntity.setIncome(income); |
|
|
|
|
totalIncome = totalIncome.add(income); |
|
|
|
|
|
|
|
|
|
trunklineCostShareRecordEntity.setProportion(proportion1+":"+proportion2); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (TrunklineCostShareRecordEntity trunklineCostShareRecordEntity : list) { |
|
|
|
|
BigDecimal income = trunklineCostShareRecordEntity.getIncome(); |
|
|
|
|
trunklineCostShareRecordEntity.setCostZhang(countTransportCost.multiply(income.divide(totalIncome))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
trunklineCostShareRecordService.updateBatchById(list); |
|
|
|
|
|
|
|
|
|
//更新需要更新成本的运单
|
|
|
|
|
List<String> waybillNos = trunklineCostShareRecordService.findUpdateWaybill(loadId); |
|
|
|
|
for (String waybillNo : waybillNos) { |
|
|
|
|
WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
//统计成本值
|
|
|
|
|
TrunklineCostShareRecordEntity costShareRecordEntity = trunklineCostShareRecordService.sumTotalCost(waybillNo); |
|
|
|
|
warehouseWaybillEntity.setCostPiece(costShareRecordEntity.getCostPiece()); |
|
|
|
|
warehouseWaybillEntity.setCostZhang(costShareRecordEntity.getCostZhang()); |
|
|
|
|
warehouseWaybillEntity.setCostNum(costShareRecordEntity.getNum()); |
|
|
|
|
warehouseWaybillClient.updateEntity(warehouseWaybillEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|