Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
public-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenzy
public-platform
Commits
e57614e8
Commit
e57614e8
authored
Jan 15, 2024
by
lanmw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
ccb63035
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
pom.xml
pom.xml
+2
-2
pom.xml
runtime/pom.xml
+0
-1
PortalApprovalProcessServiceImpl.java
...untime/service/impl/PortalApprovalProcessServiceImpl.java
+1
-1
ProcessManageServiceImpl.java
...atform/runtime/service/impl/ProcessManageServiceImpl.java
+3
-1
No files found.
pom.xml
View file @
e57614e8
...
@@ -14,8 +14,8 @@
...
@@ -14,8 +14,8 @@
</modules>
</modules>
<properties>
<properties>
<maven.compiler.source>
11
</maven.compiler.source>
<maven.compiler.source>
8
</maven.compiler.source>
<maven.compiler.target>
11
</maven.compiler.target>
<maven.compiler.target>
8
</maven.compiler.target>
<auth.version>
3.0.12-release
</auth.version>
<auth.version>
3.0.12-release
</auth.version>
<harvester.version>
2.0.2-release
</harvester.version>
<harvester.version>
2.0.2-release
</harvester.version>
...
...
runtime/pom.xml
View file @
e57614e8
...
@@ -77,7 +77,6 @@
...
@@ -77,7 +77,6 @@
<dependency>
<dependency>
<groupId>
mysql
</groupId>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<artifactId>
mysql-connector-java
</artifactId>
<version>
8.0.21
</version>
</dependency>
</dependency>
<dependency>
<dependency>
...
...
runtime/src/main/java/com/keymobile/publicplatform/runtime/service/impl/PortalApprovalProcessServiceImpl.java
View file @
e57614e8
...
@@ -52,7 +52,7 @@ public class PortalApprovalProcessServiceImpl implements PortalApprovalProcessSe
...
@@ -52,7 +52,7 @@ public class PortalApprovalProcessServiceImpl implements PortalApprovalProcessSe
String
url
=
baseUrl
+
PublicConstant
.
APPROVAL_PROCESS_URL
;
String
url
=
baseUrl
+
PublicConstant
.
APPROVAL_PROCESS_URL
;
// 资产包唯一ID
// 资产包唯一ID
String
propertyReceiptsId
=
UUID
.
randomUUID
().
toString
();
String
propertyReceiptsId
=
UUID
.
randomUUID
().
toString
();
Result
<
ApprovalProcessVO
>
result
=
RestTemplateUtils
.
postJsonPO
(
url
,
param
.
toProcessPortal
(
propertyReceiptsId
),
poAuth
,
new
ParameterizedTypeReference
<>()
{
Result
<
ApprovalProcessVO
>
result
=
RestTemplateUtils
.
postJsonPO
(
url
,
param
.
toProcessPortal
(
propertyReceiptsId
),
poAuth
,
new
ParameterizedTypeReference
<
Result
<
ApprovalProcessVO
>
>()
{
});
});
ApprovalProcessVO
approvalProcessVO
=
result
.
getData
();
ApprovalProcessVO
approvalProcessVO
=
result
.
getData
();
...
...
runtime/src/main/java/com/keymobile/publicplatform/runtime/service/impl/ProcessManageServiceImpl.java
View file @
e57614e8
...
@@ -54,8 +54,10 @@ public class ProcessManageServiceImpl implements ProcessManageService {
...
@@ -54,8 +54,10 @@ public class ProcessManageServiceImpl implements ProcessManageService {
// TODO 用户上下文获取用户ID
// TODO 用户上下文获取用户ID
interruptPortalDTO
.
setFApproversUser
(
"USER"
);
interruptPortalDTO
.
setFApproversUser
(
"USER"
);
interruptPortalDTO
.
setFApproversDesc
(
"数据资产平台发起废弃"
);
interruptPortalDTO
.
setFApproversDesc
(
"数据资产平台发起废弃"
);
Result
<
Object
>
result
=
RestTemplateUtils
.
postJsonPO
(
url
,
interruptPortalDTO
,
poAuth
,
new
ParameterizedTypeReference
<>()
{
Result
<
Object
>
result
=
RestTemplateUtils
.
postJsonPO
(
url
,
interruptPortalDTO
,
poAuth
,
new
ParameterizedTypeReference
<
Result
<
Object
>
>()
{
});
});
// Result<Object> result = RestTemplateUtils.postJsonPO(url, interruptPortalDTO, poAuth, new ParameterizedTypeReference<>() {
// });
// TODO 更新状态,区分流程中止回调的更新逻辑
// TODO 更新状态,区分流程中止回调的更新逻辑
Specification
<
ProcessPropertyAbstract
>
specification
=
Specifications
.<
ProcessPropertyAbstract
>
and
()
Specification
<
ProcessPropertyAbstract
>
specification
=
Specifications
.<
ProcessPropertyAbstract
>
and
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment