|
@@ -75,7 +75,6 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
|
|
|
*/
|
|
|
fun create(request: SCreateRequest<User>): SCreateResponse<User> {
|
|
|
val projectId = SPageContext.getHeader("projectId")
|
|
|
- val coming = SPageContext.getHeader("coming")
|
|
|
val sCreateResponse = SCreateResponse<User>(SResponseType.success)
|
|
|
if (!request.content.isNullOrEmpty()) {
|
|
|
for (content in request.content) {
|
|
@@ -91,14 +90,14 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
|
|
|
if(insert){
|
|
|
try {
|
|
|
val userLog = UserLog()
|
|
|
- userLog.comming = coming!!
|
|
|
+ userLog.comming = Opts.coming
|
|
|
userLog.action = "创建用户"
|
|
|
userLog.id = QrCodeUntils.uuidCreate()
|
|
|
- userLog.note = QrCodeUntils.toLog(content,coming)
|
|
|
+ userLog.note = "创建用户信息"
|
|
|
userLog.phone = content.phone
|
|
|
userLog.projectId = projectId
|
|
|
userLog.userId = content.userId
|
|
|
- userLog.userName = content.userName
|
|
|
+ userLog.userName = Opts.account
|
|
|
userLogService.insert(userLog)
|
|
|
} catch (e: Exception) {
|
|
|
e.printStackTrace()
|
|
@@ -144,16 +143,15 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
|
|
|
|
|
|
try {
|
|
|
val projectId = SPageContext.getHeader("projectId")
|
|
|
- val coming = SPageContext.getHeader("coming")
|
|
|
val userLog = UserLog()
|
|
|
- userLog.comming = coming!!
|
|
|
+ userLog.comming = Opts.coming
|
|
|
userLog.action = "删除用户"
|
|
|
userLog.id = QrCodeUntils.uuidCreate()
|
|
|
- userLog.note = QrCodeUntils.toLog(entity,coming)
|
|
|
+ userLog.note = "删除项目下用户"
|
|
|
userLog.phone = entity.phone
|
|
|
userLog.projectId = projectId
|
|
|
userLog.userId = entity.userId
|
|
|
- userLog.userName = entity.userName
|
|
|
+ userLog.userName = Opts.account
|
|
|
userLogService.insert(userLog)
|
|
|
} catch (e: Exception) {
|
|
|
e.printStackTrace()
|
|
@@ -167,7 +165,6 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
|
|
|
fun update(@RequestBody request: SUpdateRequest<User>): SBaseResponse {
|
|
|
val sBaseResponse = SBaseResponse(SResponseType.success)
|
|
|
val projectId = SPageContext.getHeader("projectId")
|
|
|
- val coming = SPageContext.getHeader("coming")
|
|
|
if (!request.content.isNullOrEmpty()) {
|
|
|
for (content in request.content!!) {
|
|
|
val entity = select(SFilter.eq("projectId", projectId!!),SFilter.not(SFilter.eq("userId",content.userId!!)), SFilter.eq("phone", content.phone!!)).entity()
|
|
@@ -180,14 +177,14 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
|
|
|
if (update) {
|
|
|
try {
|
|
|
val userLog = UserLog()
|
|
|
- userLog.comming = coming
|
|
|
+ userLog.comming = Opts.coming
|
|
|
userLog.action = "更新用户信息"
|
|
|
userLog.id = QrCodeUntils.uuidCreate()
|
|
|
- userLog.note = QrCodeUntils.toLog(content,coming)
|
|
|
+ userLog.note = "更新用户信息"
|
|
|
userLog.phone = content.phone
|
|
|
userLog.projectId = projectId
|
|
|
userLog.userId = content.userId
|
|
|
- userLog.userName = content.userName
|
|
|
+ userLog.userName = Opts.account
|
|
|
userLogService.insert(userLog)
|
|
|
} catch (e: Exception) {
|
|
|
e.printStackTrace()
|
|
@@ -243,16 +240,15 @@ object UserService : SObjectService<User>(SMybatisDao(User::class.java)) {
|
|
|
if (userList.size>0){
|
|
|
try {
|
|
|
var projectId = SPageContext.getHeader("projectId")
|
|
|
- val coming = SPageContext.getHeader("coming")
|
|
|
logger.debug("ProjectId====$projectId")
|
|
|
if (projectId.isNullOrEmpty()){
|
|
|
projectId = userList[0].projectId
|
|
|
}
|
|
|
val userLog = UserLog()
|
|
|
- userLog.comming = coming!!
|
|
|
+ userLog.comming = Opts.coming
|
|
|
userLog.action = "用户登录"
|
|
|
userLog.id = QrCodeUntils.uuidCreate()
|
|
|
- userLog.note = QrCodeUntils.toLog(userList[0],coming)
|
|
|
+ userLog.note = "APP用户登录"
|
|
|
userLog.phone = phone
|
|
|
userLog.projectId = projectId
|
|
|
userLog.userId = userList[0].userId
|