Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-performance
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
姜武杰
clx-performance
Commits
e65d0d45
提交
e65d0d45
authored
8月 14, 2024
作者:
杨启发
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
结算单优化
上级
8bd93a60
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
21 行增加
和
5 行删除
+21
-5
InvoiceDataListener.java
...m/clx/performance/listener/excel/InvoiceDataListener.java
+16
-0
SettlementDriverServiceImpl.java
...ance/service/impl/settle/SettlementDriverServiceImpl.java
+5
-5
没有找到文件。
performance-web/src/main/java/com/clx/performance/listener/excel/InvoiceDataListener.java
浏览文件 @
e65d0d45
...
...
@@ -7,12 +7,15 @@ import com.clx.performance.dao.settle.SettlementOwnerDetailDao;
import
com.clx.performance.dto.excel.InvoiceData
;
import
com.clx.performance.model.settle.SettlementOwnerDetail
;
import
com.clx.performance.param.pc.owner.PageInvoiceOwnerSettlementOwnerDetailParam
;
import
com.msl.common.exception.ServiceSystemException
;
import
lombok.AllArgsConstructor
;
import
org.springframework.util.CollectionUtils
;
import
java.math.BigDecimal
;
import
java.util.List
;
import
java.util.Map
;
import
static
com
.
clx
.
performance
.
enums
.
PerformanceResultEnum
.
DATA_NOT_FIND
;
import
static
com
.
clx
.
performance
.
enums
.
settle
.
SettlementOwnerDetailEnum
.
InvoiceStatus
.
NO
;
import
static
com
.
clx
.
performance
.
enums
.
settle
.
SettlementOwnerEnum
.
InvoiceType
.
ORDINARY
;
...
...
@@ -49,5 +52,18 @@ public class InvoiceDataListener extends AnalysisEventListener<InvoiceData> {
// 解析完成后调用
// 可在此进行后续操作,如保存数据到数据库
}
@Override
public
void
invokeHeadMap
(
Map
<
Integer
,
String
>
headMap
,
AnalysisContext
context
)
{
// 解析表头时调用
// 可在此进行表头校验等操作
//模板有3列,模板第1列是运单编号,第2列是开票标识,第3列是开票金额,校验上传的Excel是否是这个模板
if
(
headMap
.
size
()
!=
3
)
{
throw
new
ServiceSystemException
(
DATA_NOT_FIND
,
"上传文件格式错误"
);
}
if
(!
headMap
.
get
(
0
).
equals
(
"运单编号"
)
||
!
headMap
.
get
(
1
).
equals
(
"开票标识"
)
||
!
headMap
.
get
(
2
).
equals
(
"开票金额"
))
{
throw
new
ServiceSystemException
(
DATA_NOT_FIND
,
"上传文件格式错误"
);
}
}
}
performance-web/src/main/java/com/clx/performance/service/impl/settle/SettlementDriverServiceImpl.java
浏览文件 @
e65d0d45
...
...
@@ -139,13 +139,13 @@ public class SettlementDriverServiceImpl implements SettlementDriverService {
rowData
.
add
(
new
ExcelData
(
vo
.
getTruckNo
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getInvoiceType
()==
null
?
null
:
SettlementDriverEnum
.
InvoiceType
.
getMsgByCode
(
vo
.
getInvoiceType
())));
rowData
.
add
(
new
ExcelData
(
vo
.
getWeight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getFreightPrice
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getFreightPrice
()
==
null
?
null
:
vo
.
getFreightPrice
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossPrice
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getFreight
()
==
null
?
null
:
vo
.
getFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossPrice
()
==
null
?
null
:
vo
.
getLossPrice
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossWeight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getSettlementFreight
()));
rowData
.
add
(
new
ExcelData
(
vo
.
getLossFreight
()
==
null
?
null
:
vo
.
getLossFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
vo
.
getSettlementFreight
()
==
null
?
null
:
vo
.
getSettlementFreight
().
movePointLeft
(
2
)
));
rowData
.
add
(
new
ExcelData
(
SettlementDriverEnum
.
Status
.
getMsgByCode
(
vo
.
getStatus
())));
rowData
.
add
(
new
ExcelData
(
"-"
));
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论