| | |
| | | private final NcNodeService ncNodeService; |
| | | private final FlowCommonService flowCommonService; |
| | | private final FlowProgramFileService flowProgramFileService; |
| | | private final ProgramSeqService programSeqService; |
| | | |
| | | public static final String TRY_NAME = "试切"; |
| | | public static final String CURE_NAME = "固化"; |
| | | public static final String DEVIATION_NAME = "偏离"; |
| | |
| | | ncNode.setDeviation(programProperties.getDeviation()); |
| | | |
| | | if(NcNode.TYPE_PROGRAM_PACKAGE.equals(nodeType)) {//程序包节点,分配程序编号 |
| | | String programNo = programSeqService.generageProgramNo(); |
| | | ncNode.setProgramNo(programNo); |
| | | |
| | | ncNode.setProgramNo(programProperties.getProgramNo()); |
| | | } |
| | | } |
| | | |