23 changed files with 898 additions and 63 deletions
@ -0,0 +1,114 @@ |
|||||||
|
package org.springblade.common.model.workNode; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
/** |
||||||
|
* 到站车次的节点信息 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class StationArrivedByLineStationVO { |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 节点排序 |
||||||
|
*/ |
||||||
|
private Integer sort; |
||||||
|
/** |
||||||
|
* 节点状态 0未到达 1到车 2发车 |
||||||
|
*/ |
||||||
|
private String nodeStatus; |
||||||
|
/** |
||||||
|
* 直发货物签收状态 0无直发货物 1未签收 2部分签收 3已签收 |
||||||
|
*/ |
||||||
|
private String signStatus; |
||||||
|
/** |
||||||
|
* 节点类型 1仓库 2商场 |
||||||
|
*/ |
||||||
|
private String nodeType; |
||||||
|
/** |
||||||
|
* clientId |
||||||
|
*/ |
||||||
|
private Long nodeId; |
||||||
|
/** |
||||||
|
* 节点名称 |
||||||
|
*/ |
||||||
|
private String nodeName; |
||||||
|
/** |
||||||
|
* 联系人 |
||||||
|
*/ |
||||||
|
private String linkMan; |
||||||
|
/** |
||||||
|
* 联系人电话 |
||||||
|
*/ |
||||||
|
private String linkPhone; |
||||||
|
/** |
||||||
|
* 联系人地址 |
||||||
|
*/ |
||||||
|
private String linkAddress; |
||||||
|
|
||||||
|
/** 卸车状态 卸车状态 0未卸车 1网点卸车确认 2终点卸车确认 */ |
||||||
|
private String unloadStatus ; |
||||||
|
|
||||||
|
/** |
||||||
|
* 异常件数 |
||||||
|
*/ |
||||||
|
private Integer abnormalNum; |
||||||
|
/** |
||||||
|
* 卸车件数 |
||||||
|
*/ |
||||||
|
private Integer unloadNumber; |
||||||
|
/** |
||||||
|
* 现付运输费 |
||||||
|
*/ |
||||||
|
private BigDecimal nowTransportCost; |
||||||
|
/** |
||||||
|
* 现付油卡费 |
||||||
|
*/ |
||||||
|
private BigDecimal oilCost; |
||||||
|
/** |
||||||
|
* 回付运输费 |
||||||
|
*/ |
||||||
|
private BigDecimal backTransportCost; |
||||||
|
/** |
||||||
|
* 到付运输费 |
||||||
|
*/ |
||||||
|
private BigDecimal reachTransportCost; |
||||||
|
/** |
||||||
|
* 整车信息费 |
||||||
|
*/ |
||||||
|
private BigDecimal wholeCarInfoCost; |
||||||
|
/** |
||||||
|
* 整车保险费 |
||||||
|
*/ |
||||||
|
private BigDecimal wholeCarInsuranceCost; |
||||||
|
/** |
||||||
|
* 整车落地费 |
||||||
|
*/ |
||||||
|
private BigDecimal wholeCarGroundCost; |
||||||
|
/** |
||||||
|
* 发站装车费 |
||||||
|
*/ |
||||||
|
private BigDecimal hairWholeCost; |
||||||
|
/** |
||||||
|
* 发站其他费 |
||||||
|
*/ |
||||||
|
private BigDecimal hairWholeOtherCost; |
||||||
|
/** |
||||||
|
* 到站卸车费 |
||||||
|
*/ |
||||||
|
private BigDecimal unloadCost; |
||||||
|
/** |
||||||
|
* 到站其他费 |
||||||
|
*/ |
||||||
|
private BigDecimal unloadOtherCost; |
||||||
|
/** |
||||||
|
* 油费 |
||||||
|
*/ |
||||||
|
private BigDecimal fuel; |
||||||
|
/** |
||||||
|
* 路桥费 |
||||||
|
*/ |
||||||
|
private BigDecimal tollFee; |
||||||
|
} |
@ -0,0 +1,91 @@ |
|||||||
|
package org.springblade.common.model.workNode; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.Date; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 卸车确认作业节点数据推送 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class StationArrivedEnterVO implements Serializable { |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 外请人 |
||||||
|
*/ |
||||||
|
private String outDriverPerson; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机 |
||||||
|
*/ |
||||||
|
private String driverName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 外请站点 |
||||||
|
*/ |
||||||
|
private String outsideStation; |
||||||
|
|
||||||
|
/** |
||||||
|
* 发车批次号 |
||||||
|
*/ |
||||||
|
private String carsNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车次创建时间 |
||||||
|
*/ |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否为直发商家:1=是,2=否【用于配载】 |
||||||
|
*/ |
||||||
|
private String isCustomer; |
||||||
|
/** |
||||||
|
* 承运商名称 |
||||||
|
*/ |
||||||
|
private String carrierName; |
||||||
|
/** |
||||||
|
* 车牌号 |
||||||
|
*/ |
||||||
|
private String carNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 开始仓库名称 |
||||||
|
*/ |
||||||
|
private String startWarehouseName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车辆结算类型 |
||||||
|
*/ |
||||||
|
private String carSettlementType; |
||||||
|
|
||||||
|
/** |
||||||
|
* 货物品牌 多个 ,拼接 |
||||||
|
*/ |
||||||
|
private String brandNames; |
||||||
|
/** |
||||||
|
* 实际装车件数 |
||||||
|
*/ |
||||||
|
private Integer realLoadingNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 合计运输费用 |
||||||
|
*/ |
||||||
|
private BigDecimal countTransportCost; |
||||||
|
|
||||||
|
/** |
||||||
|
* 线路集合 |
||||||
|
*/ |
||||||
|
private List<StationArrivedByLineStationVO> stationArrivedByLineStationVOS; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,219 @@ |
|||||||
|
package com.logpm.statistics.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import org.springblade.core.tenant.mp.TenantEntity; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
@Data |
||||||
|
@TableName("logpm_trunkline_car_cost") |
||||||
|
@ApiModel(value = "StatisticsDistributionPackage对象", description = "干线车次成本") |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class TrunklineCarCostEntity extends TenantEntity { |
||||||
|
|
||||||
|
/** |
||||||
|
* 申请时间 |
||||||
|
*/ |
||||||
|
private Date effectTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车牌号 |
||||||
|
*/ |
||||||
|
private String plateNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 司机名称 |
||||||
|
*/ |
||||||
|
private String driverName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 实际收款人 |
||||||
|
*/ |
||||||
|
private String actualReceivablePerson; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车次号码 |
||||||
|
*/ |
||||||
|
private String carsNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车次类型 外请 自有 目前该字段不使用 |
||||||
|
* |
||||||
|
*/ |
||||||
|
private Integer carsNoType; |
||||||
|
|
||||||
|
/** |
||||||
|
* 调车员 |
||||||
|
*/ |
||||||
|
private String driverStaff; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车辆类型(结算车辆类型) |
||||||
|
*/ |
||||||
|
private String vehicleType; |
||||||
|
|
||||||
|
// /**
|
||||||
|
// * 客户名称 和货物品牌 相同
|
||||||
|
// */
|
||||||
|
// private String customerName;
|
||||||
|
|
||||||
|
/** |
||||||
|
* 货物品牌,多个拼接在一起 |
||||||
|
*/ |
||||||
|
private String brands; |
||||||
|
|
||||||
|
/** |
||||||
|
* 起始站点 |
||||||
|
*/ |
||||||
|
private String startStation; |
||||||
|
|
||||||
|
/** |
||||||
|
* 外请网点 |
||||||
|
*/ |
||||||
|
private String outStation; |
||||||
|
|
||||||
|
/** |
||||||
|
* 货数 |
||||||
|
*/ |
||||||
|
private Integer goodsNum; |
||||||
|
|
||||||
|
/** |
||||||
|
* 原价(元) |
||||||
|
*/ |
||||||
|
private BigDecimal originalPrice; |
||||||
|
|
||||||
|
/** |
||||||
|
* 实际驾驶员费用(元) |
||||||
|
*/ |
||||||
|
private BigDecimal actualDriverFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 燃油卡费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal fuelCardFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 路桥费f(元) |
||||||
|
*/ |
||||||
|
private BigDecimal bridgeFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 现付运输费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal nowFreightFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 回收货运费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal returnFreightFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 到付运输费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal payFreightFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 整车信息费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal trailerInsuranceFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 整车保险费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal trailerInsuranceCost; |
||||||
|
|
||||||
|
/** |
||||||
|
* 整车落地费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal landingFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 发站装车费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal stationLoadingFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 发站其它费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal otherStationFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 到站卸车费(元) |
||||||
|
*/ |
||||||
|
private BigDecimal stationUnloadingFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 其他费用(元) |
||||||
|
*/ |
||||||
|
private BigDecimal otherFee; |
||||||
|
|
||||||
|
/** |
||||||
|
*额外费用(元) |
||||||
|
*/ |
||||||
|
private BigDecimal additionalFee; |
||||||
|
|
||||||
|
/** |
||||||
|
* 平台结算fee(元) |
||||||
|
*/ |
||||||
|
private BigDecimal platformSettlementFee; |
||||||
|
|
||||||
|
/** |
||||||
|
*钉钉编号 |
||||||
|
*/ |
||||||
|
private String dingDingNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 平台订单号 |
||||||
|
*/ |
||||||
|
private String platformOrderNumber; |
||||||
|
|
||||||
|
/** |
||||||
|
* 付款时间 |
||||||
|
*/ |
||||||
|
private Date paymentTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 付款方名称 |
||||||
|
*/ |
||||||
|
private String paymentName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 付款方账号 |
||||||
|
*/ |
||||||
|
private String paymentAccount; |
||||||
|
|
||||||
|
/** |
||||||
|
* 收款方如是平台叫车该字段未平台名称 |
||||||
|
*/ |
||||||
|
private String receiveName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 收款账号 |
||||||
|
*/ |
||||||
|
private String receiveAccount; |
||||||
|
|
||||||
|
/** |
||||||
|
* 线路名称 |
||||||
|
*/ |
||||||
|
private String routeName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 付款记录 |
||||||
|
*/ |
||||||
|
private String carPayId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否确认1确认0未确认 |
||||||
|
*/ |
||||||
|
private Integer isEnter; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否支付(0:未支付,1:已支付) |
||||||
|
*/ |
||||||
|
private Integer isPayment; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
package com.logpm.statistics.vo; |
||||||
|
|
||||||
|
import com.logpm.statistics.entity.TrunklineCarCostEntity; |
||||||
|
|
||||||
|
public class TrunklineCarCostVO extends TrunklineCarCostEntity { |
||||||
|
} |
@ -0,0 +1,55 @@ |
|||||||
|
package com.logpm.statistics.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import com.logpm.statistics.entity.ExpenseDispatchPriceOverZoneEntity; |
||||||
|
import com.logpm.statistics.entity.TrunklineCarCostEntity; |
||||||
|
import com.logpm.statistics.query.ExpenseDispatchTrainDetailMonthQuery; |
||||||
|
import com.logpm.statistics.service.ITrunklineCarCostService; |
||||||
|
import com.logpm.statistics.vo.ExpenseDispatchWarehouseMonthVO; |
||||||
|
import com.logpm.statistics.vo.TrunklineCarCostVO; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
import springfox.documentation.annotations.ApiIgnore; |
||||||
|
|
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* 干线车次成本结算控制器 |
||||||
|
* |
||||||
|
* @author pref |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/trunklineCarCost") |
||||||
|
@Api(value = "干线车次成本结算", tags = "干线车次成本结算") |
||||||
|
public class TrunklineCarCostController extends BladeController { |
||||||
|
|
||||||
|
private final ITrunklineCarCostService trunklineCarCostService; |
||||||
|
|
||||||
|
/** |
||||||
|
* 分页列表 |
||||||
|
*/ |
||||||
|
@GetMapping("/page") |
||||||
|
@ApiOperationSupport(order = 1) |
||||||
|
@ApiOperation(value = "分页", notes = "传入expenseDispatchWarehouseMonth") |
||||||
|
public R<IPage<TrunklineCarCostEntity>> page(@ApiIgnore @RequestParam Map<String, Object> expenseDispatchPriceOverZone, Query query) { |
||||||
|
|
||||||
|
IPage<TrunklineCarCostEntity> page = trunklineCarCostService.page(Condition.getPage(query), Condition.getQueryWrapper(expenseDispatchPriceOverZone, TrunklineCarCostEntity.class)); |
||||||
|
|
||||||
|
return R.data(page); |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,132 @@ |
|||||||
|
package com.logpm.statistics.listener.mq; |
||||||
|
|
||||||
|
import cn.hutool.json.JSONObject; |
||||||
|
import cn.hutool.json.JSONUtil; |
||||||
|
import com.logpm.statistics.entity.TrunklineCarCostEntity; |
||||||
|
import com.logpm.statistics.service.ITrunklineCarCostService; |
||||||
|
import com.logpm.trunkline.entity.TrunklineCarsLoadEntity; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.common.constant.broadcast.FanoutConstants; |
||||||
|
import org.springblade.common.model.NodeFanoutMsg; |
||||||
|
import org.springblade.common.model.StockUpVO; |
||||||
|
import org.springblade.common.model.workNode.StationArrivedByLineStationVO; |
||||||
|
import org.springblade.common.model.workNode.StationArrivedEnterVO; |
||||||
|
import org.springblade.core.tool.utils.StringUtil; |
||||||
|
import org.springframework.amqp.core.ExchangeTypes; |
||||||
|
import org.springframework.amqp.rabbit.annotation.Exchange; |
||||||
|
import org.springframework.amqp.rabbit.annotation.Queue; |
||||||
|
import org.springframework.amqp.rabbit.annotation.QueueBinding; |
||||||
|
import org.springframework.amqp.rabbit.annotation.RabbitListener; |
||||||
|
import org.springframework.stereotype.Component; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Slf4j |
||||||
|
@Component |
||||||
|
@AllArgsConstructor |
||||||
|
public class StationArrivedEnterListener { |
||||||
|
|
||||||
|
|
||||||
|
private final ITrunklineCarCostService trunklineCarCostService; |
||||||
|
|
||||||
|
@RabbitListener(bindings = @QueueBinding( |
||||||
|
value = @Queue(name = FanoutConstants.trunkline.StationArrivedEnter.QUEUE.STATIONARRIVEDENTER_COST), |
||||||
|
exchange = @Exchange(name = FanoutConstants.trunkline.StationArrivedEnter.EXCHANGE, type = ExchangeTypes.FANOUT) |
||||||
|
)) |
||||||
|
public void stationArrivedEnterData(String msg) { |
||||||
|
|
||||||
|
NodeFanoutMsg bean = JSONUtil.toBean(msg, NodeFanoutMsg.class); |
||||||
|
|
||||||
|
Object main = bean.getMain(); |
||||||
|
JSONObject entries = JSONUtil.parseObj(main); |
||||||
|
StationArrivedEnterVO vo = JSONUtil.toBean(entries, StationArrivedEnterVO.class); |
||||||
|
List<StationArrivedByLineStationVO> lineList = vo.getStationArrivedByLineStationVOS(); |
||||||
|
// 判断每个节点是否都已点击卸车确认
|
||||||
|
boolean flag = lineList.stream().filter(t->t.getSort()!=1).noneMatch(m -> m.getUnloadStatus().equals("0")); |
||||||
|
if(!flag){ |
||||||
|
log.warn("{}:车次存在未点击卸车确认完成的数据",vo.getCarsNo()); |
||||||
|
return ; |
||||||
|
} |
||||||
|
if(StringUtil.isBlank(vo.getOutDriverPerson())){ |
||||||
|
log.warn("{}:该车次自由车次数据",vo.getCarsNo()); |
||||||
|
return ; |
||||||
|
} |
||||||
|
// 构建需要保存的数据
|
||||||
|
TrunklineCarCostEntity costEntity = buildCostEntity(vo); |
||||||
|
|
||||||
|
trunklineCarCostService.saveTrunklineCarCost(costEntity); |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 构建需要的保存数据库信息 |
||||||
|
* |
||||||
|
* @param main |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
private TrunklineCarCostEntity buildCostEntity(StationArrivedEnterVO main) { |
||||||
|
|
||||||
|
TrunklineCarCostEntity data =new TrunklineCarCostEntity(); |
||||||
|
data.setEffectTime(main.getCreateTime()); |
||||||
|
data.setPlateNumber(main.getCarNumber()); |
||||||
|
data.setDriverName(main.getDriverName()); |
||||||
|
data.setActualReceivablePerson(main.getDriverName()); |
||||||
|
data.setCarsNo(main.getCarsNo()); |
||||||
|
data.setCarsNoType(1); |
||||||
|
data.setDriverStaff(main.getOutDriverPerson()); |
||||||
|
data.setVehicleType(main.getCarSettlementType()); |
||||||
|
// data.setCustomerName(main.getBrandNames());
|
||||||
|
data.setBrands(main.getBrandNames()); |
||||||
|
data.setStartStation(main.getStartWarehouseName()); |
||||||
|
data.setOutStation(main.getOutsideStation()); |
||||||
|
data.setGoodsNum(main.getRealLoadingNumber()); |
||||||
|
data.setOriginalPrice(main.getCountTransportCost()); |
||||||
|
|
||||||
|
List<StationArrivedByLineStationVO> list = main.getStationArrivedByLineStationVOS(); |
||||||
|
|
||||||
|
// 现付运输费合计
|
||||||
|
data.setNowFreightFee(list.stream().map(StationArrivedByLineStationVO::getNowTransportCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 现付油卡费合计
|
||||||
|
data.setFuelCardFee(list.stream().map(StationArrivedByLineStationVO::getOilCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 路桥费合计
|
||||||
|
data.setBridgeFee(list.stream().map(StationArrivedByLineStationVO::getTollFee).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 回付运输费合计
|
||||||
|
data.setReturnFreightFee(list.stream().map(StationArrivedByLineStationVO::getBackTransportCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 到付运输费合计
|
||||||
|
data.setPayFreightFee(list.stream().map(StationArrivedByLineStationVO::getReachTransportCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 整车信息费合计
|
||||||
|
data.setTrailerInsuranceFee(list.stream().map(StationArrivedByLineStationVO::getWholeCarInfoCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 整车保险费合计
|
||||||
|
data.setTrailerInsuranceCost(list.stream().map(StationArrivedByLineStationVO::getWholeCarInsuranceCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 整车落地费合计
|
||||||
|
data.setLandingFee(list.stream().map(StationArrivedByLineStationVO::getWholeCarGroundCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 发站装车费合计
|
||||||
|
data.setStationLoadingFee(list.stream().map(StationArrivedByLineStationVO::getHairWholeCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 发站其它费合计
|
||||||
|
data.setOtherStationFee(list.stream().map(StationArrivedByLineStationVO::getHairWholeOtherCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 到站卸车费合计
|
||||||
|
data.setStationUnloadingFee(list.stream().map(StationArrivedByLineStationVO::getUnloadCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
// 到站其它费合计
|
||||||
|
data.setOtherFee(list.stream().map(StationArrivedByLineStationVO::getUnloadOtherCost).reduce(BigDecimal.ZERO, BigDecimal::add)); |
||||||
|
|
||||||
|
// 平台结算费用 合计运输费 - 现付油卡费
|
||||||
|
data.setPlatformSettlementFee(data.getNowFreightFee().subtract(data.getFuelCardFee())); |
||||||
|
|
||||||
|
data.setPayFreightFee(main.getCountTransportCost()); |
||||||
|
data.setPaymentTime(main.getCreateTime()); |
||||||
|
data.setPaymentName(main.getOutDriverPerson()); |
||||||
|
data.setPaymentAccount(main.getOutDriverPerson()); |
||||||
|
data.setReceiveName(main.getOutDriverPerson()); |
||||||
|
data.setReceiveAccount(main.getOutDriverPerson()); |
||||||
|
data.setIsEnter(0); |
||||||
|
data.setIsPayment(0); |
||||||
|
|
||||||
|
|
||||||
|
return data; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,9 @@ |
|||||||
|
package com.logpm.statistics.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.logpm.statistics.entity.TrunklineCarCostEntity; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface TrunklineCarCostMapper extends BaseMapper<TrunklineCarCostEntity> { |
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="com.logpm.statistics.mapper.TrunklineCarCostMapper"> |
||||||
|
|
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,8 @@ |
|||||||
|
package com.logpm.statistics.service; |
||||||
|
|
||||||
|
import com.logpm.statistics.entity.TrunklineCarCostEntity; |
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
|
||||||
|
public interface ITrunklineCarCostService extends BaseService<TrunklineCarCostEntity> { |
||||||
|
TrunklineCarCostEntity saveTrunklineCarCost(TrunklineCarCostEntity costEntity); |
||||||
|
} |
@ -0,0 +1,32 @@ |
|||||||
|
package com.logpm.statistics.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import com.logpm.statistics.entity.TrunklineCarCostEntity; |
||||||
|
import com.logpm.statistics.mapper.TrunklineCarCostMapper; |
||||||
|
import com.logpm.statistics.service.ITrunklineCarCostService; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Service |
||||||
|
public class TrunklineCarCostServiceImpl extends BaseServiceImpl<TrunklineCarCostMapper, TrunklineCarCostEntity> implements ITrunklineCarCostService { |
||||||
|
@Override |
||||||
|
public TrunklineCarCostEntity saveTrunklineCarCost(TrunklineCarCostEntity costEntity) { |
||||||
|
|
||||||
|
// 需要判断该车次是否存在过结算信息
|
||||||
|
|
||||||
|
QueryWrapper queryWrapper = new QueryWrapper(); |
||||||
|
queryWrapper.eq("cars_no", costEntity.getCarsNo()); |
||||||
|
List<TrunklineCarCostEntity> list = baseMapper.selectList(queryWrapper); |
||||||
|
if(!list.isEmpty()){ |
||||||
|
log.warn("该车次已创建结算单"); |
||||||
|
return list.get(0); |
||||||
|
} |
||||||
|
|
||||||
|
// 保存对象
|
||||||
|
save(costEntity); |
||||||
|
return costEntity; |
||||||
|
} |
||||||
|
} |
@ -1,7 +1,11 @@ |
|||||||
package com.logpm.trunkline.service; |
package com.logpm.trunkline.service; |
||||||
|
|
||||||
import org.springblade.common.model.FanoutMsg; |
import org.springblade.common.model.FanoutMsg; |
||||||
|
import org.springblade.common.model.NodeFanoutMsg; |
||||||
|
import org.springblade.core.secure.BladeUser; |
||||||
|
|
||||||
public interface ISendFanoutService{ |
public interface ISendFanoutService{ |
||||||
void sendFanoutMsg(FanoutMsg fanoutMsg); |
void sendFanoutMsg(FanoutMsg fanoutMsg); |
||||||
|
|
||||||
|
|
||||||
} |
} |
||||||
|
Loading…
Reference in new issue