Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
wangxiaolu-sfa-module-operation
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
sfa
wangxiaolu-sfa-module-operation
Commits
8e4e0065
提交
8e4e0065
authored
12月 15, 2025
作者:
douxy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加店内执行计划导出/入功能: 1.增加备注字段的导入导出功能的适应
上级
b51ddb64
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
20 行增加
和
0 行删除
+20
-0
SalesApDisplay.java
...com/sfa/operation/domain/sales/entity/SalesApDisplay.java
+6
-0
SalesApDisplayImportExcelDto.java
...ration/pojo/sales/excel/SalesApDisplayImportExcelDto.java
+6
-0
SalesApDisplayVo.java
...ava/com/sfa/operation/pojo/sales/vo/SalesApDisplayVo.java
+7
-0
NormalDisplayExportStrategyImpl.java
...trategy/impl/exports/NormalDisplayExportStrategyImpl.java
+1
-0
没有找到文件。
src/main/java/com/sfa/operation/domain/sales/entity/SalesApDisplay.java
浏览文件 @
8e4e0065
...
@@ -382,6 +382,11 @@ public class SalesApDisplay implements Serializable {
...
@@ -382,6 +382,11 @@ public class SalesApDisplay implements Serializable {
*/
*/
private
Date
updateTime
;
private
Date
updateTime
;
/**
* 备注 未执行原因
*/
private
String
remark
;
@TableField
(
exist
=
false
)
@TableField
(
exist
=
false
)
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
}
}
\ No newline at end of file
src/main/java/com/sfa/operation/pojo/sales/excel/SalesApDisplayImportExcelDto.java
浏览文件 @
8e4e0065
...
@@ -160,4 +160,10 @@ public class SalesApDisplayImportExcelDto {
...
@@ -160,4 +160,10 @@ public class SalesApDisplayImportExcelDto {
* 类型:Integer
* 类型:Integer
*/
*/
private
Integer
rowNum
;
private
Integer
rowNum
;
/**
* 备注
* 类型:String
*/
private
String
remark
;
}
}
src/main/java/com/sfa/operation/pojo/sales/vo/SalesApDisplayVo.java
浏览文件 @
8e4e0065
...
@@ -84,4 +84,11 @@ public class SalesApDisplayVo {
...
@@ -84,4 +84,11 @@ public class SalesApDisplayVo {
* 执行与计划不一致:未执行
* 执行与计划不一致:未执行
*/
*/
private
String
hangingStripExecuted
;
private
String
hangingStripExecuted
;
/**
* 备注信息
*
* 计划与执行不一致时的原因(不必要填写)
*/
private
String
remark
;
}
}
src/main/java/com/sfa/operation/strategy/impl/exports/NormalDisplayExportStrategyImpl.java
浏览文件 @
8e4e0065
...
@@ -109,6 +109,7 @@ public class NormalDisplayExportStrategyImpl implements IExportApExcelStrategy {
...
@@ -109,6 +109,7 @@ public class NormalDisplayExportStrategyImpl implements IExportApExcelStrategy {
column
.
add
(
actualMultiDisplay
);
column
.
add
(
actualMultiDisplay
);
column
.
add
(
new
ExportColumnConfig
(
"plannedHangingStripQuantityForm"
,
"挂条数量形式(计划)"
,
""
,
ExcelStyleUtils
.
ExcelStyle
.
UNMODIFIABLE
));
column
.
add
(
new
ExportColumnConfig
(
"plannedHangingStripQuantityForm"
,
"挂条数量形式(计划)"
,
""
,
ExcelStyleUtils
.
ExcelStyle
.
UNMODIFIABLE
));
column
.
add
(
actualHangingStripQuantityForm
);
column
.
add
(
actualHangingStripQuantityForm
);
column
.
add
(
new
ExportColumnConfig
(
"remark"
,
"备注-未执行原因"
,
""
,
ExcelStyleUtils
.
ExcelStyle
.
DEFAULT_STYLE
));
for
(
ExportColumnConfig
exportColumnConfig
:
column
)
{
for
(
ExportColumnConfig
exportColumnConfig
:
column
)
{
System
.
out
.
println
(
exportColumnConfig
.
toString
());
System
.
out
.
println
(
exportColumnConfig
.
toString
());
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论