Browse Source

Merge remote-tracking branch 'origin/dev' into dev

dev
pref_mail@163.com 1 month ago
parent
commit
d361c34e33
  1. 1
      blade-biz-common/src/main/java/org/springblade/common/constant/printTemplate/PrintTemplateStatusConstant.java
  2. 2
      blade-biz-common/src/main/java/org/springblade/common/utils/GaoDeApiUtil.java
  3. 2
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/BasicdataPriceEntity.java
  4. 49
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/vo/BasicdataPriceBasicUpdateV2VO.java
  5. 82
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/vo/BasicdataPricePageV2VO.java
  6. 4
      blade-service-api/logpm-statisticsdata-api/src/main/java/com/logpm/statistics/feign/IExpenseDispatchClient.java
  7. 138
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataPriceController.java
  8. 64
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/pricev2/BasicdataPriceCategoryV2Excel.java
  9. 48
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/pricev2/BasicdataPriceFullVehicleV2Excel.java
  10. 4
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/pricev2/BasicdataPriceGeneralV2Excel.java
  11. 84
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/pricev2/BasicdataPriceV3Excel.java
  12. 46
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/job/BasicdataPriceJob.java
  13. 12
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataPriceMapper.java
  14. 145
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataPriceMapper.xml
  15. 52
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/query/BasicdataPriceV2Query.java
  16. 17
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IBasicdataPriceService.java
  17. 2194
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java
  18. 47
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/receiver/report/DeliverFinishReportListener.java
  19. 7
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/job/ExpenseJob.java
  20. 13
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/listener/mq/WaybillCheckListener.java
  21. 27
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/controller/OpenOrderController.java
  22. 6
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml
  23. 3
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/IOpenOrderService.java
  24. 247
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderServiceImpl.java
  25. 2
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineBillladingServiceImpl.java

1
blade-biz-common/src/main/java/org/springblade/common/constant/printTemplate/PrintTemplateStatusConstant.java

