|
@@ -17,14 +17,14 @@ public class DocumentByOrderExcelCellMergeStrategy extends AbstractMergeStrategy
|
|
|
private final int mergeRowIndex = 2;
|
|
|
|
|
|
// sku需要合并的列
|
|
|
- private final List<Integer> skuColIndex = Arrays.asList(3, 4, 5, 16, 17, 18, 19);
|
|
|
+ private final List<Integer> skuColIndex = Arrays.asList(3, 4, 5, 16, 17);
|
|
|
// sku无需合并的行
|
|
|
private final List<Integer> skuRowIndex = new ArrayList<>();
|
|
|
|
|
|
+ // 订单需要合并的列
|
|
|
+ private final List<Integer> orderColIndex = Arrays.asList(0, 1, 2, 18, 19);
|
|
|
// 订单无需合并的行
|
|
|
private final List<Integer> orderRowIndex = new ArrayList<>();
|
|
|
- // 订单需要合并的列
|
|
|
- private final List<Integer> orderColIndex = Arrays.asList(0, 1, 2, 20, 21);
|
|
|
|
|
|
public DocumentByOrderExcelCellMergeStrategy(List<DocumentByOrderVo> documentByOrderVoList) {
|
|
|
for (DocumentByOrderVo documentByOrderVo : documentByOrderVoList) {
|