gongchunyi
9 天以前 e39bddf535c89c9a7fe5789c01a17f92d4e596e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
package com.ruoyi.production;
 
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.ruoyi.basic.mapper.ProductModelMapper;
import com.ruoyi.basic.pojo.ProductModel;
import com.ruoyi.production.mapper.ProductBomMapper;
import com.ruoyi.production.mapper.ProductStructureMapper;
import com.ruoyi.production.pojo.ProductBom;
import com.ruoyi.production.pojo.ProductStructure;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.annotation.Rollback;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.CollectionUtils;
 
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Collectors;
 
/**
 * BOM结构补齐测试。
 */
@SpringBootTest
public class BomStructureCopyTest {
 
    @Autowired
    private ProductModelMapper productModelMapper;
 
    @Autowired
    private ProductBomMapper productBomMapper;
 
    @Autowired
    private ProductStructureMapper productStructureMapper;
 
    @Test
    @Rollback(false)
    @Transactional(rollbackFor = Exception.class)
    public void copyAllProductBomStructureByProductId() {
        List<ProductModel> allProductModels = productModelMapper.selectList(
                Wrappers.<ProductModel>lambdaQuery()
                        .isNotNull(ProductModel::getProductId)
                        .orderByAsc(ProductModel::getProductId)
                        .orderByAsc(ProductModel::getId)
        );
        if (CollectionUtils.isEmpty(allProductModels)) {
            throw new IllegalStateException("未查询到任何产品规格");
        }
 
        Map<Long, List<ProductModel>> productModelGroups = allProductModels.stream()
                .collect(Collectors.groupingBy(ProductModel::getProductId, LinkedHashMap::new, Collectors.toList()));
 
        List<CopySummary> summaries = new ArrayList<>();
        for (Map.Entry<Long, List<ProductModel>> entry : productModelGroups.entrySet()) {
            CopySummary summary = copyBomStructure(entry.getKey(), entry.getValue());
            summaries.add(summary);
            printProductSummary(summary);
        }
 
        printBatchSummary(summaries);
    }
 
    private CopySummary copyBomStructure(Long productId, List<ProductModel> productModels) {
        if (CollectionUtils.isEmpty(productModels)) {
            return CopySummary.skipped(productId, 0, 0, "未查询到产品大类对应的规格");
        }
 
        Map<Long, ProductModel> productModelMap = productModels.stream()
                .collect(Collectors.toMap(ProductModel::getId, item -> item, (left, right) -> left, LinkedHashMap::new));
        List<Long> productModelIds = new ArrayList<>(productModelMap.keySet());
 
        List<ProductBom> bomList = productBomMapper.selectList(
                Wrappers.<ProductBom>lambdaQuery()
                        .in(ProductBom::getProductModelId, productModelIds)
                        .orderByAsc(ProductBom::getId)
        );
        if (CollectionUtils.isEmpty(bomList)) {
            return CopySummary.skipped(productId, productModels.size(), 0, "未查询到产品大类对应的BOM");
        }
 
        Map<Integer, List<ProductStructure>> structureMap = loadStructureMap(bomList);
        ProductBom templateBom = findTemplateBomOrNull(bomList, structureMap);
        if (templateBom == null) {
            return CopySummary.skipped(productId, productModels.size(), bomList.size(), "当前产品大类下没有可作为模板的完整BOM结构");
        }
 
        List<ProductStructure> templateStructures = structureMap.get(templateBom.getId());
        ProductStructure templateRoot = requireSingleRoot(templateBom, templateStructures);
        List<ProductStructure> templateChildren = templateStructures.stream()
                .filter(item -> !isRoot(item))
                .sorted(Comparator.comparing(ProductStructure::getId))
                .collect(Collectors.toList());
        if (templateChildren.isEmpty()) {
            throw new IllegalStateException("模板BOM没有可复制的子结构,bomId=" + templateBom.getId());
        }
 
        int copiedBomCount = 0;
        int skippedBomCount = 0;
        int insertedStructureCount = 0;
 
        for (ProductBom targetBom : bomList) {
            if (Objects.equals(templateBom.getId(), targetBom.getId())) {
                skippedBomCount++;
                continue;
            }
 
            List<ProductStructure> targetStructures = structureMap.getOrDefault(targetBom.getId(), Collections.emptyList());
            if (hasChildNodes(targetStructures)) {
                skippedBomCount++;
                continue;
            }
 
            ProductModel targetModel = productModelMap.get(targetBom.getProductModelId());
            if (targetModel == null) {
                throw new IllegalStateException("BOM关联的规格不属于当前产品大类,bomId=" + targetBom.getId()
                        + ",productModelId=" + targetBom.getProductModelId());
            }
 
            RootNode targetRoot = ensureTargetRoot(targetBom, targetModel, templateRoot, targetStructures);
            int copiedChildren = copyTemplateChildren(templateBom, templateRoot, templateChildren, targetBom, targetRoot.getNode());
 
            copiedBomCount++;
            insertedStructureCount += copiedChildren + (targetRoot.isInserted() ? 1 : 0);
        }
 
        return CopySummary.copied(
                productId,
                productModels.size(),
                templateBom.getId(),
                templateBom.getBomNo(),
                bomList.size(),
                copiedBomCount,
                skippedBomCount,
                insertedStructureCount
        );
    }
 
