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
e429e1b3
authored
Jan 16, 2020
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
fix
parents
dc24b061
9f9a91bb
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
52 additions
and
5 deletions
app/Http/Controllers/OrderController.php
app/Http/Controllers/PermController.php
public/css/order.css
public/js/order.js
resources/views/detail/content.blade.php
app/Http/Controllers/OrderController.php
View file @
e429e1b3
...
...
@@ -2061,8 +2061,7 @@ Class OrderController extends Controller
public
function
send_mail
(
Request
$request
)
{
$id
=
$request
->
input
(
'id'
);
$cc_email
=
$request
->
input
(
'cc_email'
,
''
);
$cc_email
=
$request
->
input
(
'cc_email'
,
''
);
// 额外抄送人
$info
=
$this
->
orderDetail
(
$request
,
$id
);
//循环订单详情
...
...
@@ -2114,11 +2113,21 @@ Class OrderController extends Controller
$data
[
'toUser'
]
=
$send_mail_array
;
// 收件人
$cc_send_mail_array
=
Config
(
'config.cc_email'
);
// 固定抄送人
$perm
=
new
PermController
;
$manager_email
=
$perm
->
getManager
(
$request
);
// 获取上级主管邮箱
if
(
$manager_email
)
{
$cc_send_mail_array
=
array_merge
(
$cc_send_mail_array
,
$manager_email
);
// 合并上级主管邮箱
}
$cc_send_mail_array
[]
=
$request
->
user
->
email
;
// 默认抄送给自己
$cc_send_mail_array
=
array_unique
(
$cc_send_mail_array
);
// 去重
$cc_email_arr
=
[];
if
(
$cc_email
)
{
// 后台选择的抄送人
if
(
$cc_email
)
{
// 后台选择的
额外
抄送人
$CmsModel
=
new
CmsModel
();
foreach
(
$cc_email
as
$v
)
{
...
...
app/Http/Controllers/PermController.php
View file @
e429e1b3
...
...
@@ -146,7 +146,7 @@
$roleId
=
isset
(
$role
->
roleId
)
?
$role
->
roleId
:
0
;
// $user = DB::select("SELECT * FROM `t_user_perm` WHERE `bid` = $bid AND `roles` REGEXP $roleId");
$user
=
DB
::
select
(
"SELECT
*
FROM `t_user_perm` WHERE `bid` =
$bid
AND `roles` LIKE '%
\"
"
.
$roleId
.
"
\"
%' ORDER BY `mtime`"
);
$user
=
DB
::
select
(
"SELECT
`userId`
FROM `t_user_perm` WHERE `bid` =
$bid
AND `roles` LIKE '%
\"
"
.
$roleId
.
"
\"
%' ORDER BY `mtime`"
);
if
(
$user
)
{
foreach
(
$user
as
$v
)
{
...
...
@@ -155,7 +155,7 @@
if
(
$userId
)
{
foreach
(
$userId
as
$id
)
{
$userInfo
=
DB
::
table
(
'user_info'
)
->
where
(
'userId'
,
$id
)
->
select
(
'userId'
,
'name'
,
'status'
)
->
first
();
$userInfo
=
DB
::
table
(
'user_info'
)
->
where
(
'userId'
,
$id
)
->
select
(
'userId'
,
'name'
,
'
email'
,
'
status'
)
->
first
();
// 判断用户是否已离职 4为离职状态
// if ($userInfo->status != 4) {
...
...
@@ -342,4 +342,30 @@
return
$data
;
}
// 获取角色对应的主管邮箱
public
function
getManager
(
$request
)
{
$role
=
$this
->
getUserRole
(
$request
);
// 当前用户角色
$manager_key
=
array_search
(
$role
,
Config
(
'perm_args.manager_to_kefu'
));
// 获取对应的主管key
if
(
!
$manager_key
)
return
false
;
$role_name
=
array_search
(
$manager_key
,
Config
(
'perm_args.roles'
));
// 获取主管对应的角色名称
if
(
!
$role_name
)
return
false
;
$res
=
$this
->
getRoleUsers
(
$request
,
$role_name
);
// 获取角色对应的用户
$email
=
[];
if
(
$res
)
{
foreach
(
$res
as
$v
)
{
$email
[]
=
$v
->
email
;
}
}
return
$email
;
}
}
\ No newline at end of file
public/css/order.css
View file @
e429e1b3
...
...
@@ -320,3 +320,5 @@ input[type="color"],
.bootstrap-select
.btn
{
padding
:
4px
12px
;}
.list-item-table
.caption
th
{
background
:
#fff
;
}
.input-radio
input
{
margin-left
:
-15px
!important
;
}
\ No newline at end of file
public/js/order.js
View file @
e429e1b3
This diff is collapsed.
Click to expand it.
resources/views/detail/content.blade.php
View file @
e429e1b3
...
...
@@ -449,6 +449,10 @@
<th>
商品名
</th>
@endif
@if ($order_info['order_goods_type'] == 1)
<th>
供应商
</th>
@endif
<th>
制造商
</th>
<!-- ERP或京东订单 -->
...
...
@@ -515,6 +519,10 @@
<td><a
href=
"{{Config('website.main_url').'goods_'.$v['goods_id'].'.html?ptag=order'}}"
target=
"_blank"
>
{{$v['goods_name']}}
</a></td>
@endif
@if ($order_info['order_goods_type'] == 1)
<td>
{{$v['supplier_name']}}
</td>
@endif
<td>
{{$v['brand_name']}}
</td>
<td
id=
"goods_number_{{$v['rec_id']}}"
>
{{$v['goods_number']}}
</td>
<td>
...
...
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