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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
190 additions
and
226 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
<p
style=
"padding-left: 5px;"
>
推送业务员
</p>
<div
class=
"tabs-box"
>
<div
class=
"order-change-main"
>
@if ($order_info['sale_id'])
<p
class=
"error"
>
订单已推送!
</p>
@endif
<form
id=
"sendSalesForm"
class=
"form-horizontal table-responsive"
>
<input
type=
"hidden"
name=
"order_id"
value=
"{{ $order_info['order_id'] }}"
>
<table
class=
"table table-bordered table-hover check-table"
style=
"min-height:150px;"
>
@if (!empty($manager))
<tr>
<td
class=
"check-table-title"
width=
"15%"
></td>
<td>
<ul>
@foreach ($manager 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_chief))
<tr>
<td
class=
"check-table-title"
></td>
<td>
<ul>
@foreach ($online_sales_chief 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_mgr))
<tr>
<td
class=
"check-table-title"
>
线上销售:
</td>
<td>
<ul>
<table
class=
"table table-bordered table-hover"
>
<tr>
<td
width=
"10%"
>
主管:
</td>
<td>
<ul>
@foreach ($online_sales_mgr 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>
@if (!empty($online_sales_kefu_1))
<tr>
<td>
线销一组:
</td>
<td>
<ul>
@foreach ($online_sales_kefu_1 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_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>
</td>
</tr>
@endif
@if (!empty($offline_sales_chief))
<tr>
<td
class=
"check-table-title"
></td>
<td>
<ul>
@foreach ($offline_sales_chief 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($offline_sales_all))
<tr>
<td
class=
"check-table-title"
>
交易员:
</td>
<td>
<ul>
@foreach ($offline_sales_all 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($self_kefu))
<tr>
<td
class=
"check-table-title"
>
自营销售部:
</td>
<td>
<ul>
@foreach ($self_kefu 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($test))
<tr>
<td
class=
"check-table-title"
>
测试:
</td>
<td>
<ul>
@foreach ($test 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 ($sale_id == $order_info['sale_id'] || in_array($role, [1, 2]))
<tr>
<td
class=
"check-table-title"
>
备注信息:
</td>
<td>
<textarea
name=
"send_remark"
id=
"send_remark"
class=
"form-control"
>
{{$order_temp_info['send_remark']}}
</textarea>
</td>
</tr>
@endif
</table>
<a
class=
"btn btn-primary send_sales"
>
提交
</a>
</form>
</div>
</div>
<p
style=
"padding-left: 5px;"
>
推送业务员
</p>
<div
class=
"tabs-box"
>
<div
class=
"order-change-main"
>
@if ($order_info['sale_id'])
<p
class=
"error"
>
订单已推送!
</p>
@endif
<form
id=
"sendSalesForm"
class=
"form-horizontal table-responsive"
>
<input
type=
"hidden"
name=
"order_id"
value=
"{{ $order_info['order_id'] }}"
>
<table
class=
"table table-bordered table-hover check-table"
style=
"min-height:150px;"
>
@if (!empty($manager))
<tr>
<td
class=
"check-table-title"
width=
"15%"
></td>
<td>
<ul>
@foreach ($manager 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_chief))
<tr>
<td
class=
"check-table-title"
></td>
<td>
<ul>
@foreach ($online_sales_chief 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_mgr))
<tr>
<td
class=
"check-table-title"
>
线上销售:
</td>
<td>
<ul>
<table
class=
"table table-bordered table-hover"
>
<tr>
<td
width=
"10%"
>
主管:
</td>
<td>
<ul>
@foreach ($online_sales_mgr 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>
<!-- 线上销售各组 -->
@if ($sub_department)
@foreach ($sub_department as $v)
@if (!empty($v->sales))
<tr>
<td>
{{ $v->department_name }}
</td>
<td>
<ul>
@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
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
@endif
@endforeach
</ul>
</td>
</tr>
@endif
@endforeach
@endif
</table>
</ul>
</td>
</tr>
@endif
@if (!empty($offline_sales_chief))
<tr>
<td
class=
"check-table-title"
></td>
<td>
<ul>
@foreach ($offline_sales_chief 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($offline_sales_all))
<tr>
<td
class=
"check-table-title"
>
交易员:
</td>
<td>
<ul>
@foreach ($offline_sales_all 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($self_kefu))
<tr>
<td
class=
"check-table-title"
>
自营销售部:
</td>
<td>
<ul>
@foreach ($self_kefu 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($test))
<tr>
<td
class=
"check-table-title"
>
测试:
</td>
<td>
<ul>
@foreach ($test 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 ($sale_id == $order_info['sale_id'] || in_array($role, [1, 2]))
<tr>
<td
class=
"check-table-title"
>
备注信息:
</td>
<td>
<textarea
name=
"send_remark"
id=
"send_remark"
class=
"form-control"
>
{{$order_temp_info['send_remark']}}
</textarea>
</td>
</tr>
@endif
</table>
<a
class=
"btn btn-primary send_sales"
>
提交
</a>
</form>
</div>
</div>
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