Skip to content

Commit

Permalink
bugfix/修复流程部署bug
Browse files Browse the repository at this point in the history
  • Loading branch information
freestylefly committed Jan 14, 2025
1 parent 0b4966b commit 2be2d75
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 5 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pmhub-boot/pmhub-ui/src/views/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export default {
justify-content: center;
align-items: center;
height: 100%;
background-image: url("../assets/images/login-background.jpg");
background-image: url("../assets/images/login-background.png");
background-size: cover;
.title {
margin: 0px auto 30px auto;
Expand Down
2 changes: 1 addition & 1 deletion pmhub-boot/pmhub-ui/src/views/register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export default {
justify-content: center;
align-items: center;
height: 100%;
background-image: url("../assets/images/login-background.jpg");
background-image: url("../assets/images/login-background.png");
background-size: cover;
}
.title {
Expand Down
2 changes: 1 addition & 1 deletion pmhub-boot/pmhub-ui/src/views/workflow/work/detail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="app-container">
<el-tabs tab-position="top" :value="finished === 'true' ? 'approval' : 'form'" @tab-click="tabClick">
<el-tab-pane label="任务办理" name="approval" v-if="finished === 'true'">
<el-card class="box-card" shadow="hover" v-if="taskFormOpen">
<el-card class="box-card" shadow="hover" v-if="false && taskFormOpen">
<div slot="header" class="clearfix">
<span>填写表单</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected void taskCompleted(FlowableEngineEntityEvent event) {
wfTaskMessageDealMapper.delete(qw);
// 清理审批提醒消息
RocketMqUtils.cleanMessage(taskEntity.getId() + "_" + taskEntity.getAssignee());
OAUtils.restfulCall2(OAUtils.ALTER_MESSAGE_API, OAUtils.mapToStr(OAUtils.alterCustomMessageSingle(taskEntity.getId() + "_" + taskEntity.getAssignee(), OAMessageStatusEnum.DEAL.getStatus(), wfCopyMapper.selectUserById(Long.valueOf(taskEntity.getAssignee())).getUserName())), OAUtils.ALTER_MESSAGE_API);
// OAUtils.restfulCall2(OAUtils.ALTER_MESSAGE_API, OAUtils.mapToStr(OAUtils.alterCustomMessageSingle(taskEntity.getId() + "_" + taskEntity.getAssignee(), OAMessageStatusEnum.DEAL.getStatus(), wfCopyMapper.selectUserById(Long.valueOf(taskEntity.getAssignee())).getUserName())), OAUtils.ALTER_MESSAGE_API);
LogFactory.get().info("任务结束------------------------End---------------------->");
}
}
3 changes: 2 additions & 1 deletion pmhub-boot/sql/pmhub_20240305.sql

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2be2d75

Please sign in to comment.