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
31a12ce5
Commit
31a12ce5
authored
Apr 18, 2020
by
fudahua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
同步处理 死循环处理
parent
08a186ff
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
StaffApiServiceImpl.java
.../manage/service/service/out/impl/StaffApiServiceImpl.java
+11
-5
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/StaffApiServiceImpl.java
View file @
31a12ce5
...
...
@@ -390,8 +390,7 @@ public class StaffApiServiceImpl implements StaffApiService {
}
}
@Override
public
void
staffEdit
(
StaffDTO
staffDTO
,
String
departmentIds
)
{
private
void
staffEditDeal
(
StaffDTO
staffDTO
,
String
departmentIds
,
boolean
syncGic
)
{
TabHaobanStaff
oldStaff
=
staffMapper
.
selectByPrimaryKey
(
staffDTO
.
getStaffId
());
logger
.
info
(
"【员工修改】oldStaff={}"
,
JSON
.
toJSONString
(
oldStaff
));
//1、先更新staff
...
...
@@ -459,7 +458,8 @@ public class StaffApiServiceImpl implements StaffApiService {
}
enterpriseId
=
store
.
getEnterpriseId
();
}
ClerkDTO
clerkDTO
=
clerkService
.
getClerkByCodeNoStatus
(
enterpriseId
,
related
.
getClerkCode
());
if
(!
syncGic
)
{
ClerkDTO
clerkDTO
=
clerkService
.
getClerkByCodeNoStatus
(
enterpriseId
,
related
.
getClerkCode
());
//if(!staffDTO.getPhoneNumber().equals(related.getPhoneNumber())||!staffDTO.getStaffName().equals(clerkDTO.getStaffName())){
logger
.
info
(
"clerkDto:{}"
,
JSONObject
.
toJSONString
(
clerkDTO
));
String
headPic
=
staffDTO
.
getHeadImg
();
...
...
@@ -483,6 +483,7 @@ public class StaffApiServiceImpl implements StaffApiService {
clerkDTO
.
setClerkGender
(
staffDTO
.
getSex
().
toString
());
clerkService
.
updateClerk
(
clerkDTO
);
}
}
//}
}
...
...
@@ -538,6 +539,11 @@ public class StaffApiServiceImpl implements StaffApiService {
}
@Override
public
void
staffEdit
(
StaffDTO
staffDTO
,
String
departmentIds
)
{
staffEditDeal
(
staffDTO
,
departmentIds
,
false
);
}
@Override
public
void
syscGicClerk
(
String
fieldListString
)
{
// TODO Auto-generated method stub
...
...
@@ -763,7 +769,7 @@ public class StaffApiServiceImpl implements StaffApiService {
departmentIds
=
departmentIds
.
substring
(
1
,
departmentIds
.
length
());
}
if
(
map
.
get
(
departmentId
)
==
null
){
this
.
staffEdit
(
staff
,
departmentIds
);
this
.
staffEditDeal
(
staff
,
departmentIds
,
true
);
}
StaffDepartmentRelatedDTO
staffRelated
=
this
.
getDepartmentIdAndStaffId
(
departmentId
,
staffId
);
StaffDepartmentRelatedDTO
isCodeExist
=
this
.
getDepartmentIdAndCode
(
departmentId
,
code
);
...
...
@@ -788,7 +794,7 @@ public class StaffApiServiceImpl implements StaffApiService {
// clerkService.updateClerk(clerkDTO);
// }
//}
this
.
staffEdit
(
staff
,
departmentIds
);
this
.
staffEditDeal
(
staff
,
departmentIds
,
true
);
}
}
}
...
...
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