|
|
@ -459,6 +459,7 @@ public class ProductionMainServiceImpl implements ProductionMainService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
@Transactional |
|
|
|
public Integer openProductionMain(Long id) { |
|
|
|
ProductionMainDO mainDO = validateProductionMainExists(id); |
|
|
|
PlanStatusState planStatusState = new PlanStatusState(mainDO.getStatus()); |
|
|
@ -473,6 +474,7 @@ public class ProductionMainServiceImpl implements ProductionMainService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
@Transactional |
|
|
|
public Integer rejectProductionMain(Long id) { |
|
|
|
ProductionMainDO mainDO = validateProductionMainExists(id); |
|
|
|
PlanStatusState planStatusState = new PlanStatusState(mainDO.getStatus()); |
|
|
@ -487,6 +489,7 @@ public class ProductionMainServiceImpl implements ProductionMainService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
@Transactional |
|
|
|
public Integer agreeProductionMain(Long id) { |
|
|
|
ProductionMainDO mainDO = validateProductionMainExists(id); |
|
|
|
PlanStatusState planStatusState = new PlanStatusState(mainDO.getStatus()); |
|
|
@ -501,6 +504,7 @@ public class ProductionMainServiceImpl implements ProductionMainService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
@Transactional |
|
|
|
public Integer publishProductionMain(Long id) { |
|
|
|
ProductionMainDO mainDO = validateProductionMainExists(id); |
|
|
|
PlanStatusState planStatusState = new PlanStatusState(mainDO.getStatus()); |
|
|
@ -517,6 +521,7 @@ public class ProductionMainServiceImpl implements ProductionMainService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
@Transactional |
|
|
|
public Integer resettingProductionMain(Long id) { |
|
|
|
ProductionMainDO mainDO = validateProductionMainExists(id); |
|
|
|
PlanStatusState planStatusState = new PlanStatusState(mainDO.getStatus()); |
|
|
|