    private Map<Integer, List<ProductStructure>> loadStructureMap(List<ProductBom> bomList) {
        List<Integer> bomIds = bomList.stream()
                .map(ProductBom::getId)
                .filter(Objects::nonNull)
                .collect(Collectors.toList());
        if (bomIds.isEmpty()) {
            return Collections.emptyMap();
        }
 
        List<ProductStructure> structures = productStructureMapper.selectList(
                Wrappers.<ProductStructure>lambdaQuery()
                        .in(ProductStructure::getBomId, bomIds)
                        .orderByAsc(ProductStructure::getId)
        );
 
        Map<Integer, List<ProductStructure>> structureMap = new HashMap<>();
        for (ProductStructure structure : structures) {
            structureMap.computeIfAbsent(structure.getBomId(), key -> new ArrayList<>()).add(structure);
        }
        return structureMap;
    }
 
    private ProductBom findTemplateBomOrNull(List<ProductBom> bomList, Map<Integer, List<ProductStructure>> structureMap) {
        return bomList.stream()
                .filter(item -> hasChildNodes(structureMap.getOrDefault(item.getId(), Collections.emptyList())))
                .max(Comparator.comparingInt(item -> childNodeCount(structureMap.getOrDefault(item.getId(), Collections.emptyList()))))
                .orElse(null);
    }
 
    private int childNodeCount(List<ProductStructure> structures) {
        if (structures == null) {
            return 0;
        }
        int count = 0;
        for (ProductStructure structure : structures) {
            if (!isRoot(structure)) {
                count++;
            }
        }
        return count;
    }
 
    private boolean hasChildNodes(List<ProductStructure> structures) {
        return childNodeCount(structures) > 0;
    }
 
    private ProductStructure requireSingleRoot(ProductBom bom, List<ProductStructure> structures) {
        List<ProductStructure> roots = findRoots(structures);
        if (roots.size() != 1) {
            throw new IllegalStateException("BOM根节点数量异常,bomId=" + bom.getId() + ",rootCount=" + roots.size());
        }
        return roots.get(0);
    }
 
    private RootNode ensureTargetRoot(ProductBom targetBom,
                                      ProductModel targetModel,
                                      ProductStructure templateRoot,
                                      List<ProductStructure> targetStructures) {
        List<ProductStructure> roots = findRoots(targetStructures);
        if (roots.size() > 1) {
            throw new IllegalStateException("目标BOM根节点数量异常,bomId=" + targetBom.getId() + ",rootCount=" + roots.size());
        }
        if (roots.size() == 1) {
            return new RootNode(roots.get(0), false);
        }
 
        ProductStructure targetRoot = new ProductStructure();
        targetRoot.setParentId(null);
        targetRoot.setBomId(targetBom.getId());
        targetRoot.setProductModelId(targetBom.getProductModelId());
        targetRoot.setProcessId(templateRoot.getProcessId());
        targetRoot.setUnitQuantity(templateRoot.getUnitQuantity() == null ? BigDecimal.ONE : templateRoot.getUnitQuantity());
        targetRoot.setDemandedQuantity(templateRoot.getDemandedQuantity());
        targetRoot.setUnit(targetModel.getUnit());
        targetRoot.setTenantId(firstNotNull(targetBom.getTenantId(), targetModel.getTenantId(), templateRoot.getTenantId()));
        productStructureMapper.insert(targetRoot);
        return new RootNode(targetRoot, true);
    }
 
