提交 8e4e0065 authored 作者: douxy's avatar douxy

增加店内执行计划导出/入功能: 1.增加备注字段的导入导出功能的适应

上级 b51ddb64
...@@ -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
...@@ -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;
} }
...@@ -84,4 +84,11 @@ public class SalesApDisplayVo { ...@@ -84,4 +84,11 @@ public class SalesApDisplayVo {
* 执行与计划不一致:未执行 * 执行与计划不一致:未执行
*/ */
private String hangingStripExecuted; private String hangingStripExecuted;
/**
* 备注信息
*
* 计划与执行不一致时的原因(不必要填写)
*/
private String remark ;
} }
...@@ -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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论