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