    private int copyTemplateChildren(ProductBom templateBom,
                                     ProductStructure templateRoot,
                                     List<ProductStructure> templateChildren,
                                     ProductBom targetBom,
                                     ProductStructure targetRoot) {
        Map<Long, Long> idMapping = new HashMap<>();
        idMapping.put(templateRoot.getId(), targetRoot.getId());
 
        List<NodePair> insertedNodes = new ArrayList<>();
        for (ProductStructure sourceNode : templateChildren) {
            ProductStructure copiedNode = new ProductStructure();
            copiedNode.setParentId(null);
            copiedNode.setProductModelId(sourceNode.getProductModelId());
            copiedNode.setProcessId(sourceNode.getProcessId());
            copiedNode.setUnitQuantity(sourceNode.getUnitQuantity());
            copiedNode.setDemandedQuantity(sourceNode.getDemandedQuantity());
            copiedNode.setUnit(sourceNode.getUnit());
            copiedNode.setTenantId(firstNotNull(targetBom.getTenantId(), sourceNode.getTenantId()));
            copiedNode.setBomId(targetBom.getId());
 
            productStructureMapper.insert(copiedNode);
            idMapping.put(sourceNode.getId(), copiedNode.getId());
            insertedNodes.add(new NodePair(sourceNode, copiedNode));
        }
 
        for (NodePair insertedNode : insertedNodes) {
            Long sourceParentId = insertedNode.getSourceNode().getParentId();
            Long newParentId = idMapping.get(sourceParentId);
            if (newParentId == null) {
                throw new IllegalStateException("模板BOM存在无法映射的父节点,templateBomId=" + templateBom.getId()
                        + ",sourceNodeId=" + insertedNode.getSourceNode().getId()
                        + ",sourceParentId=" + sourceParentId);
            }
 
            ProductStructure copiedNode = insertedNode.getCopiedNode();
            copiedNode.setParentId(newParentId);
            productStructureMapper.updateById(copiedNode);
        }
 
        return insertedNodes.size();
    }
 
    private List<ProductStructure> findRoots(List<ProductStructure> structures) {
        if (structures == null) {
            return Collections.emptyList();
        }
        return structures.stream()
                .filter(this::isRoot)
                .collect(Collectors.toList());
    }
 
    private boolean isRoot(ProductStructure structure) {
        return structure.getParentId() == null || Long.valueOf(0L).equals(structure.getParentId());
    }
 
    private Long firstNotNull(Long first, Long second) {
        return first != null ? first : second;
    }
 
    private Long firstNotNull(Long first, Long second, Long third) {
        if (first != null) {
            return first;
        }
        return second != null ? second : third;
    }
 
    private void printProductSummary(CopySummary summary) {
        if (summary.isProductSkipped()) {
            System.out.printf(
                    "跳过产品分类:productId=%s,规格数=%s,BOM总数=%s,原因=%s%n",
                    summary.getProductId(),
                    summary.getProductModelCount(),
                    summary.getTotalBomCount(),
                    summary.getSkipReason()
            );
            return;
        }
 
        System.out.printf(
                "处理产品分类:productId=%s,模板BOM=%s(%s),规格数=%s,BOM总数=%s,已补齐BOM=%s,跳过BOM=%s,新增结构节点=%s%n",
                summary.getProductId(),
                summary.getTemplateBomNo(),
                summary.getTemplateBomId(),
                summary.getProductModelCount(),
                summary.getTotalBomCount(),
                summary.getCopiedBomCount(),
                summary.getSkippedBomCount(),
                summary.getInsertedStructureCount()
        );
    }
 
