Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
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
hujun
tl_estate
Commits
49e1b6bf
Commit
49e1b6bf
authored
Jun 10, 2019
by
zhuwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改记录
parent
6c20579e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
UserService.php
application/index/service/UserService.php
+3
-4
No files found.
application/index/service/UserService.php
View file @
49e1b6bf
...
...
@@ -85,7 +85,7 @@ class UserService
$user_name
=
empty
(
$user_data
[
'user_name'
])
?
''
:
$user_data
[
'user_name'
];
$site_id_old
=
empty
(
$user_data
[
'site_ids'
])
?
''
:
$user_data
[
'site_ids'
];
$entrust_type_old
=
empty
(
$user_data
[
'entrust_type'
])
?
''
:
$user_data
[
'entrust_type'
]
;
$entrust_type_old
=
isset
(
$user_data
[
'entrust_type'
])
?
$user_data
[
'entrust_type'
]
:
''
;
if
(
$data
[
'referrer_source'
]
==
20
)
{
...
...
@@ -141,7 +141,7 @@ class UserService
}
//客户委托类型 修改记录
if
(
!
empty
(
$data
[
'entrust_type'
])
&&
(
$data
[
'entrust_type'
]
!=
$entrust_type_old
))
{
if
(
is_numeric
(
$data
[
'entrust_type'
])
&&
(
$data
[
'entrust_type'
]
!=
$entrust_type_old
))
{
$this
->
userFieldChangeLog
(
$this
->
operation_id
,
$id
,
$entrust_type_old
,
$data
[
'entrust_type'
],
'entrust_type'
);
}
...
...
@@ -197,8 +197,7 @@ class UserService
break
;
case
'entrust_type'
:
$entrust_type_str
=
array
(
0
=>
'找铺'
,
1
=>
'找办公楼'
);
//0找铺 1找办公楼
$remark
=
"客户委托类型被【
{
$agent_data
[
'name'
]
}
】由【
{
$entrust_type_str
[
$field_old
]
}
】
修改为【
{
$entrust_type_str
[
$field_old_new
]
}
】"
;
$remark
=
"客户委托类型被【
{
$agent_data
[
'name'
]
}
】由【
{
$entrust_type_str
[
$field_old
]
}
】修改为【
{
$entrust_type_str
[
$field_old_new
]
}
】"
;
$this
->
operating_records
(
$this
->
operation_id
,
9
,
$remark
,
$user_id
);
break
;
default
:
...
...
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