Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-performance
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
姜武杰
clx-performance
Commits
ebd85edc
提交
ebd85edc
authored
8月 12, 2024
作者:
刘海泉
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/test' into test
上级
291b7d93
f0ab174d
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
19 行增加
和
11 行删除
+19
-11
OrderChildBrokerServiceImpl.java
...ance/service/impl/broker/OrderChildBrokerServiceImpl.java
+2
-1
OrderChildPostServiceImpl.java
...ormance/service/impl/child/OrderChildPostServiceImpl.java
+7
-0
SettlementOwnerDetailServiceImpl.java
...service/impl/settle/SettlementOwnerDetailServiceImpl.java
+10
-10
没有找到文件。
performance-web/src/main/java/com/clx/performance/service/impl/broker/OrderChildBrokerServiceImpl.java
浏览文件 @
ebd85edc
...
...
@@ -262,7 +262,8 @@ public class OrderChildBrokerServiceImpl implements OrderChildBrokerService {
orderChildInfo
.
setPayTime
(
DateUtils
.
formatDateTime
(
orderChild
.
getPayTime
()).
get
());
orderChildInfo
.
setLoadTime
(
DateUtils
.
formatDateTime
(
orderChild
.
getLoadTime
()).
get
());
orderChildInfo
.
setUnloadTime
(
DateUtils
.
formatDateTime
(
orderChild
.
getUnloadTime
()).
get
());
orderChildInfo
.
setPayFinishedTime
(
DateUtils
.
formatDateTime
(
orderChild
.
getConfirmTime
()).
get
());
orderChildInfo
.
setPayFinishedTime
(
orderChild
.
getConfirmTime
()==
null
?
null
:
DateUtils
.
formatDateTime
(
orderChild
.
getConfirmTime
()).
get
());
orderChildInfo
.
setPoundTime
(
DateUtils
.
formatDateTime
(
settlementOwnerDetail
.
getPoundAuditTime
()).
get
());
orderChildInfo
.
setReceiveTare
(
orderChild
.
getUnloadTare
());
...
...
performance-web/src/main/java/com/clx/performance/service/impl/child/OrderChildPostServiceImpl.java
浏览文件 @
ebd85edc
...
...
@@ -10,6 +10,7 @@ import com.clx.performance.param.mq.IntegralOrderChildFinishMqParam;
import
com.clx.performance.service.IntegralMqService
;
import
com.clx.performance.service.OrderChildMqService
;
import
com.clx.performance.service.breakcontract.BreakContractDriverRecordService
;
import
com.clx.performance.service.broker.OrderChildBrokerMqService
;
import
com.clx.performance.service.child.OrderChildPostService
;
import
com.clx.performance.service.settle.SettlementDriverDetailService
;
import
com.clx.performance.service.settle.SettlementMqService
;
...
...
@@ -49,6 +50,9 @@ public class OrderChildPostServiceImpl implements OrderChildPostService {
@Autowired
private
OrderGoodsDao
orderGoodsDao
;
@Autowired
private
OrderChildBrokerMqService
orderChildBrokerMqService
;
@Override
public
void
orderChildAdd
(
String
childNo
)
{
// 发送mq 新增运单
...
...
@@ -85,6 +89,9 @@ public class OrderChildPostServiceImpl implements OrderChildPostService {
// 发送mq 司机确认收货
orderChildMqService
.
orderChildDriverConfirm
(
orderChild
.
getChildNo
());
// 发送mq (更新无车承运)
orderChildBrokerMqService
.
orderChildUpdate
(
orderChild
.
getChildNo
());
}
...
...
performance-web/src/main/java/com/clx/performance/service/impl/settle/SettlementOwnerDetailServiceImpl.java
浏览文件 @
ebd85edc
...
...
@@ -252,7 +252,7 @@ public class SettlementOwnerDetailServiceImpl implements SettlementOwnerDetailS
CountOwnerSettlementOwnerDetailVO
vo
=
new
CountOwnerSettlementOwnerDetailVO
();
vo
.
setOrderChildSum
(
page
.
getTotal
());
vo
.
setLoadNetSum
(
page
.
getRecords
().
stream
().
map
(
SettlementOwnerDetail:
:
getLoadNet
).
filter
(
Objects:
:
nonNull
).
reduce
(
BigDecimal
.
ZERO
,
BigDecimal:
:
add
));
vo
.
setInvoiceFreightSum
(
page
.
getRecords
().
stream
().
map
(
SettlementOwnerDetail:
:
getInvoiceFreight
).
filter
(
Objects:
:
nonNull
).
reduce
(
BigDecimal
.
ZERO
,
BigDecimal:
:
add
));
vo
.
setInvoiceFreightSum
(
page
.
getRecords
().
stream
().
map
(
SettlementOwnerDetail:
:
getInvoiceFreight
).
filter
(
Objects:
:
nonNull
).
reduce
(
BigDecimal
.
ZERO
,
BigDecimal:
:
add
)
.
movePointLeft
(
2
)
);
return
vo
;
}
...
...
@@ -642,18 +642,18 @@ public class SettlementOwnerDetailServiceImpl implements SettlementOwnerDetailS
rowData
.
add
(
new
ExcelData
(
vo
.
getLoadNet
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getUnloadNet
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getWeight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getFreightPrice
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getFreightPrice
()
==
null
?
null
:
vo
.
getFreightPrice
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getFreight
()
==
null
?
null
:
vo
.
getFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossWeight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossPrice
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossPrice
()
==
null
?
null
:
vo
.
getLossPrice
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossFreight
()
==
null
?
null
:
vo
.
getLossFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getInvoiceServiceFeeRate
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getInvoiceServiceFee
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getPrepayFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getLoanFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getSettlementFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getInvoiceFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getInvoiceServiceFee
()
==
null
?
null
:
vo
.
getInvoiceServiceFee
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getPrepayFreight
()
==
null
?
null
:
vo
.
getPrepayFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getLoanFreight
()
==
null
?
null
:
vo
.
getLoanFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getSettlementFreight
()
==
null
?
null
:
vo
.
getSettlementFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getInvoiceFreight
()
==
null
?
null
:
vo
.
getInvoiceFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getOrderNo
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getSettlementNo
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getSettlementSubNo
()));
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论