合并 master 分支, 修改导入流程bug

This commit is contained in:
jason 2022-02-18 12:03:45 +08:00
parent 1f08a2725e
commit d8d81e835f
4 changed files with 5 additions and 1 deletions
yudao-module-bpm/yudao-module-bpm-impl-flowable/src/main/java/cn/iocoder/yudao/module/bpm
controller/admin/definition
convert/task
service/definition
yudao-ui-admin/src/views/bpm/model

@ -61,6 +61,7 @@ public class BpmModelController {
@PostMapping("/import")
@ApiOperation(value = "导入模型")
@PreAuthorize("@ss.hasPermission('bpm:model:import')")
public CommonResult<String> importModel(@Valid BpmModeImportReqVO importReqVO) throws IOException {
BpmModelCreateReqVO createReqVO = BpmModelConvert.INSTANCE.convert(importReqVO);
// 读取文件

@ -108,6 +108,7 @@ public interface BpmTaskConvert {
BpmTaskRespVO.User convert3(AdminUserRespDTO bean);
@Mapping(target = "id", ignore = true)
void copyTo(BpmTaskExtDO from, @MappingTarget BpmTaskDonePageItemRespVO to);
@Mappings({

@ -132,6 +132,7 @@ public class BpmModelServiceImpl implements BpmModelService {
}
@Override
@Transactional(rollbackFor = Exception.class) // 因为进行多个操作所以开启事务
public void updateModel(@Valid BpmModelUpdateReqVO updateReqVO) {
// 校验流程模型存在
Model model = repositoryService.getModel(updateReqVO.getId());
@ -148,6 +149,7 @@ public class BpmModelServiceImpl implements BpmModelService {
}
@Override
@Transactional(rollbackFor = Exception.class) // 因为进行多个操作所以开启事务
public void deployModel(String id) {
// 校验流程模型存在
Model model = repositoryService.getModel(id);

@ -291,7 +291,7 @@ export default {
//
headers: getBaseHeader(),
//
url: process.env.VUE_APP_BASE_API + '/admin-api/' + "/bpm/model/import",
url: process.env.VUE_APP_BASE_API + '/admin-api' + "/bpm/model/import",
//
form: {},
//