mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
装配清单-部件加工对不加工的判断修正
This commit is contained in:
+1
-1
@@ -48,7 +48,7 @@ public class OrderDetailComponentListReqVO {
|
||||
@Schema(description = "是否删除", example = "false")
|
||||
private boolean deleted;
|
||||
|
||||
@Schema(description = "加工状态:0不加工、1已加工、2未加工", example = "1")
|
||||
@Schema(description = "加工状态:0不加工、1未加工、2已加工", example = "1")
|
||||
@InEnum(OrderComponentProcessStatusEnum.class)
|
||||
private Integer processStatus;
|
||||
}
|
||||
|
||||
+1
-1
@@ -541,7 +541,7 @@ public class AssemblyListServiceImpl implements AssemblyListService {
|
||||
Map<String, Boolean> map = new HashMap<>();
|
||||
|
||||
Deque<NodeLevel<OrderComponentTreeCompareVO>> stack = new ArrayDeque<>();
|
||||
stack.push(new NodeLevel<>(root, 0));
|
||||
stack.push(new NodeLevel<>(root, 1));
|
||||
|
||||
while (!stack.isEmpty()) {
|
||||
NodeLevel<OrderComponentTreeCompareVO> current = stack.pop();
|
||||
|
||||
Reference in New Issue
Block a user