    private void printBatchSummary(List<CopySummary> summaries) {
        int productCount = summaries.size();
        int skippedProductCount = 0;
        int totalBomCount = 0;
        int copiedBomCount = 0;
        int skippedBomCount = 0;
        int insertedStructureCount = 0;
 
        for (CopySummary summary : summaries) {
            if (summary.isProductSkipped()) {
                skippedProductCount++;
            }
            totalBomCount += summary.getTotalBomCount();
            copiedBomCount += summary.getCopiedBomCount();
            skippedBomCount += summary.getSkippedBomCount();
            insertedStructureCount += summary.getInsertedStructureCount();
        }
 
        System.out.printf(
                "BOM结构批量复制完成:产品分类数=%s,已处理分类=%s,跳过分类=%s,BOM总数=%s,已补齐BOM=%s,跳过BOM=%s,新增结构节点=%s%n",
                productCount,
                productCount - skippedProductCount,
                skippedProductCount,
                totalBomCount,
                copiedBomCount,
                skippedBomCount,
                insertedStructureCount
        );
    }
 
    private static class RootNode {
        private final ProductStructure node;
        private final boolean inserted;
 
        private RootNode(ProductStructure node, boolean inserted) {
            this.node = node;
            this.inserted = inserted;
        }
 
        private ProductStructure getNode() {
            return node;
        }
 
        private boolean isInserted() {
            return inserted;
        }
    }
 
    private static class NodePair {
        private final ProductStructure sourceNode;
        private final ProductStructure copiedNode;
 
        private NodePair(ProductStructure sourceNode, ProductStructure copiedNode) {
            this.sourceNode = sourceNode;
            this.copiedNode = copiedNode;
        }
 
        private ProductStructure getSourceNode() {
            return sourceNode;
        }
 
        private ProductStructure getCopiedNode() {
            return copiedNode;
        }
    }
 
    private static class CopySummary {
        private final Long productId;
        private final int productModelCount;
        private final Integer templateBomId;
        private final String templateBomNo;
        private final int totalBomCount;
        private final int copiedBomCount;
        private final int skippedBomCount;
        private final int insertedStructureCount;
        private final String skipReason;
 
        private CopySummary(Long productId,
                            int productModelCount,
                            Integer templateBomId,
                            String templateBomNo,
                            int totalBomCount,
                            int copiedBomCount,
                            int skippedBomCount,
                            int insertedStructureCount,
                            String skipReason) {
            this.productId = productId;
            this.productModelCount = productModelCount;
            this.templateBomId = templateBomId;
            this.templateBomNo = templateBomNo;
            this.totalBomCount = totalBomCount;
            this.copiedBomCount = copiedBomCount;
            this.skippedBomCount = skippedBomCount;
            this.insertedStructureCount = insertedStructureCount;
            this.skipReason = skipReason;
        }
 
        private static CopySummary copied(Long productId,
                                          int productModelCount,
                                          Integer templateBomId,
                                          String templateBomNo,
                                          int totalBomCount,
                                          int copiedBomCount,
                                          int skippedBomCount,
                                          int insertedStructureCount) {
            return new CopySummary(
                    productId,
                    productModelCount,
                    templateBomId,
                    templateBomNo,
                    totalBomCount,
                    copiedBomCount,
                    skippedBomCount,
                    insertedStructureCount,
                    null
            );
        }
 
        private static CopySummary skipped(Long productId, int productModelCount, int totalBomCount, String skipReason) {
            return new CopySummary(
                    productId,
                    productModelCount,
                    null,
                    null,
                    totalBomCount,
                    0,
                    totalBomCount,
                    0,
                    skipReason
            );
        }
 
        private Long getProductId() {
            return productId;
        }
 
        private int getProductModelCount() {
            return productModelCount;
        }
 
        private Integer getTemplateBomId() {
            return templateBomId;
        }
 
        private String getTemplateBomNo() {
            return templateBomNo;
        }
 
        private int getTotalBomCount() {
            return totalBomCount;
        }
 
        private int getCopiedBomCount() {
            return copiedBomCount;
        }
 
        private int getSkippedBomCount() {
            return skippedBomCount;
        }
 
        private int getInsertedStructureCount() {
            return insertedStructureCount;
        }
 
        private String getSkipReason() {
            return skipReason;
        }
 
        private boolean isProductSkipped() {
            return skipReason != null;
        }
    }
}