Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
haoban3.0
haoban-manage3.0
Commits
660fb7b1
Commit
660fb7b1
authored
Apr 14, 2020
by
qwmqiuwenmin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' of
http://115.159.76.241/haoban3.0/haoban-manage3.0.git
into developer
parents
9619c1f8
ee3f677c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
DealSyncOperationApiServiceImpl.java
...ice/service/out/impl/DealSyncOperationApiServiceImpl.java
+2
-2
SyncDealContoller.java
...m/gic/haoban/manage/web/controller/SyncDealContoller.java
+12
-0
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/DealSyncOperationApiServiceImpl.java
View file @
660fb7b1
...
...
@@ -329,10 +329,10 @@ public class DealSyncOperationApiServiceImpl implements DealSyncOperationApiServ
@Override
public
SyncCheckDTO
getTaskCheck
(
String
wxEnterpriseId
)
{
String
taskId
=
getTaskLock
(
wxEnterpriseId
);
SyncCheckDTO
syncCheckDTO
=
new
SyncCheckDTO
();
if
(
null
==
taskId
)
{
return
null
;
return
syncCheckDTO
;
}
SyncCheckDTO
syncCheckDTO
=
new
SyncCheckDTO
();
TabHaobanSyncTask
syncTask
=
syncTaskService
.
getSyncTask
(
taskId
);
syncCheckDTO
.
setSyncStatus
(
syncTask
.
getStatusFlag
());
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/SyncDealContoller.java
View file @
660fb7b1
...
...
@@ -112,5 +112,17 @@ public class SyncDealContoller extends WebBaseController {
}
@RequestMapping
(
"/close-sync"
)
@ResponseBody
public
HaobanResponse
closeReSync
(
String
wxEnterpriseId
)
{
if
(
StringUtils
.
isBlank
(
wxEnterpriseId
))
{
LoginVO
login
=
(
LoginVO
)
AuthRequestUtil
.
getSessionUser
();
wxEnterpriseId
=
login
.
getWxEnterpriseId
();
}
dealSyncOperationApiService
.
closeTask
(
wxEnterpriseId
);
return
resultResponse
(
HaoBanErrCode
.
ERR_1
);
}
}
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