Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8678f987
authored
Mar 05, 2021
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_freight_20210129'
parents
84b76a05
4775b247
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
56 deletions
app/Http/Controllers/OrderController.php
resources/views/detail/sendSales.blade.php
app/Http/Controllers/OrderController.php
View file @
8678f987
...
...
@@ -1123,10 +1123,20 @@ Class OrderController extends Controller
$info
[
'online_sales_chief'
]
=
$perm
->
getUserByCondition
(
33
,
66
,
0
);
// 线上销售-33 线上销售总监-66
$info
[
'online_sales_mgr'
]
=
$perm
->
getDepartmentUser
(
33
,
63
);
// 线上销售-33 销售经理-63
$info
[
'online_sales_kefu_1'
]
=
$perm
->
getUserByCondition
(
34
,
62
,
0
);
// 线上一组销售
$info
[
'online_sales_kefu_2'
]
=
$perm
->
getUserByCondition
(
35
,
62
,
0
);
// 线上二组销售
$info
[
'online_sales_kefu_3'
]
=
$perm
->
getUserByCondition
(
36
,
62
,
0
);
// 线上三组销售
$info
[
'online_sales_kefu_4'
]
=
$perm
->
getUserByCondition
(
37
,
62
,
0
);
// 线上四组销售
// 获取线上销售子级部门
$sub_department
=
DB
::
table
(
'user_department'
)
->
where
(
'parent_id'
,
33
)
->
select
(
'department_id'
,
'department_name'
)
->
get
();
foreach
(
$sub_department
as
$v
)
{
$v
->
sales
=
$perm
->
getUserByCondition
(
$v
->
department_id
,
62
,
0
);
}
$info
[
'sub_department'
]
=
$sub_department
;
// $info['online_sales_kefu_1'] = $perm->getUserByCondition(34, 62, 0); // 线上一组销售
// $info['online_sales_kefu_2'] = $perm->getUserByCondition(35, 62, 0); // 线上二组销售
// $info['online_sales_kefu_3'] = $perm->getUserByCondition(36, 62, 0); // 线上三组销售
// $info['online_sales_kefu_4'] = $perm->getUserByCondition(37, 62, 0); // 线上四组销售
$info
[
'offline_sales_chief'
]
=
$perm
->
getUserByCondition
(
40
,
90
,
0
);
// 线下销售-39 线下销售总监-90
...
...
resources/views/detail/sendSales.blade.php
View file @
8678f987
...
...
@@ -64,12 +64,15 @@
</td>
</tr>
@if (!empty($online_sales_kefu_1))
<!-- 线上销售各组 -->
@if ($sub_department)
@foreach ($sub_department as $v)
@if (!empty($v->sales))
<tr>
<td>
线销一组:
</td>
<td>
{{ $v->department_name }}
</td>
<td>
<ul>
@foreach ($online_sales_kefu_1 as $vo)
@foreach ($v->sales as $vo)
@if ($vo->userId == $order_info['sale_id'])
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
@else
...
...
@@ -80,56 +83,7 @@
</td>
</tr>
@endif
@if (!empty($online_sales_kefu_2))
<tr>
<td>
线销二组:
</td>
<td>
<ul>
@foreach ($online_sales_kefu_2 as $vo)
@if ($vo->userId == $order_info['sale_id'])
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
@else
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
@endif
@endforeach
</ul>
</td>
</tr>
@endif
@if (!empty($online_sales_kefu_3))
<tr>
<td>
线销三组:
</td>
<td>
<ul>
@foreach ($online_sales_kefu_3 as $vo)
@if ($vo->userId == $order_info['sale_id'])
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
@else
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
@endif
@endforeach
</ul>
</td>
</tr>
@endif
@if (!empty($online_sales_kefu_4))
<tr>
<td>
线销四组:
</td>
<td>
<ul>
@foreach ($online_sales_kefu_4 as $vo)
@if ($vo->userId == $order_info['sale_id'])
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
@else
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
@endif
@endforeach
</ul>
</td>
</tr>
@endif
</table>
</ul>
...
...
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