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
0c43609b
Commit
0c43609b
authored
Dec 06, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
店长编辑商铺权限
parent
05a2cf03
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
Basic.php
application/index/extend/Basic.php
+19
-0
No files found.
application/index/extend/Basic.php
View file @
0c43609b
...
...
@@ -164,9 +164,28 @@ class Basic extends Controller
$where
[
'houses_id'
]
=
$this
->
params
[
'id'
];
$where
[
'type'
]
=
2
;
$where
[
'agents_id'
]
=
$this
->
userId
;
$where
[
'is_del'
]
=
0
;
$is_
=
$agent
->
getTotal
(
$where
);
$is_auth
=
$is_
>
0
?
1
:
0
;
}
//处理店长权限
if
(
!
$is_auth
)
{
$agent
=
new
GHousesToAgents
();
$where
[
'houses_id'
]
=
$this
->
params
[
'id'
];
$where
[
'type'
]
=
2
;
$where
[
'is_del'
]
=
0
;
$store_id_arr
=
$agent
->
getAgentHouseOne
(
'store_id'
,
$where
);
if
(
!
empty
(
$store_id_arr
))
{
$store_id
=
implode
(
','
,
array_unique
(
$store_id_arr
));
}
if
(
!
empty
(
$store_id
))
{
$is_
=
$agent
->
getTotal
([
'store_id'
=>
$store_id
,
'id'
=>
$this
->
userId
,
'level'
=>
20
]);
$is_auth
=
$is_
>
0
?
1
:
0
;
}
}
}
//处理客方编辑、跟进、公客客户
...
...
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