fix: ebom中不存在引用件的概念

This commit is contained in:
曹鹏飞 2024-04-08 09:40:01 +08:00
parent 762422d2ba
commit b902e685ec
2 changed files with 6 additions and 6 deletions

View File

@ -12,10 +12,10 @@ public enum EBomStatusEnum implements ValueEnum<Integer> {
CHECKED(2,"已复核"), CHECKED(2,"已复核"),
RETURNED(3,"已退回"), RETURNED(3,"已退回"),
PUBLISHED(4,"定版已发布PBOM"), PUBLISHED(4,"定版已发布PBOM"),
BORROWED_PARTS(99, "借用件"), BORROWED_PARTS(99, "借用件");
//非自己创建的 //非自己创建的
REFERENCE(100, "引用件"); //REFERENCE(100, "引用件");
private final Integer value; private final Integer value;

View File

@ -340,10 +340,10 @@ public class BomNewEbomParentService extends ServiceImpl<BomNewEbomParentMapper,
if (parentEntity.getStatus().equals(EBomStatusEnum.PUBLISHED.getValue())) { if (parentEntity.getStatus().equals(EBomStatusEnum.PUBLISHED.getValue())) {
child.setStatus(EBomStatusEnum.BORROWED_PARTS.getValue()); child.setStatus(EBomStatusEnum.BORROWED_PARTS.getValue());
} }
//非本人则为借用件 // //非本人则为借用件
else if (!parentEntity.getCreatedBy().equals(child.getCreatedBy())) { // else if (!parentEntity.getCreatedBy().equals(child.getCreatedBy())) {
child.setStatus(EBomStatusEnum.REFERENCE.getValue()); // child.setStatus(EBomStatusEnum.REFERENCE.getValue());
} // }
} else { //无BOM-版本时 确定版本号 } else { //无BOM-版本时 确定版本号