BPM 模型重构 2:导入流程时,只填写 name、description、key

This commit is contained in:
YunaiV
2022-01-11 21:20:13 +08:00
parent 62b720a5d0
commit d2a8f3f253
3 changed files with 3 additions and 23 deletions

View File

@ -31,6 +31,7 @@ import org.springframework.util.ObjectUtils;
import org.springframework.validation.annotation.Validated;
import javax.annotation.Resource;
import java.nio.charset.StandardCharsets;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
@ -148,9 +149,7 @@ public class BpmModelServiceImpl implements BpmModelService {
if (StrUtil.isEmpty(bpmnXml)) {
return;
}
byte[] bpmnBytes = ActivitiUtils.replaceBpmnMainProcessIdAndName(bpmnXml,
model.getKey(), model.getName());
repositoryService.addModelEditorSource(model.getId(), bpmnBytes);
repositoryService.addModelEditorSource(model.getId(), bpmnXml.getBytes(StandardCharsets.UTF_8));
}
@Override