Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-performance
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
姜武杰
clx-performance
Commits
4987dbb3
提交
4987dbb3
authored
10月 23, 2024
作者:
刘海泉
1
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/v29.7_pending_freight_20241017' into test_jdk17
上级
ed17bf8b
0a2c71c8
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
18 行增加
和
14 行删除
+18
-14
PendingFreightServiceImpl.java
...x/performance/service/impl/PendingFreightServiceImpl.java
+18
-14
没有找到文件。
clx-performance-web/src/main/java/com/clx/performance/service/impl/PendingFreightServiceImpl.java
浏览文件 @
4987dbb3
...
...
@@ -99,16 +99,6 @@ public class PendingFreightServiceImpl implements PendingFreightService {
pendingFreight
.
setOrderDistance
(
calcOrderDistance
(
sendAddress
,
receiveAddress
,
data
.
getOrderNo
()));
}
//计算线路历史挂单运费
BigDecimal
historyFreight
=
this
.
queryLinePendingFreight
(
data
.
getSendAddressId
(),
data
.
getReveiveAddressId
());
//计算线路历史平均挂单运费
BigDecimal
historyAvgFreight
=
this
.
queryLineAvgPendingFreight
(
data
.
getSendAddressId
(),
data
.
getReveiveAddressId
());
pendingFreight
.
setHistoryFreight
(
historyFreight
);
pendingFreight
.
setHistoryAvgFreight
(
historyAvgFreight
);
pendingFreightDao
.
updateEntityByKey
(
pendingFreight
);
}
else
{
item
.
setOrderNo
(
data
.
getOrderNo
());
...
...
@@ -121,6 +111,16 @@ public class PendingFreightServiceImpl implements PendingFreightService {
sendAddress
.
getCity
(),
sendAddress
.
getCounty
(),
sendAddress
.
getAddress
()));
//计算重车运距
item
.
setOrderDistance
(
calcOrderDistance
(
sendAddress
,
receiveAddress
,
data
.
getOrderNo
()));
//计算线路历史挂单运费
BigDecimal
historyFreight
=
this
.
queryLinePendingFreight
(
data
.
getSendAddressId
(),
data
.
getReveiveAddressId
());
//计算线路历史平均挂单运费
BigDecimal
historyAvgFreight
=
this
.
queryLineAvgPendingFreight
(
data
.
getSendAddressId
(),
data
.
getReveiveAddressId
());
item
.
setHistoryFreight
(
historyFreight
);
item
.
setHistoryAvgFreight
(
historyAvgFreight
);
pendingFreightDao
.
saveEntity
(
item
);
}
}
...
...
@@ -159,8 +159,12 @@ public class PendingFreightServiceImpl implements PendingFreightService {
//查询该线路最新的历史运费
public
BigDecimal
queryLinePendingFreight
(
Integer
sendAddressId
,
Integer
receiveAddressId
){
OrderGoods
orderGoods
=
orderGoodsDao
.
queryLineNewestPendingFreight
(
sendAddressId
,
receiveAddressId
);
if
(
Objects
.
nonNull
(
orderGoods
)){
return
orderGoods
.
getPendingOrderFreight
();
}
return
BigDecimal
.
ZERO
;
}
//查询该线路最新的历史平均运费
...
...
@@ -170,7 +174,7 @@ public class PendingFreightServiceImpl implements PendingFreightService {
List
<
OrderGoods
>
list
=
orderGoodsDao
.
queryLineAvgPendingFreight
(
sendAddressId
,
receiveAddressId
,
monthAgo
,
now
);
if
(
CollectionUtils
.
isEmpty
(
list
)){
return
null
;
return
BigDecimal
.
ZERO
;
}
BigDecimal
total
=
BigDecimal
.
ZERO
;
for
(
OrderGoods
orderGoods
:
list
)
{
...
...
@@ -309,9 +313,9 @@ public class PendingFreightServiceImpl implements PendingFreightService {
rowData
.
add
(
new
ExcelData
(
vo
.
getOrderDistance
(),
"-"
));
rowData
.
add
(
new
ExcelData
(
vo
.
getSendAddressExpenses
(),
"-"
));
rowData
.
add
(
new
ExcelData
(
Objects
.
nonNull
(
vo
.
getHistoryFreight
())?
vo
.
getHistoryFreight
().
movePointLeft
(
2
):
null
,
"-"
));
rowData
.
add
(
new
ExcelData
(
Objects
.
nonNull
(
vo
.
getHistoryAvgFreight
())?
vo
.
getHistoryFreight
().
movePointLeft
(
2
):
null
,
"-"
));
rowData
.
add
(
new
ExcelData
(
Objects
.
nonNull
(
vo
.
getPredictionFreightPrice
())?
vo
.
get
HistoryFreight
().
movePointLeft
(
2
):
null
,
"-"
));
rowData
.
add
(
new
ExcelData
(
Objects
.
nonNull
(
vo
.
getLogisticsFreight
())?
vo
.
get
History
Freight
().
movePointLeft
(
2
):
null
,
"-"
));
rowData
.
add
(
new
ExcelData
(
Objects
.
nonNull
(
vo
.
getHistoryAvgFreight
())?
vo
.
getHistory
Avg
Freight
().
movePointLeft
(
2
):
null
,
"-"
));
rowData
.
add
(
new
ExcelData
(
Objects
.
nonNull
(
vo
.
getPredictionFreightPrice
())?
vo
.
get
PredictionFreightPrice
().
movePointLeft
(
2
):
null
,
"-"
));
rowData
.
add
(
new
ExcelData
(
Objects
.
nonNull
(
vo
.
getLogisticsFreight
())?
vo
.
get
Logistics
Freight
().
movePointLeft
(
2
):
null
,
"-"
));
rowData
.
add
(
new
ExcelData
(
""
));
dataList
.
add
(
rowData
);
}
...
...
刘海泉
@liuhaiquan
被提及 commit
a8c8bef4
·
11月 12, 2024
被提及 commit
a8c8bef4
被提及 commit a8c8bef4d5dae9d4a861e0c9f19f6f477b126fec
切换提交列表
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论