@ -24,6 +24,7 @@ public enum PrintTemplateStatusConstant {
daiqueren_14("订单模版","15"),
wallbill_1("运单打印模板","16"),
stock_import_1("库存品入库模块","17"),
zero_label_18("零担标签模版","18"),
daiqueren_1("配送任务打印模板-市配","1");
/**

2
blade-biz-common/src/main/java/org/springblade/common/utils/GaoDeApiUtil.java

@ -85,6 +85,7 @@ public class GaoDeApiUtil {
* @Author zqb 2024/9/14
**/
public static Long measureDistance(String origins, String destination) {
// 计算距离服务高德每秒钟只能接收3次,需要评估每秒请求次数
// lat 小 log 大
String key = "40448f21dfc7a531e9db4c405d955bea";
String urlString = "https://restapi.amap.com/v3/distance?key=" + key + "&origins=" + origins + "&destination=" + destination;
@ -102,6 +103,7 @@ public class GaoDeApiUtil {
in.close();
// 解析结果
JSONObject jsonObject = JSONObject.parseObject(res);
log.info("根据经纬度测量路径获取成功:{}", jsonObject.toJSONString());
JSONArray results = jsonObject.getJSONArray("results");
if (CollUtil.isNotEmpty(results)) {
return results.getJSONObject(0).getLong("distance");

2
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/BasicdataPriceEntity.java

@ -55,6 +55,8 @@ public class BasicdataPriceEntity extends TenantEntity {
private Long brandId;
@ApiModelProperty(value = "维护状态(1:未维护,2:已维护,3:已到期)")
private Integer maintenanceStatus;
@ApiModelProperty(value = "生效状态 -1未生效 0生效中 1已失效")
private Integer effectiveStatus;
@ApiModelProperty(value = "生效时间")
private Date effectiveTime;
@ApiModelProperty(value = "到期时间")

49
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/vo/BasicdataPriceBasicUpdateV2VO.java

@ -0,0 +1,49 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.util.Date;
/**
* 基础配置 视图实体类
*
* @author zqb
* @since 2024-04-02
*/
@Data
public class BasicdataPriceBasicUpdateV2VO implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "id")
private Long id;
@NotNull(message = "模板不能为空")
@ApiModelProperty(value = "模板id")
private Long templateId;
@ApiModelProperty(value = "客户id")
private Long clientId;
@ApiModelProperty(value = "品牌id")
private Long brandId;
@NotNull(message = "生效时间不能为空")
@ApiModelProperty(value = "生效时间")
private Date effectiveTime;
}

82
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/vo/BasicdataPricePageV2VO.java

@ -0,0 +1,82 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 基础价格表 视图实体类
*
* @author zqb
* @since 2024-04-02
*/
@Data
public class BasicdataPricePageV2VO implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "id")
private String id;
@ApiModelProperty(value = "客户名称")
private String clientName;
@ApiModelProperty(value = "品牌名称")
private String brandName;
@ApiModelProperty(value = "品牌id")
private String brandId;
@ApiModelProperty(value = "客户id")
private String clientId;
@ApiModelProperty(value = "价格模板id")
private String templateId;
@ApiModelProperty(value = "价格模板名称")
private String templateName;
@ApiModelProperty(value = "模板服务类型")
private String serviceType;
@ApiModelProperty(value = "维护状态")
private String maintenanceStatus;
@ApiModelProperty(value = "生效状态")
private String effectiveStatus;
@ApiModelProperty(value = "修改时间")
private String updateTime;
@ApiModelProperty(value = "配送-上楼费免费楼层")
private String dispatchStairsCarryingCharge;
@ApiModelProperty(value = "配送-向上判断件数")
private String dispatchUpwardJudgment;
@ApiModelProperty(value = "配送-向上判断加价")
private String dispatchUpwardJudgmentCost;
@ApiModelProperty(value = "生效时间")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date effectiveTime;
}

4
blade-service-api/logpm-statisticsdata-api/src/main/java/com/logpm/statistics/feign/IExpenseDispatchClient.java

@ -25,8 +25,8 @@ public interface IExpenseDispatchClient {
void saveTrainDetailEntity(@RequestBody ExpenseDispatchTrainDetailEntity entity);
@PostMapping(API_PREFIX + "/saveDispatchOrderDetailEntity")
void saveDispatchOrderDetailEntity(ExpenseDispatchOrderDetailEntity orderDetailEntity);
void saveDispatchOrderDetailEntity(@RequestBody ExpenseDispatchOrderDetailEntity orderDetailEntity);
@PostMapping(API_PREFIX + "/saveWarehouseOrderEntity")
void saveWarehouseOrderEntity(ExpenseWarehouseOrderEntity orderDetailEntity);
void saveWarehouseOrderEntity(@RequestBody ExpenseWarehouseOrderEntity orderDetailEntity);
}

138
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataPriceController.java

@ -23,9 +23,25 @@ import com.alibaba.excel.write.metadata.WriteSheet;
import com.alibaba.excel.write.metadata.WriteTable;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import com.logpm.basicdata.excel.price.*;
import com.logpm.basicdata.excel.price.BasicdataPriceCategoryBasicExcel;
import com.logpm.basicdata.excel.price.BasicdataPriceCategoryDispatchExcel;
import com.logpm.basicdata.excel.price.BasicdataPriceCategoryWarehouseExcel;
import com.logpm.basicdata.excel.price.BasicdataPriceExcel;
import com.logpm.basicdata.excel.price.BasicdataPriceFullVehicleExcel;
import com.logpm.basicdata.excel.price.BasicdataPriceGeneralExcel;
import com.logpm.basicdata.excel.pricev2.BasicdataPriceCategoryV2Excel;
import com.logpm.basicdata.excel.pricev2.BasicdataPriceFullVehicleV2Excel;
import com.logpm.basicdata.excel.pricev2.BasicdataPriceGeneralV2Excel;
import com.logpm.basicdata.excel.pricev2.BasicdataPriceV3Excel;
import com.logpm.basicdata.query.BasicdataPriceV2Query;
import com.logpm.basicdata.service.IBasicdataPriceService;
import com.logpm.basicdata.vo.*;
import com.logpm.basicdata.vo.BasicdatPriceApiVO;
import com.logpm.basicdata.vo.BasicdataPriceBasicUpdateV2VO;
import com.logpm.basicdata.vo.BasicdataPriceBasicUpdateVO;
import com.logpm.basicdata.vo.BasicdataPricePageV2VO;
import com.logpm.basicdata.vo.BasicdataPricePageVO;
import com.logpm.basicdata.vo.PriceClientVO;
import com.logpm.basicdata.vo.PriceVO;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
@ -35,7 +51,17 @@ 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.*;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PatchMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import springfox.documentation.annotations.ApiIgnore;
@ -78,18 +104,41 @@ public class BasicdataPriceController extends BladeController {
*/
@GetMapping
@ApiOperationSupport(order = 2)
@ApiOperation(value = "基础价格分页", notes = "传入basicdataPrice")
public R<IPage<BasicdataPricePageVO>> page(BasicdataPricePageVO basicdataPrice, Query query) {
@ApiOperation(value = "基础价格分页v2", notes = "传入basicdataPrice")
public R<IPage<BasicdataPricePageV2VO>> pageV2(BasicdataPriceV2Query basicdataPrice, Query query) {
IPage<BasicdataPricePageV2VO> pages = basicdataPriceService.selectBasicdataPricePageV2(Condition.getPage(query), basicdataPrice);
return R.data(pages);
}
/**
* 基础价格表 自定义分页
*/
@GetMapping("page/v1")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "基础价格分页v1", notes = "传入basicdataPrice")
public R<IPage<BasicdataPricePageVO>> pageV1(BasicdataPricePageVO basicdataPrice, Query query) {
IPage<BasicdataPricePageVO> pages = basicdataPriceService.selectBasicdataPricePage(Condition.getPage(query), basicdataPrice);
return R.data(pages);
}
/**
* 基础价格表 历史版本查询
*/
@GetMapping("hisPage")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "历史版本查询", notes = "历史版本查询")
public R<IPage<BasicdataPricePageVO>> hisPage(BasicdataPricePageVO basicdataPrice, Query query) {
@ApiOperation(value = "历史版本查询v2", notes = "历史版本查询")
public R<IPage<BasicdataPricePageV2VO>> hisPageV2(BasicdataPricePageV2VO basicdataPrice, Query query) {
IPage<BasicdataPricePageV2VO> pages = basicdataPriceService.hisPageV2(Condition.getPage(query), basicdataPrice);
return R.data(pages);
}
/**
* 基础价格表 历史版本查询
*/
@GetMapping("hisPage/v1")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "历史版本查询v1", notes = "历史版本查询")
public R<IPage<BasicdataPricePageVO>> hisPageV1(BasicdataPricePageVO basicdataPrice, Query query) {
IPage<BasicdataPricePageVO> pages = basicdataPriceService.hisPage(Condition.getPage(query), basicdataPrice);
return R.data(pages);
}
@ -99,8 +148,18 @@ public class BasicdataPriceController extends BladeController {
*/
@PatchMapping
@ApiOperationSupport(order = 4)
@ApiOperation(value = "基础配置", notes = "传入basicdataPrice")
public R<Boolean> basicUpdate(@Valid @RequestBody BasicdataPriceBasicUpdateVO vo) {
@ApiOperation(value = "基础配置v2", notes = "传入basicdataPrice")
public R<Boolean> basicUpdateV2(@Valid @RequestBody BasicdataPriceBasicUpdateV2VO vo) {
return R.status(basicdataPriceService.basicUpdateV2(vo));
}
/**
* 基础价格表 修改
*/
@PatchMapping("/v1")
@ApiOperationSupport(order = 4)
@ApiOperation(value = "基础配置v1", notes = "传入basicdataPrice")
public R<Boolean> basicUpdateV1(@Valid @RequestBody BasicdataPriceBasicUpdateVO vo) {
return R.status(basicdataPriceService.basicUpdate(vo));
}
@ -114,6 +173,7 @@ public class BasicdataPriceController extends BladeController {
Boolean res = basicdataPriceService.updatePrice(vo);
return R.status(res);
}
@DeleteMapping("{id}")
@ApiOperationSupport(order = 5)
@ApiOperation(value = "删除待生效的价格", notes = "删除待生效的价格")
@ -134,12 +194,14 @@ public class BasicdataPriceController extends BladeController {
public R<String> upload(@RequestPart("file") MultipartFile file) {
return R.data(basicdataPriceService.upload(file));
}
/**
* 基础价格表 导入
* 基础价格表 导入 覆盖导入 v2
* 带生效时间和结束时间的版本
*/
@PostMapping("upload/v2")
@ApiOperationSupport(order = 6)
@ApiOperation(value = "导入v2", notes = "导入v2")
@ApiOperation(value = "导入v2 覆盖导入", notes = "导入v2 覆盖导入")
@ApiImplicitParams({
@ApiImplicitParam(name = "file", value = "文件", dataType = "MultipartFile")
})
@ -147,6 +209,34 @@ public class BasicdataPriceController extends BladeController {
return R.data(basicdataPriceService.uploadV2(file));
}
/**
* 基础价格表 导入 更新导入
* 只有生效时间的版本
*/
@PostMapping("upload/v3/update")
@ApiOperationSupport(order = 6)
@ApiOperation(value = "导入v3 更新导入", notes = "导入v3 更新导入")
@ApiImplicitParams({
@ApiImplicitParam(name = "file", value = "文件", dataType = "MultipartFile")
})
public R<String> uploadV3Update(@RequestPart("file") MultipartFile file) {
return R.data(basicdataPriceService.uploadV3Update(file));
}
/**
* 基础价格表 导入 覆盖导入
* 只有生效时间的版本
*/
@PostMapping("upload/v3")
@ApiOperationSupport(order = 6)
@ApiOperation(value = "导入v3 覆盖导入", notes = "导入v3 覆盖导入")
@ApiImplicitParams({
@ApiImplicitParam(name = "file", value = "文件", dataType = "MultipartFile")
})
public R<String> uploadV3(@RequestPart("file") MultipartFile file) {
return R.data(basicdataPriceService.uploadV3(file));
}
/**
* 基础价格表 指定查询
*/
@ -193,4 +283,30 @@ public class BasicdataPriceController extends BladeController {
}
}
@GetMapping("/export/v2")
@ApiOperationSupport(order = 8)
@ApiOperation(value = "导出", notes = "导出")
public void exportV2(BasicdataPriceV2Query basicdataPrice, HttpServletResponse response) {
try {
String fileName = "基础价格表" + DateUtil.today();
response.setContentType("application/vnd.ms-excel");
response.setCharacterEncoding(StandardCharsets.UTF_8.name());
fileName = URLEncoder.encode(fileName, StandardCharsets.UTF_8.name());
response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");
ExcelWriter excelWriter = EasyExcel.write(response.getOutputStream()).build();
WriteTable table1 = EasyExcel.writerTable(0).head(BasicdataPriceV3Excel.class).build();
WriteTable table2 = EasyExcel.writerTable(1).head(BasicdataPriceFullVehicleV2Excel.class).build();
WriteTable table3 = EasyExcel.writerTable(2).head(BasicdataPriceGeneralV2Excel.class).build();
WriteTable table4 = EasyExcel.writerTable(3).head(BasicdataPriceCategoryV2Excel.class).build();
WriteSheet writeSheet1 = EasyExcel.writerSheet(0, "基础数据模版").build();
WriteSheet writeSheet2 = EasyExcel.writerSheet(1, "整车包含路径提货、干线、配送整车费用").build();
WriteSheet writeSheet3 = EasyExcel.writerSheet(2, "最低价格(保底价)").build();
WriteSheet writeSheet4 = EasyExcel.writerSheet(3, "品类(正常计费)").build();
basicdataPriceService.exportV2(basicdataPrice, excelWriter, writeSheet1, table1, writeSheet2, table2, writeSheet3, table3, writeSheet4, table4);
excelWriter.finish();
} catch (IOException e) {
e.printStackTrace();
}
}
}

64
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/pricev2/BasicdataPriceCategoryV2Excel.java

@ -40,65 +40,69 @@ public class BasicdataPriceCategoryV2Excel implements Serializable {
private static final long serialVersionUID = 1L;
@ExcelProperty(value = {"商场名称", "商场名称"}, index = 0)
@ExcelProperty(value = {"商场(客户)名称", "商场(客户)名称", "商场(客户)名称", "商场(客户)名称"}, index = 0)
private String client;
@ExcelProperty(value = {"品牌", "品牌"}, index = 1)
@ExcelProperty(value = {"品牌", "品牌", "品牌", "品牌"}, index = 1)
private String brand;
@ExcelProperty(value = {"发站", "省"}, index = 2)
@ExcelProperty(value = {"路径", "发站", "省", "省"}, index = 2)
private String startProvince;
@ExcelProperty(value = {"发站", "市"}, index = 3)
@ExcelProperty(value = {"路径", "发站", "市", "市"}, index = 3)
private String startCity;
@ExcelProperty(value = {"发站", "区"}, index = 4)
@ExcelProperty(value = {"路径", "发站", "区", "区"}, index = 4)
private String startArea;
@ExcelProperty(value = {"到站", "省"}, index = 5)
@ExcelProperty(value = {"路径", "到站", "省", "省"}, index = 5)
private String endProvince;
@ExcelProperty(value = {"到站", "市"}, index = 6)
@ExcelProperty(value = {"路径", "到站", "市", "市"}, index = 6)
private String endCity;
@ExcelProperty(value = {"到站", "区"}, index = 7)
@ExcelProperty(value = {"路径", "到站", "区", "区"}, index = 7)
private String endArea;
@ExcelProperty(value = {"发货单位", "发货单位编码"}, index = 8)
@ExcelProperty(value = {"路径", "发货单位", "发货单位ID", "发货单位ID"}, index = 8)
private String sendOrgCode;
@ExcelProperty(value = {"发货单位", "发货单位"}, index = 9)
@ExcelProperty(value = {"路径", "发货单位", "发货单位", "发货单位"}, index = 9)
private String sendOrg;
@ExcelProperty(value = {"品类", "品类"}, index = 10)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","品类(财务统一结算品类名称)", "品类", "品类"}, index = 10)
private String category;
@ExcelProperty(value = {"提货", "单位"}, index = 11)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","提货", "单位", "单位"}, index = 11)
private String pickupUnit;
@ExcelProperty(value = {"提货", "单价"}, index = 12)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","提货", "单价", "单价"}, index = 12)
private String pickupPrice;
@ExcelProperty(value = {"干线", "单位"}, index = 13)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","干线", "单位", "单位"}, index = 13)
private String trunkLineUnit;
@ExcelProperty(value = {"干线", "单价"}, index = 14)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","干线", "单价", "单价"}, index = 14)
private String trunkLinePrice;
@ExcelProperty(value = {"仓储", "30天内"}, index = 15)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","仓储", "仓储", "30天内"}, index = 15)
private String withinThirtyPrice;
@ExcelProperty(value = {"仓储", "30-60天"}, index = 16)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","仓储", "仓储", "30-60天"}, index = 16)
private String betweenThirtySixtyPrice;
@ExcelProperty(value = {"仓储", "60-90天"}, index = 17)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","仓储", "仓储", "60-90天"}, index = 17)
private String beyondSixtyPrice;
@ExcelProperty(value = {"仓储", "90天以上"}, index = 18)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","仓储", "仓储", "90天以上"}, index = 18)
private String beyondNinetyPrice;
@ExcelProperty(value = {"仓储附加费", "仓储操作/装卸费"}, index = 19)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","仓储", "仓储附加费", "仓储操作/装卸费"}, index = 19)
private String warehouseOperatePrice;
@ExcelProperty(value = {"仓储附加费", "仓储管理费"}, index = 20)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","仓储", "仓储附加费", "仓储管理费"}, index = 20)
private String warehouseManagementPrice;
@ExcelProperty(value = {"仓储附加费", "仓储分货费"}, index = 21)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","仓储", "仓储附加费", "仓储分货费"}, index = 21)
private String warehouseSortPrice;
@ExcelProperty(value = {"配送", "单位"}, index = 22)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","配送", "配送", "单位"}, index = 22)
private String dispatchUnit;
@ExcelProperty(value = {"配送", "一般单价"}, index = 23)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","配送", "配送", "一般单价"}, index = 23)
private String dispatchPrice;
@ExcelProperty(value = {"配送", "遗留单价"}, index = 24)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","配送", "配送", "遗留单价"}, index = 24)
private String dispatchLeaveBehindPrice;
@ExcelProperty(value = {"配送附加费", "分货费"}, index = 25)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","配送", "配送附加费", "分货费"}, index = 25)
private String dispatchSortPrice;
@ExcelProperty(value = {"配送附加费", "操作/装卸费价格"}, index = 26)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","配送", "配送附加费", "操作/装卸费价格"}, index = 26)
private String dispatchHandlingPrice;
@ExcelProperty(value = {"配送附加费", "平移费价格"}, index = 27)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","配送", "配送附加费", "平移费价格"}, index = 27)
private String dispatchRelocationPrice;
@ExcelProperty(value = {"配送附加费", "上楼费价格"}, index = 28)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","配送", "配送附加费", "上楼费价格"}, index = 28)
private String dispatchDeliveryPrice;
@ExcelProperty(value = {"配送附加费", "上楼免楼层数"}, index = 29)
@ExcelProperty(value = {"正常维护价格仅区分品类计费(金牌需要单独维护按件计费价格)","配送", "配送附加费", "上楼免楼层数"}, index = 29)
private String dispatchStairsCarryingCharge;
@ExcelProperty(value = {"生效时间", "生效时间", "生效时间", "生效时间"}, index = 30)
private String effectiveTime;
@ExcelProperty(value = {"生效状态", "生效状态", "生效状态", "生效状态"}, index = 31)
private String effectiveStatus;
}

48
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/pricev2/BasicdataPriceFullVehicleV2Excel.java

@ -20,6 +20,7 @@ package com.logpm.basicdata.excel.pricev2;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.ContentStyle;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data;
@ -40,33 +41,50 @@ public class BasicdataPriceFullVehicleV2Excel implements Serializable {
private static final long serialVersionUID = 1L;
@ExcelProperty(value = {"商场名称", "商场名称"}, index = 0)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","商场名称", "商场名称"}, index = 0)
@ContentStyle(wrapped = true)
private String client;
@ExcelProperty(value = {"品牌", "品牌"}, index = 1)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","品牌", "品牌"}, index = 1)
@ContentStyle(wrapped = true)
private String brand;
@ExcelProperty(value = {"发站", "省"}, index = 2)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","发站", "省"}, index = 2)
@ContentStyle(wrapped = true)
private String startProvince;
@ExcelProperty(value = {"发站", "市"}, index = 3)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","发站", "市"}, index = 3)
@ContentStyle(wrapped = true)
private String startCity;
@ExcelProperty(value = {"发站", "区"}, index = 4)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","发站", "区"}, index = 4)
@ContentStyle(wrapped = true)
private String startArea;
@ExcelProperty(value = {"到站", "省"}, index = 5)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","到站", "省"}, index = 5)
@ContentStyle(wrapped = true)
private String endProvince;
@ExcelProperty(value = {"到站", "市"}, index = 6)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","到站", "市"}, index = 6)
@ContentStyle(wrapped = true)
private String endCity;
@ExcelProperty(value = {"到站", "区"}, index = 7)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","到站", "区"}, index = 7)
@ContentStyle(wrapped = true)
private String endArea;
@ExcelProperty(value = {"发货单位", "发货单位ID"}, index = 8)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","发货单位", "发货单位ID"}, index = 8)
@ContentStyle(wrapped = true)
private String sendOrgCode;
@ExcelProperty(value = {"发货单位", "发货单位"}, index = 9)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","发货单位", "发货单位"}, index = 9)
@ContentStyle(wrapped = true)
private String sendOrg;
@ExcelProperty(value = {"车型", "车型"}, index = 10)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","车型", "车型"}, index = 10)
@ContentStyle(wrapped = true)
private String vehicleType;
@ExcelProperty(value = {"提货", "单价"}, index = 11)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","提货", "单价"}, index = 11)
@ContentStyle(wrapped = true)
private String pickupPrice;
@ExcelProperty(value = {"干线", "单价"}, index = 12)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","干线", "单价"}, index = 12)
@ContentStyle(wrapped = true)
private String trunkLinePrice;
@ExcelProperty(value = {"配送", "单价"}, index = 13)
@ExcelProperty(value = {"包含路径提货、干线、配送整车费用\n配送不区分路径,只需要填写一次车型价格","配送", "单价"}, index = 13)
@ContentStyle(wrapped = true)
private String dispatchPrice;
@ExcelProperty(value = {"生效时间", "生效时间", "生效时间"}, index = 14)
private String effectiveTime;
@ExcelProperty(value = {"生效状态", "生效状态", "生效状态"}, index = 15)
private String effectiveStatus;
}

4
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/pricev2/BasicdataPriceGeneralV2Excel.java

@ -80,5 +80,9 @@ public class BasicdataPriceGeneralV2Excel implements Serializable {
private String dispatchLeaveBehindMinCost;
@ExcelProperty(value = {"配送", "遗留加算价格"}, index = 19)
private String dispatchLeaveBehindAddCost;
@ExcelProperty(value = {"生效时间", "生效时间"}, index = 20)
private String effectiveTime;
@ExcelProperty(value = {"生效状态", "生效状态"}, index = 21)
private String effectiveStatus;
}

84
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/excel/pricev2/BasicdataPriceV3Excel.java

@ -0,0 +1,84 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.excel.pricev2;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data;
import java.io.Serializable;
/**
* 价格 Excel实体类
*
* @author chao
* @since 2024-04-19
*/
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class BasicdataPriceV3Excel implements Serializable {
private static final long serialVersionUID = 1L;
@ExcelProperty(value = {"基础信息维护", "商场编码(工厂)"}, index = 0)
private String clientCode;
/**
* 客户名称
*/
@ExcelProperty(value = {"基础信息维护", "商场名称:(必填)"}, index = 1)
private String client;
/**
* 品牌
*/
@ExcelProperty(value = {"基础信息维护", "品牌:(必填)"}, index = 2)
private String brand;
/**
* 生效时间
*/
@ExcelProperty(value = {"基础信息维护", "生效日期:(必填)"}, index = 3)
private String effectiveTime;
/**
* 配送服务类型
*/
@ExcelProperty(value = {"基础信息维护", "配送服务类型:(必填)"}, index = 4)
private String serviceType;
/**
* 结算方式
*/
@ExcelProperty(value = {"基础信息维护", "结算方式"}, index = 5)
private String settlementMethod;
/**
* 付款方
*/
@ExcelProperty(value = {"基础信息维护", "付款方"}, index = 6)
private String payingParty;
/**
* 模版名称
*/
@ExcelProperty(value = {"基础信息维护", "模版名称"}, index = 7)
private String templateName;
@ExcelProperty(value = {"生效状态", "生效状态"}, index = 8)
private String effectiveStatus;
}

46
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/job/BasicdataPriceJob.java

@ -2,6 +2,7 @@ package com.logpm.basicdata.job;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.logpm.basicdata.entity.BasicdataPriceEntity;
@ -15,9 +16,13 @@ import lombok.AllArgsConstructor;
import org.springframework.stereotype.Component;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
/**
* @author zhaoqiaobo
@ -70,5 +75,46 @@ public class BasicdataPriceJob {
return ReturnT.SUCCESS;
}
/**
* 定时维护价格的生效状态
* 每天凌晨定时维护一次
*
* @param param
* @return
* @throws Exception
*/
@XxlJob("changePriceEffectiveStatus")
public ReturnT<String> changePriceEffectiveStatus(String param) throws Exception {
// 未生效转生效的价格
Set<String> effectiveSet = new HashSet<>();
List<BasicdataPriceEntity> list = priceService.list(Wrappers.<BasicdataPriceEntity>lambdaQuery().in(BasicdataPriceEntity::getEffectiveStatus, -1, 0));
if (CollUtil.isNotEmpty(list)) {
List<BasicdataPriceEntity> collect = list.stream().filter(item -> item.getEffectiveStatus() == -1 && StrUtil.equals(DateUtil.formatDate(item.getEffectiveTime()), DateUtil.formatDate(DateUtil.beginOfDay(new Date())))).collect(Collectors.toList());
if (CollUtil.isNotEmpty(collect)) {
Set<Long> updateSet = new HashSet<>();
for (BasicdataPriceEntity basicdataPriceEntity : collect) {
effectiveSet.add(Convert.toStr(basicdataPriceEntity.getClientId()) + Convert.toStr(basicdataPriceEntity.getBrandId()));
updateSet.add(basicdataPriceEntity.getId());
}
if (CollUtil.isNotEmpty(updateSet)) {
priceService.update(Wrappers.<BasicdataPriceEntity>lambdaUpdate().set(BasicdataPriceEntity::getEffectiveStatus, 0).in(BasicdataPriceEntity::getId, updateSet));
}
List<BasicdataPriceEntity> collect1 = list.stream().filter(item -> item.getEffectiveStatus() == 0).collect(Collectors.toList());
if (CollUtil.isNotEmpty(collect1)) {
Set<Long> updateSet1 = new HashSet<>();
for (BasicdataPriceEntity basicdataPriceEntity : collect1) {
if(CollUtil.contains(effectiveSet,Convert.toStr(basicdataPriceEntity.getClientId()) + Convert.toStr(basicdataPriceEntity.getBrandId()))){
updateSet1.add(basicdataPriceEntity.getId());
}
}
if(CollUtil.isNotEmpty(updateSet1)){
priceService.update(Wrappers.<BasicdataPriceEntity>lambdaUpdate().set(BasicdataPriceEntity::getEffectiveStatus, 1).in(BasicdataPriceEntity::getId, updateSet1));
}
}
}
}
return ReturnT.SUCCESS;
}
}

12
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataPriceMapper.java

@ -16,19 +16,19 @@
*/
package com.logpm.basicdata.mapper;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.basicdata.entity.BasicdataPriceEntity;
import com.logpm.basicdata.excel.price.BasicdataPriceExcel;
import com.logpm.basicdata.excel.pricev2.BasicdataPriceV2Excel;
import com.logpm.basicdata.query.BasicdataPriceV2Query;
import com.logpm.basicdata.vo.BasicdataPriceImportVO;
import com.logpm.basicdata.vo.BasicdataPricePageV2VO;
import com.logpm.basicdata.vo.BasicdataPricePageVO;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Set;
/**
* 基础价格表 Mapper 接口
@ -45,7 +45,7 @@ public interface BasicdataPriceMapper extends BaseMapper<BasicdataPriceEntity> {
* @param basicdataPrice
* @return
*/
List<BasicdataPricePageVO> selectBasicdataPricePage(IPage page, BasicdataPricePageVO basicdataPrice);
List<BasicdataPricePageVO> selectBasicdataPricePage(@Param("page") IPage page, @Param("basicdataPrice") BasicdataPricePageVO basicdataPrice);
@Delete("delete from logpm_basicdata_price_route where price_id = #{id}")
@ -56,4 +56,10 @@ public interface BasicdataPriceMapper extends BaseMapper<BasicdataPriceEntity> {
List<BasicdataPriceImportVO> findEntityByClientAndBrandV2(@Param("prices") List<BasicdataPriceV2Excel> priceExcels);
List<BasicdataPricePageVO> hisPage(IPage<BasicdataPricePageVO> page, BasicdataPricePageVO basicdataPrice);
List<BasicdataPricePageV2VO> selectBasicdataPricePageV2(@Param("page") IPage<BasicdataPricePageV2VO> page, @Param("basicdataPrice") BasicdataPriceV2Query basicdataPrice);
List<BasicdataPricePageV2VO> hisPageV2(@Param("page") IPage<BasicdataPricePageV2VO> page, @Param("basicdataPrice") BasicdataPricePageV2VO basicdataPrice);
List<BasicdataPricePageV2VO> selectBasicdataPricePageV2Export(@Param("page") IPage<BasicdataPricePageV2VO> page, @Param("basicdataPrice") BasicdataPriceV2Query basicdataPrice);
}

145
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataPriceMapper.xml

@ -101,4 +101,149 @@
</foreach>
</if>
</select>
<select id="selectBasicdataPricePageV2" resultType="com.logpm.basicdata.vo.BasicdataPricePageV2VO">
select t.id,
cli.client_name,
lbsb.brand_id,
lbsb.client_id,
t.template_id,
ldb.brand_name,
lbpt.service_type,
lbpt.name templateName,
case
when t.maintenance_status = 1 then '未维护'
when t.maintenance_status = 2 then '已维护'
else ''
end maintenance_status,
case
when t.effective_status = -1 then '未生效'
when t.effective_status = 0 then '生效中'
when t.effective_status = 1 then '已失效'
else ''
end effectiveStatus,
t.update_time,
t.effective_time,
t.expiry_time
from logpm_basicdata_store_brand lbsb
left join logpm_basicdata_client cli on cli.id = lbsb.client_id
left join logpm_basicdata_price t on lbsb.client_id = t.client_id
and lbsb.brand_id = t.brand_id and t.effective_status = 0
left join logpm_basicdata_brand ldb on ldb.id = lbsb.brand_id
left join logpm_basicdata_price_template lbpt on t.template_id = lbpt.id
where lbsb.is_deleted = 0 and cli.is_deleted = 0 and (t.is_deleted = 0 or t.id is null)
<if test="basicdataPrice.clientName != null and basicdataPrice.clientName != ''">
and cli.client_name like concat('%',#{basicdataPrice.clientName},'%')
</if>
<if test="basicdataPrice.brandName != null and basicdataPrice.brandName != ''">
and ldb.brand_name like concat('%',#{basicdataPrice.brandName},'%')
</if>
<if test="basicdataPrice.clientIds != null and basicdataPrice.clientIds != ''">
and t.client_id in
<foreach collection="basicdataPrice.clientIds.split(',')" item="item" separator="," open="(" close=")">
#{item}
</foreach>
</if>
<if test="basicdataPrice.brandIds != null and basicdataPrice.brandIds != ''">
and t.brand_id in
<foreach collection="basicdataPrice.brandIds.split(',')" item="item" separator="," open="(" close=")">
#{item}
</foreach>
</if>
<if test="basicdataPrice.maintenanceStatus != null and basicdataPrice.maintenanceStatus != ''">
<if test="basicdataPrice.maintenanceStatus != 3">
and t.maintenance_status = #{basicdataPrice.maintenanceStatus}
</if>
</if>
</select>
<select id="hisPageV2" resultType="com.logpm.basicdata.vo.BasicdataPricePageV2VO">
select t.id,
cli.client_name,
t.brand_id,
t.client_id,
t.template_id,
ldb.brand_name,
lbpt.service_type,
case
when t.maintenance_status = 1 then '未维护'
when t.maintenance_status = 2 then '已维护'
else ''
end maintenance_status,
case
when t.effective_status = -1 then '未生效'
when t.effective_status = 0 then '生效中'
when t.effective_status = 1 then '已失效'
else ''
end effectiveStatus,
t.update_time,
t.effective_time,
t.expiry_time
from logpm_basicdata_price t
left join logpm_basicdata_price_template lbpt on t.template_id = lbpt.id
left join logpm_basicdata_client cli on cli.id = t.client_id
left join logpm_basicdata_brand ldb on ldb.id = t.brand_id
where t.is_deleted = 0
and t.client_id = #{basicdataPrice.clientId}
and t.brand_id = #{basicdataPrice.brandId}
</select>
<select id="selectBasicdataPricePageV2Export" resultType="com.logpm.basicdata.vo.BasicdataPricePageV2VO">
select t.id,
cli.client_name,
lbsb.brand_id,
lbsb.client_id,
t.template_id,
ldb.brand_name,
lbpt.service_type,
lbpt.name templateName,
case
when t.maintenance_status = 1 then '未维护'
when t.maintenance_status = 2 then '已维护'
else ''
end maintenance_status,
case
when t.effective_status = -1 then '未生效'
when t.effective_status = 0 then '生效中'
when t.effective_status = 1 then '已失效'
else ''
end effectiveStatus,
t.update_time,
t.effective_time,
t.dispatch_stairs_carrying_charge,
t.dispatch_upward_judgment,
t.dispatch_upward_judgment_cost,
t.expiry_time
from logpm_basicdata_store_brand lbsb
left join logpm_basicdata_client cli on cli.id = lbsb.client_id
left join logpm_basicdata_price t on lbsb.client_id = t.client_id
and lbsb.brand_id = t.brand_id
left join logpm_basicdata_brand ldb on ldb.id = lbsb.brand_id
left join logpm_basicdata_price_template lbpt on t.template_id = lbpt.id
where lbsb.is_deleted = 0 and cli.is_deleted = 0 and t.is_deleted = 0 and t.id is not null
<if test="basicdataPrice.clientName != null and basicdataPrice.clientName != ''">
and cli.client_name like concat('%',#{basicdataPrice.clientName},'%')
</if>
<if test="basicdataPrice.brandName != null and basicdataPrice.brandName != ''">
and ldb.brand_name like concat('%',#{basicdataPrice.brandName},'%')
</if>
<if test="basicdataPrice.clientIds != null and basicdataPrice.clientIds != ''">
and t.client_id in
<foreach collection="basicdataPrice.clientIds.split(',')" item="item" separator="," open="(" close=")">
#{item}
</foreach>
</if>
<if test="basicdataPrice.brandIds != null and basicdataPrice.brandIds != ''">
and t.brand_id in
<foreach collection="basicdataPrice.brandIds.split(',')" item="item" separator="," open="(" close=")">
#{item}
</foreach>
</if>
<if test="basicdataPrice.ids != null and basicdataPrice.ids != ''">
and t.id in
<foreach collection="basicdataPrice.ids.split(',')" item="item" separator="," open="(" close=")">
#{item}
</foreach>
</if>
</select>
</mapper>

52
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/query/BasicdataPriceV2Query.java

@ -0,0 +1,52 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.basicdata.query;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
/**
* 基础价格表 视图实体类
*
* @author zqb
* @since 2024-04-02
*/
@Data
public class BasicdataPriceV2Query implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "ids 用于勾选导出")
private String ids;
@ApiModelProperty(value = "客户名称")
private String clientName;
@ApiModelProperty(value = "品牌名称")
private String brandName;
@ApiModelProperty(value = "客户ids 用于批量查询")
private String clientIds;
@ApiModelProperty(value = "品牌ids 用于批量查询")
private String brandIds;
@ApiModelProperty(value = "维护状态")
private String maintenanceStatus;
}

17
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IBasicdataPriceService.java

@ -16,10 +16,16 @@
*/
package com.logpm.basicdata.service;
import com.alibaba.excel.ExcelWriter;
import com.alibaba.excel.write.metadata.WriteSheet;
import com.alibaba.excel.write.metadata.WriteTable;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.basicdata.entity.BasicdataPriceEntity;
import com.logpm.basicdata.query.BasicdataPriceV2Query;
import com.logpm.basicdata.vo.BasicdatPriceApiVO;
import com.logpm.basicdata.vo.BasicdataPriceBasicUpdateV2VO;
import com.logpm.basicdata.vo.BasicdataPriceBasicUpdateVO;
import com.logpm.basicdata.vo.BasicdataPricePageV2VO;
import com.logpm.basicdata.vo.BasicdataPricePageVO;
import com.logpm.basicdata.vo.PriceClientVO;
import com.logpm.basicdata.vo.PriceDispatchAddClientVO;
@ -44,6 +50,7 @@ public interface IBasicdataPriceService extends BaseService<BasicdataPriceEntity
* @return
*/
IPage<BasicdataPricePageVO > selectBasicdataPricePage(IPage<BasicdataPricePageVO > page, BasicdataPricePageVO basicdataPrice);
IPage<BasicdataPricePageV2VO> selectBasicdataPricePageV2(IPage<BasicdataPricePageV2VO> page, BasicdataPriceV2Query basicdataPrice);
Boolean basicUpdate(BasicdataPriceBasicUpdateVO vo);
@ -86,4 +93,14 @@ public interface IBasicdataPriceService extends BaseService<BasicdataPriceEntity
* @Author zqb 2024/7/3
**/
List<PriceDispatchAddClientVO> dispatchAddPrice(BasicdatPriceApiVO param);
IPage<BasicdataPricePageV2VO> hisPageV2(IPage<BasicdataPricePageV2VO> page, BasicdataPricePageV2VO basicdataPrice);
boolean basicUpdateV2(BasicdataPriceBasicUpdateV2VO vo);
String uploadV3(MultipartFile file);
String uploadV3Update(MultipartFile file);
void exportV2(BasicdataPriceV2Query basicdataPrice, ExcelWriter excelWriter, WriteSheet writeSheet1, WriteTable table1, WriteSheet writeSheet2, WriteTable table2, WriteSheet writeSheet3, WriteTable table3, WriteSheet writeSheet4, WriteTable table4);
}

2194
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java

File diff suppressed because it is too large Load Diff

47
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/receiver/report/DeliverFinishReportListener.java

@ -80,7 +80,18 @@ public class DeliverFinishReportListener implements ReportService {
FinishDistributionTrainVO vo = JSONUtil.toBean(entries, FinishDistributionTrainVO.class);
String trainNumber = vo.getTrainNumber();
String deliveryKind = vo.getDeliveryKind();
calculateTripCost(trainNumber, deliveryKind);
Map<String, TrunklineWaybillOrderEntity> waybillOrderMap = calculateTripCost(trainNumber, deliveryKind);
// 生成订单 发送延时消息生成报表
if (CollUtil.isNotEmpty(waybillOrderMap)) {
for (Map.Entry<String, TrunklineWaybillOrderEntity> entityEntry : waybillOrderMap.entrySet()) {
factoryDataClient.sendMessage(SendMsg.builder()
.exchange(ReportConstants.REPORT_EXPENSE_ORDER_EXCHANGE)
.routingKey(ReportConstants.REPORT_EXPENSE_ORDER_ROUTINGKEY)
.message(JSONUtil.toJsonStr(entityEntry.getValue()))
.delay(10000)
.build());
}
}
// 生成车辆车次成本 发送延时消息生成报表
factoryDataClient.sendMessage(SendMsg.builder()
.exchange(ReportConstants.REPORT_QUALITY_CAR_FINAL_EXCHANGE)
@ -92,7 +103,7 @@ public class DeliverFinishReportListener implements ReportService {
}
public void calculateTripCost(String trainNumber, String deliveryKindParam) {
public Map<String, TrunklineWaybillOrderEntity> calculateTripCost(String trainNumber, String deliveryKindParam) {
// 根据车次查询出包件明细,然后计算对应的成本
List<QualityDeliverEntity> entities = qualityDeliverService.list(Wrappers.<QualityDeliverEntity>lambdaQuery()
.eq(QualityDeliverEntity::getSignTrainNumber, trainNumber)
@ -142,7 +153,7 @@ public class DeliverFinishReportListener implements ReportService {
for (QualityDeliverEntity qualityDeliverEntity : value) {
QualityDeliverEntity entity = new QualityDeliverEntity();
entity.setId(qualityDeliverEntity.getId());
if(ObjectUtil.isEmpty(entity.getCarComplateTime())){
if(ObjectUtil.isEmpty(qualityDeliverEntity.getCarComplateTime())){
entity.setCarComplateTime(new Date());
}
entity.setOrderCode(qualityDeliverEntity.getOrderCode());
@ -381,6 +392,7 @@ public class DeliverFinishReportListener implements ReportService {
String key = allEntry.getKey();
lastCode = key;
if (StrUtil.isNotEmpty(allEntry.getValue())) {
log.info("公里数成本 总公里数:{},{}",key, allEntry.getValue());
total = NumberUtil.add(total, new BigDecimal(allEntry.getValue()));
}
}
@ -391,6 +403,7 @@ public class DeliverFinishReportListener implements ReportService {
if (CollUtil.isNotEmpty(firstRouteMap)) {
String s = firstRouteMap.get(lastCode);
if (StrUtil.isNotEmpty(s)) {
log.info("公里数成本 返程公里数:{}", s);
total = total.add(new BigDecimal(s));
}
}
@ -908,23 +921,13 @@ public class DeliverFinishReportListener implements ReportService {
waybillOrderMap.put(key, waybillOrderEntity);
}
}
// 生成订单 发送延时消息生成报表
if (CollUtil.isNotEmpty(waybillOrderMap)) {
for (Map.Entry<String, TrunklineWaybillOrderEntity> entityEntry : waybillOrderMap.entrySet()) {
factoryDataClient.sendMessage(SendMsg.builder()
.exchange(ReportConstants.REPORT_EXPENSE_ORDER_EXCHANGE)
.routingKey(ReportConstants.REPORT_EXPENSE_ORDER_ROUTINGKEY)
.message(JSONUtil.toJsonStr(entityEntry.getValue()))
.delay(10000)
.build());
}
}
return waybillOrderMap;
}
}
}
}
}
return null;
}
private static BigDecimal buildDisCost(QualityDeliverEntity entity, ExpenseDispatchPriceCategoryVO expenseDispatchPriceCategoryVO, QualityDeliverEntity entity1, BigDecimal totalFreight) {
@ -1036,6 +1039,7 @@ public class DeliverFinishReportListener implements ReportService {
private static void buildKilometerCost(ExpenseDispatchPriceVO priceVO, BigDecimal total, Map<Long, QualityDeliverEntity> valueMap, Integer totalNum) {
String kilometerCost = StrUtil.isEmpty(priceVO.getKilometerCost()) ? "0" : priceVO.getKilometerCost();
BigDecimal mul = NumberUtil.mul(total, new BigDecimal(kilometerCost));
log.info("公里数成本:{},{},{}", kilometerCost, Convert.toStr(total), Convert.toStr(mul));
BigDecimal deliveryFeeSum = BigDecimal.ZERO;
int idex = 0;
int size = valueMap.size();
@ -1097,16 +1101,25 @@ public class DeliverFinishReportListener implements ReportService {
if (StrUtil.isNotEmpty(arrivePositioning)) {
// A-B A-C A-D 仓库为起点到每一个点的距离
Long first = GaoDeApiUtil.measureDistance(firstPositioning, arrivePositioning);
log.info("点位计算结果 first:{}", first);
firstRouteMap.put(value1.getSignReservationCode(), Convert.toStr(ObjectUtil.isNotEmpty(first) ? NumberUtil.div(new BigDecimal(first), 1000) : 0L / 1000));
if (StrUtil.isEmpty(beforePositioning)) {
beforePositioning = firstPositioning;
}
// 等500毫秒再次调用
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
// A-B B-C C-D 每一个点为起点到下一个点的距离
Long distance = GaoDeApiUtil.measureDistance(beforePositioning, arrivePositioning);
log.info("点位计算结果 distance:{}", distance);
String str = Convert.toStr(ObjectUtil.isNotEmpty(distance) ? NumberUtil.div(new BigDecimal(distance), 1000) : 0L / 1000);
// 获取上一个点位的总距离
reduce = NumberUtil.add(reduce, new BigDecimal(str));
allRouteMap.put(value1.getSignReservationCode(), Convert.toStr(reduce));
// reduce = NumberUtil.add(reduce, new BigDecimal(str));
// allRouteMap.put(value1.getSignReservationCode(), Convert.toStr(reduce));
allRouteMap.put(value1.getSignReservationCode(), str);
beforePositioning = arrivePositioning;
}
}

7
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/job/ExpenseJob.java

@ -144,7 +144,11 @@ public class ExpenseJob {
if (CollUtil.isNotEmpty(qualityDeliverEntities)) {
for (QualityDeliverEntity entity : qualityDeliverEntities) {
if (StrUtil.isEmpty(entity.getOrderCode()) || StrUtil.isEmpty(entity.getWaybillNumber())) {
log.info("订单或运单为空,不生成订单总成本报表:id = {}", entity.getId());
log.info("dayWarehouseExpenseJob 订单或运单为空,不生成订单总成本报表:id = {}", entity.getId());
continue;
}
if (ObjectUtil.isEmpty(entity.getSignNum())) {
log.info("dayWarehouseExpenseJob 签收数量为空:{}, {}", entity.getOrderCode(), entity.getWaybillNumber());
continue;
}
String key = entity.getOrderCode() + entity.getWaybillNumber();
@ -367,6 +371,7 @@ public class ExpenseJob {
//
return ReturnT.SUCCESS;
}
/**
* 月度配送成本报表
*

13
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/listener/mq/WaybillCheckListener.java

@ -202,8 +202,12 @@ public class WaybillCheckListener {
Integer serviceType = waybillEntity.getServiceType();
BasicdataClientEntity basicdataClient = basicdataClientClient.findEntityById(consigneeId);
if(!Objects.isNull(basicdataClient)){
serviceType=basicdataClient.getTypeService();
Integer typeService = basicdataClient.getTypeService();
if(!Objects.isNull(typeService)){
serviceType=basicdataClient.getTypeService();
}
}
String payWay = waybillEntity.getPayWay();
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId();
String departureWarehouseName = waybillEntity.getDepartureWarehouseName();
@ -492,8 +496,13 @@ public class WaybillCheckListener {
Integer serviceType = waybillEntity.getServiceType();
BasicdataClientEntity basicdataClient = basicdataClientClient.findEntityById(consigneeId);
if(!Objects.isNull(basicdataClient)){
serviceType=basicdataClient.getTypeService();
Integer typeService = basicdataClient.getTypeService();
if(!Objects.isNull(typeService)){
serviceType=basicdataClient.getTypeService();
}
}
String payWay = waybillEntity.getPayWay();
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId();
String departureWarehouseName = waybillEntity.getDepartureWarehouseName();

27
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/controller/OpenOrderController.java

@ -1966,4 +1966,31 @@ public class OpenOrderController {
}
@ResponseBody
@PostMapping("/findZeroWaybillLabelInfo")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "查询零担运单标签信息", notes = "传入openOrderDTO")
public R findZeroWaybillLabelInfo(@RequestBody OpenOrderDTO openOrderDTO) {
String method = "############findZeroWaybillLabelInfo: ";
log.info(method + "请求参数{}", openOrderDTO);
String waybillNo = openOrderDTO.getWaybillNo();
try {
if (StringUtil.isBlank(waybillNo)) {
log.warn(method + "运单号不能为空 waybillNo={}", waybillNo);
return R.fail(405, "运单号不能为空");
}
return openOrderService.findZeroWaybillLabelInfo(openOrderDTO);
} catch (CustomerException e) {
log.error(e.message, e);
return R.fail(e.code, e.message);
} catch (Exception e) {
log.error(method + "系统异常", e);
return R.fail(500, "系统异常");
}
}
}

6
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml

@ -320,6 +320,12 @@
<if test="param.isTransfer != null and param.isTransfer == 0" >
and ldpl.is_transfer = 1
</if>
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0">
and ldpl.accept_warehouse_id in
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
group by ldpl.order_code,
ldpl.waybill_id,
ldpl.waybill_number,

3
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/IOpenOrderService.java

@ -113,5 +113,8 @@ public interface IOpenOrderService {
void patchCheckWaybill(String waybillNo);
R findZeroWaybillLabelInfo(OpenOrderDTO openOrderDTO) throws Exception;
// R findWaybillInfo(String waybillNo);
}

247
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderServiceImpl.java

@ -12,7 +12,9 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.logpm.basic.entity.BasicMaterialEntity;
import com.logpm.basic.entity.BasicPrintTemplateEntity;
import com.logpm.basic.feign.IBasicMaterialClient;
import com.logpm.basic.feign.IBasicPrintTemplateClient;
import com.logpm.basicdata.entity.*;
import com.logpm.basicdata.feign.*;
import com.logpm.basicdata.vo.BasicdataClientVO;
@ -54,6 +56,7 @@ import org.springblade.common.constant.IncomingTypeEnum;
import org.springblade.common.constant.WorkNodeEnums;
import org.springblade.common.constant.broadcast.FanoutConstants;
import org.springblade.common.constant.order.*;
import org.springblade.common.constant.printTemplate.PrintTemplateStatusConstant;
import org.springblade.common.enums.BizOperationEnums;
import org.springblade.common.enums.PackageTypeEnums;
import org.springblade.common.exception.CustomerException;
@ -61,6 +64,8 @@ import org.springblade.common.model.FanoutMsg;
import org.springblade.common.model.NodeFanoutMsg;
import org.springblade.common.model.PackageData;
import org.springblade.common.utils.CommonUtil;
import org.springblade.common.utils.QRCodeUtil;
import org.springblade.common.utils.TemplateUtil;
import org.springblade.core.redis.cache.BladeRedis;
import org.springblade.core.secure.utils.AuthUtil;
import org.springblade.core.tool.api.R;
@ -76,6 +81,7 @@ import org.springframework.web.multipart.MultipartFile;
import java.io.IOException;
import java.io.InputStream;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.*;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.atomic.AtomicReference;
@ -128,6 +134,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
private final IWarehouseWaybillAbolishClient waybillAbolishClient;
private final IWarehouseWaybillDetailAbolishClient waybillDetailAbolishClient;
private final IPackageTrackLogAsyncService packageTrackLogAsyncService;
private final IBasicPrintTemplateClient basicPrintTemplateClient;
@Override
@ -228,6 +235,64 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
}
@Override
public R findZeroWaybillLabelInfo(OpenOrderDTO openOrderDTO) throws Exception {
String waybillNo = openOrderDTO.getWaybillNo();
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo);
if(Objects.isNull(waybillEntity)){
log.warn("################findZeroWaybillLabelInfo: 运单信息不存在 waybillNo={}",waybillNo);
return R.fail(405,"运单信息不存在");
}
List<WarehouseWayBillDetail> wayBillDetailList = warehouseWaybillDetailClient.findListByWaybillNo(waybillNo);
BasicPrintTemplateEntity template = basicPrintTemplateClient.getPrintTemplate(PrintTemplateStatusConstant.zero_label_18 .getValue());
if (org.springblade.core.tool.utils.ObjectUtil.isEmpty(template)) {
log.warn("################findZeroWaybillLabelInfo: 未找到模版 waybillNo={}",waybillNo);
return R.fail(405,"未找到模版");
}
String html = TemplateUtil.getTemplateByUrl(template.getTemplateUrl());
Map<String,Object> map = new HashMap<>();
map.put("waybillNo",waybillNo);
map.put("orderNo",waybillEntity.getOrderNo());
map.put("createDate",CommonUtil.dateToStringGeneral(waybillEntity.getCreateTime()));
map.put("departureWarehouseName",waybillEntity.getDepartureWarehouseName());
map.put("destinationWarehouseName",waybillEntity.getDestinationWarehouseName());
map.put("destination",waybillEntity.getDestination());
map.put("departure",waybillEntity.getDeparture());
map.put("totalCount",waybillEntity.getTotalCount());
map.put("totalWeight",waybillEntity.getTotalWeight());
map.put("total_volume",waybillEntity.getTotalVolume());
map.put("shipper",waybillEntity.getShipper());
map.put("shipperName",waybillEntity.getShipperName());
map.put("shipperMobile",waybillEntity.getShipperMobile());
map.put("shipperAddress",waybillEntity.getShipperAddress());
map.put("consignee",waybillEntity.getConsignee());
map.put("consigneeName",waybillEntity.getConsigneeName());
map.put("consigneeMobile",waybillEntity.getConsigneeMobile());
map.put("consigneeAddress",waybillEntity.getConsigneeAddress());
String fileTypeName = QRCodeUtil.createCodeToFile(waybillNo);
String image = QRCodeUtil.getEmpAutograph(fileTypeName);
map.put("waybillNoCode",image);
map.put("delivery_way",DictBizCache.getValue(DictBizConstant.OPEN_ORDER_DELIVERY_WAY,waybillEntity.getDeliveryWay()));
map.put("waybillNoCode",image);
List<Map<String,Object>> detailList = new ArrayList<>();
wayBillDetailList.forEach(item->{
Map<String,Object> m = new HashMap<>();
m.put("productName",item.getProductName());
m.put("num",item.getNum());
detailList.add(m);
});
map.put("detailList",detailList);
map.put("template",html);
return R.data(map);
}
@Override
public List<TrunklineAdvanceDetailVO> findAdvanceDetailList(Long advanceId) {
return advanceDetailService.findList(advanceId);
@ -672,6 +737,10 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
waybillEntity.setServiceType(1);
}
Integer serviceType = waybillEntity.getServiceType();
if(Objects.isNull(serviceType)){
waybillEntity.setServiceType(1);
}
waybillEntity.setDestination(openOrderDTO.getDestination());
waybillEntity.setDestinationCode(openOrderDTO.getDestinationCode());
@ -778,12 +847,30 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
warehouseWayBillDetail.setIsDeleted(0);
warehouseWayBillDetail.setProductId(goodsId);
warehouseWayBillDetail.setProductName(goodsName);
warehouseWayBillDetail.setNum(waybillDetailDTO.getNum());
warehouseWayBillDetail.setVolume(waybillDetailDTO.getVolume());
warehouseWayBillDetail.setWeight(waybillDetailDTO.getWeight());
warehouseWayBillDetail.setPrice(waybillDetailDTO.getPrice());
warehouseWayBillDetail.setSubtotalFreight(waybillDetailDTO.getSubtotalFreight());
warehouseWayBillDetail.setChargeType(waybillDetailDTO.getChargeType());
Integer num = waybillDetailDTO.getNum();
BigDecimal volume = waybillDetailDTO.getVolume();
BigDecimal weight = waybillDetailDTO.getWeight();
warehouseWayBillDetail.setNum(num);
warehouseWayBillDetail.setVolume(volume);
warehouseWayBillDetail.setWeight(weight);
BigDecimal price = waybillDetailDTO.getPrice();
Integer chargeType = waybillDetailDTO.getChargeType();
BigDecimal subtotalFreight = waybillDetailDTO.getSubtotalFreight();
if(price.compareTo(BigDecimal.ZERO) == 0){
if(chargeType.equals(1)){
price = subtotalFreight.divide(new BigDecimal(num),6, RoundingMode.HALF_UP);
}else if(chargeType.equals(2)){
price = subtotalFreight.divide(volume,6, RoundingMode.HALF_UP);
}else if(chargeType.equals(3)){
price = subtotalFreight.divide(weight,6, RoundingMode.HALF_UP);
}
}
warehouseWayBillDetail.setPrice(price);
warehouseWayBillDetail.setSubtotalFreight(subtotalFreight);
warehouseWayBillDetail.setChargeType(chargeType);
warehouseWayBillDetail.setDeliveryPrice(waybillDetailDTO.getDeliveryPrice());
warehouseWayBillDetail.setSubtotalDeliveryFee(waybillDetailDTO.getSubtotalDeliveryFee());
warehouseWayBillDetail.setPickupPrice(waybillDetailDTO.getPickupPrice());
@ -902,20 +989,38 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
//根据订单id获取每个订单的运单拼接数据
if (!stockArticleIds.isEmpty()) {
List<DistributionStockArticleEntity> stockArticleEntities = distributionStockArticleClient.findWaybillNoByOrderIds(stockArticleIds);
List<Long> newList = new ArrayList<>(stockArticleIds);
List<DistributionStockArticleEntity> stockArticleEntities = distributionStockArticleClient.findStockListByIds(newList);
// List<DistributionStockArticleEntity> stockArticleEntities = distributionStockArticleClient.findWaybillNoByOrderIds(stockArticleIds);
List<DistributionStockArticleEntity> updateStockArticleList = new ArrayList<>();
stockArticleEntities.forEach(stockArticleEntity -> {
stockArticleEntity.setMallId(consigneeId1);
stockArticleEntity.setMallCode(basicdataClientEntity.getClientCode());
stockArticleEntity.setMallName(basicdataClientEntity.getClientName());
stockArticleEntity.setTypeService(basicdataClientEntity.getTypeService() + "");
stockArticleEntity.setConsigneePerson(waybillEntity.getConsigneeName());
stockArticleEntity.setConsigneeMobile(waybillEntity.getConsigneeMobile());
stockArticleEntity.setConsigneeAddress(waybillEntity.getConsigneeAddress());
stockArticleEntity.setConsigneeUnit(basicdataClientEntity.getClientName());
String waybillNumber = stockArticleEntity.getWaybillNumber();
DistributionStockArticleEntity updateEntity = new DistributionStockArticleEntity();
updateEntity.setId(stockArticleEntity.getId());
if(StringUtil.isBlank(waybillNumber)){
updateEntity.setWaybillNumber(finalWaybillNo);
}else{
if(!waybillNumber.contains(finalWaybillNo)){
waybillNumber = waybillNumber + "," + finalWaybillNo;
updateEntity.setWaybillNumber(waybillNumber);
}
}
updateEntity.setMallId(consigneeId1);
updateEntity.setMallCode(basicdataClientEntity.getClientCode());
updateEntity.setMallName(basicdataClientEntity.getClientName());
updateEntity.setTypeService(basicdataClientEntity.getTypeService() + "");
updateEntity.setConsigneePerson(waybillEntity.getConsigneeName());
updateEntity.setConsigneeMobile(waybillEntity.getConsigneeMobile());
updateEntity.setConsigneeAddress(waybillEntity.getConsigneeAddress());
updateEntity.setConsigneeUnit(basicdataClientEntity.getClientName());
updateStockArticleList.add(updateEntity);
});
if (CollUtil.isNotEmpty(stockArticleEntities)) {
distributionStockArticleClient.updateByBatchId(stockArticleEntities);
if (CollUtil.isNotEmpty(updateStockArticleList)) {
distributionStockArticleClient.updateByBatchId(updateStockArticleList);
}
}
@ -1052,6 +1157,10 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
waybillEntity.setServiceType(1);
}
Integer serviceType = waybillEntity.getServiceType();
if(Objects.isNull(serviceType)){
waybillEntity.setServiceType(1);
}
waybillEntity.setDestination(openOrderDTO.getDestination());
waybillEntity.setDestinationCode(openOrderDTO.getDestinationCode());
@ -1147,12 +1256,29 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
}
warehouseWayBillDetail.setProductId(goodsId);
warehouseWayBillDetail.setProductName(goodsName);
warehouseWayBillDetail.setNum(waybillDetailDTO.getNum());
warehouseWayBillDetail.setVolume(waybillDetailDTO.getVolume());
warehouseWayBillDetail.setWeight(waybillDetailDTO.getWeight());
warehouseWayBillDetail.setPrice(waybillDetailDTO.getPrice());
warehouseWayBillDetail.setSubtotalFreight(waybillDetailDTO.getSubtotalFreight());
warehouseWayBillDetail.setChargeType(waybillDetailDTO.getChargeType());
Integer num = waybillDetailDTO.getNum();
BigDecimal volume = waybillDetailDTO.getVolume();
BigDecimal weight = waybillDetailDTO.getWeight();
warehouseWayBillDetail.setNum(num);
warehouseWayBillDetail.setVolume(volume);
warehouseWayBillDetail.setWeight(weight);
BigDecimal price = waybillDetailDTO.getPrice();
Integer chargeType = waybillDetailDTO.getChargeType();
BigDecimal subtotalFreight = waybillDetailDTO.getSubtotalFreight();
if(price.compareTo(BigDecimal.ZERO) == 0){
if(chargeType.equals(1)){
price = subtotalFreight.divide(new BigDecimal(num),6, RoundingMode.HALF_UP);
}else if(chargeType.equals(2)){
price = subtotalFreight.divide(volume,6, RoundingMode.HALF_UP);
}else if(chargeType.equals(3)){
price = subtotalFreight.divide(weight,6, RoundingMode.HALF_UP);
}
}
warehouseWayBillDetail.setPrice(price);
warehouseWayBillDetail.setSubtotalFreight(subtotalFreight);
warehouseWayBillDetail.setChargeType(chargeType);
warehouseWayBillDetail.setDeliveryPrice(waybillDetailDTO.getDeliveryPrice());
warehouseWayBillDetail.setSubtotalDeliveryFee(waybillDetailDTO.getSubtotalDeliveryFee());
warehouseWayBillDetail.setPickupPrice(waybillDetailDTO.getPickupPrice());
@ -1216,6 +1342,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
Map<String, Object> map = new HashMap<>();
map.put("waybillId", waybillId);
map.put("waybillNo", waybillNo);
return R.data(map);
}
@ -5614,14 +5741,50 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
WarehouseWayBillDetail warehouseWayBillDetail = new WarehouseWayBillDetail();
warehouseWayBillDetail.setWaybillNo(waybillEntity.getWaybillNo());
warehouseWayBillDetail.setWaybillId(waybillEntity.getId());
warehouseWayBillDetail.setProductId(waybillDetailDTO.getGoodsId());
Long goodsId = waybillDetailDTO.getGoodsId();
if (Objects.isNull(goodsId)) {
//如果品名id没有就先通过goodsName查寻,没有就新增
BasicdataCategoryEntity basicdataCategoryEntity = basicdataCategoryClient.findByName(goodsName);
if (Objects.isNull(basicdataCategoryEntity)) {
basicdataCategoryEntity = new BasicdataCategoryEntity();
basicdataCategoryEntity.setName(goodsName);
basicdataCategoryEntity.setType("1");
goodsId = basicdataCategoryClient.addReturnId(basicdataCategoryEntity);
} else {
goodsId = basicdataCategoryEntity.getId();
}
}
warehouseWayBillDetail.setProductId(goodsId);
warehouseWayBillDetail.setProductName(waybillDetailDTO.getGoodsName());
Integer num = waybillDetailDTO.getNum();
BigDecimal volume = waybillDetailDTO.getVolume();
BigDecimal weight = waybillDetailDTO.getWeight();
warehouseWayBillDetail.setNum(num);
warehouseWayBillDetail.setVolume(volume);
warehouseWayBillDetail.setWeight(weight);
BigDecimal price = waybillDetailDTO.getPrice();
Integer chargeType = waybillDetailDTO.getChargeType();
BigDecimal subtotalFreight = waybillDetailDTO.getSubtotalFreight();
if(price.compareTo(BigDecimal.ZERO) == 0){
if(chargeType.equals(1)){
price = subtotalFreight.divide(new BigDecimal(num),6, RoundingMode.HALF_UP);
}else if(chargeType.equals(2)){
price = subtotalFreight.divide(volume,6, RoundingMode.HALF_UP);
}else if(chargeType.equals(3)){
price = subtotalFreight.divide(weight,6, RoundingMode.HALF_UP);
}
}
warehouseWayBillDetail.setPrice(price);
warehouseWayBillDetail.setSubtotalFreight(subtotalFreight);
warehouseWayBillDetail.setChargeType(waybillDetailDTO.getChargeType());
warehouseWayBillDetail.setNum(waybillDetailDTO.getNum());
warehouseWayBillDetail.setVolume(waybillDetailDTO.getVolume());
warehouseWayBillDetail.setWeight(waybillDetailDTO.getWeight());
warehouseWayBillDetail.setPrice(waybillDetailDTO.getPrice());
warehouseWayBillDetail.setSubtotalFreight(waybillDetailDTO.getSubtotalFreight());
warehouseWayBillDetail.setDeliveryPrice(waybillDetailDTO.getDeliveryPrice());
warehouseWayBillDetail.setSubtotalDeliveryFee(waybillDetailDTO.getSubtotalDeliveryFee());
warehouseWayBillDetail.setPickupPrice(waybillDetailDTO.getPickupPrice());
warehouseWayBillDetail.setFreightPrice(waybillDetailDTO.getFreightPrice());
warehouseWayBillDetail.setSystemChargeType(waybillDetailDTO.getChargeType());
@ -5674,12 +5837,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
warehouseWayBillDetail.setWeight(newWeight);
}
BigDecimal newPrice = waybillDetailDTO.getPrice();
BigDecimal price = warehouseWayBillDetail.getPrice();
if (price.compareTo(newPrice) != 0) {
stringBuilder.append("明细更新:").append(warehouseWayBillDetail.getProductName()).append(" 单价修改").append(price).append("-->").append(newPrice).append(";");
warehouseWayBillDetail.setPrice(newPrice);
}
Integer newChargeType = waybillDetailDTO.getChargeType();
Integer chargeType = warehouseWayBillDetail.getChargeType();
@ -5695,6 +5853,25 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
warehouseWayBillDetail.setSubtotalFreight(newSubtotalFreight);
}
BigDecimal newPrice = waybillDetailDTO.getPrice();
if(newPrice.compareTo(BigDecimal.ZERO) == 0){
if(chargeType.equals(1)){
newPrice = newSubtotalFreight.divide(new BigDecimal(newNum),6, RoundingMode.HALF_UP);
}else if(chargeType.equals(2)){
newPrice = newSubtotalFreight.divide(newVolume,6, RoundingMode.HALF_UP);
}else if(chargeType.equals(3)){
newPrice = newSubtotalFreight.divide(newWeight,6, RoundingMode.HALF_UP);
}
}
BigDecimal price = warehouseWayBillDetail.getPrice();
if (price.compareTo(newPrice) != 0) {
stringBuilder.append("明细更新:").append(warehouseWayBillDetail.getProductName()).append(" 单价修改").append(price).append("-->").append(newPrice).append(";");
warehouseWayBillDetail.setPrice(newPrice);
}
warehouseWayBillDetail.setDeliveryPrice(waybillDetailDTO.getDeliveryPrice());
warehouseWayBillDetail.setSubtotalDeliveryFee(waybillDetailDTO.getSubtotalDeliveryFee());
warehouseWayBillDetail.setPickupPrice(waybillDetailDTO.getPickupPrice());

2
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineBillladingServiceImpl.java

@ -435,6 +435,8 @@ public class TrunklineBillladingServiceImpl extends BaseServiceImpl<TrunklineBil
updateEntity.setBillladingStatus(billladingEntity.getBillladingStatus());
updateEntity.setEndTime(billladingEntity.getEndTime());
stringBuffer.append(",提货中变更为提货完成");
billladingWaybillService.updateBillladingFeeByBillladingId(billladingEntity);
} else {
log.warn("##################updateBillladingStatus: 提货单不能更新为已完成 billladingStatus={}", billladingStatus);
throw new CustomerException(405, "提货单不能更新为已完成");

Loading…
Cancel
Save