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
6750b671
Commit
6750b671
authored
Feb 14, 2022
by
yaosai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bugfix-0214' into 'developer'
修复导购删除bug和导购重复bug See merge request
!167
parents
5c6bfe56
d0eeff3c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
30 deletions
+17
-30
StaffMapper.java
...com/gic/haoban/manage/service/dao/mapper/StaffMapper.java
+6
-16
StaffService.java
...a/com/gic/haoban/manage/service/service/StaffService.java
+5
-6
StaffServiceImpl.java
.../haoban/manage/service/service/impl/StaffServiceImpl.java
+2
-3
StaffApiServiceImpl.java
.../manage/service/service/out/impl/StaffApiServiceImpl.java
+2
-3
StaffMapper.xml
...manage3-service/src/main/resources/mapper/StaffMapper.xml
+2
-2
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/dao/mapper/StaffMapper.java
View file @
6750b671
...
@@ -134,24 +134,13 @@ public interface StaffMapper {
...
@@ -134,24 +134,13 @@ public interface StaffMapper {
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
);
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
);
/**
/**
* 删除同
微信用户id的其他导购
* 删除同
wxUserId的其他staff
*
*
* @param wxEnterpriseId 微信企业id
* @param wxUserId 微信用户id
* @param wxUserId 微信用户id
* @param staffId 导购id
* @param staffId 导购id
* @param wxEnterpriseId wx企业标识
*/
*/
void
delStaffByWxUserId
(
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
,
void
delOtherStaffByWxUserId
(
@Param
(
"wxUserId"
)
String
wxUserId
,
@Param
(
"wxUserId"
)
String
wxUserId
,
@Param
(
"staffId"
)
String
staffId
,
@Param
(
"staffId"
)
String
staffId
);
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
);
/**
* 删除同手机号的其他导购
*
* @param wxEnterpriseId 微信企业id
* @param phoneNumber 手机号
* @param staffId 导购id
*/
void
delStaffByPhoneNumber
(
@Param
(
"wxEnterpriseId"
)
String
wxEnterpriseId
,
@Param
(
"phoneNumber"
)
String
phoneNumber
,
@Param
(
"staffId"
)
String
staffId
);
}
}
\ No newline at end of file
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/StaffService.java
View file @
6750b671
...
@@ -98,12 +98,11 @@ public interface StaffService {
...
@@ -98,12 +98,11 @@ public interface StaffService {
int
updateOpenUserIdsByUserId
(
String
wxEnterpriseId
,
String
wxUserId
,
String
wxOpenUseId
);
int
updateOpenUserIdsByUserId
(
String
wxEnterpriseId
,
String
wxUserId
,
String
wxOpenUseId
);
/**
/**
* 删除同
手机号同wxUserId的其他用户
* 删除同
wxUserId的其他staff
*
*
* @param staffId 导购id
* @param wxUserId 微信用户id
* @param wxUserId wx用户id
* @param staffId 导购id
* @param phoneNumber 手机号
* @param wxEnterpriseId wx企业标识
* @param wxEnterpriseId 微信企业id
*/
*/
void
delOtherStaffBy
Id
(
String
staffId
,
String
wxUserId
,
String
phoneNumber
,
String
wxEnterpriseId
);
void
delOtherStaffBy
WxUserId
(
String
wxUserId
,
String
staffId
,
String
wxEnterpriseId
);
}
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/StaffServiceImpl.java
View file @
6750b671
...
@@ -121,9 +121,8 @@ public class StaffServiceImpl implements StaffService {
...
@@ -121,9 +121,8 @@ public class StaffServiceImpl implements StaffService {
}
}
@Override
@Override
public
void
delOtherStaffById
(
String
staffId
,
String
wxUserId
,
String
phoneNumber
,
String
wxEnterpriseId
)
{
public
void
delOtherStaffByWxUserId
(
String
wxUserId
,
String
staffId
,
String
wxEnterpriseId
)
{
mapper
.
delStaffByWxUserId
(
wxEnterpriseId
,
wxUserId
,
staffId
);
mapper
.
delOtherStaffByWxUserId
(
wxUserId
,
staffId
,
wxEnterpriseId
);
mapper
.
delStaffByPhoneNumber
(
wxEnterpriseId
,
phoneNumber
,
staffId
);
}
}
}
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/StaffApiServiceImpl.java
View file @
6750b671
...
@@ -390,9 +390,8 @@ public class StaffApiServiceImpl implements StaffApiService {
...
@@ -390,9 +390,8 @@ public class StaffApiServiceImpl implements StaffApiService {
String
nationCode
=
arr
[
0
];
String
nationCode
=
arr
[
0
];
String
phoneNumber
=
arr
[
1
];
String
phoneNumber
=
arr
[
1
];
TabHaobanStaff
staff
=
staffService
.
selectByPhoneNumberAndEnterpriseId
(
phoneNumber
.
trim
(),
wxEnterpriseId
);
TabHaobanStaff
staff
=
staffService
.
selectByPhoneNumberAndEnterpriseId
(
phoneNumber
.
trim
(),
wxEnterpriseId
);
if
(
staff
!=
null
)
{
if
(
staff
!=
null
){
//同手机号或者同wxUerId的导购只存在一个
staffService
.
delOtherStaffByWxUserId
(
staff
.
getWxUserId
(),
staff
.
getStaffId
(),
wxEnterpriseId
);
staffService
.
delOtherStaffById
(
staff
.
getStaffId
(),
staff
.
getWxUserId
(),
staff
.
getPhoneNumber
(),
wxEnterpriseId
);
}
}
staff
=
(
staff
==
null
?
new
TabHaobanStaff
()
:
staff
);
staff
=
(
staff
==
null
?
new
TabHaobanStaff
()
:
staff
);
staff
.
setWxUserId
(
userId
);
staff
.
setWxUserId
(
userId
);
...
...
haoban-manage3-service/src/main/resources/mapper/StaffMapper.xml
View file @
6750b671
...
@@ -43,9 +43,9 @@
...
@@ -43,9 +43,9 @@
where staff_id = #{staffId,jdbcType=VARCHAR}
where staff_id = #{staffId,jdbcType=VARCHAR}
</delete>
</delete>
<update
id=
"delOtherStaff"
>
<update
id=
"delOtherStaff
ByWxUserId
"
>
update tab_haoban_staff
update tab_haoban_staff
set status_flag = 0
set status_flag = 0
,update_time = now()
where wx_enterprise_id = #{wxEnterpriseId}
where wx_enterprise_id = #{wxEnterpriseId}
and wx_user_id = #{wxUserId}
and wx_user_id = #{wxUserId}
and status_flag = 1
and status_flag = 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