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
1dff8f27
authored
May 10, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_vp_order_20180502'
parents
41a94eab
c6358e17
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
config/perm.php
config/website.php
resources/views/orderlist/content.blade.php
config/perm.php
View file @
1dff8f27
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
return
[
return
[
// 菜单权限
// 菜单权限
'订单管理'
=>
[
'订单管理'
=>
[
'平台订单'
=>
[
'orderlist_check'
,
'export'
,
'check_order'
,
'cancel_order'
,
'check_account'
,
'order_send'
,
'send_invoice'
,
'update_address'
,
'update_invoice'
,
'check_test_order'
,
'check_offline_order'
],
'平台订单'
=>
[
'orderlist_check'
,
'export'
,
'check_order'
,
'cancel_order'
,
'check_account'
,
'order_send'
,
'send_invoice'
,
'update_address'
,
'update_invoice'
,
'check_test_order'
,
'check_offline_order'
,
'download_contract'
],
'ERP订单'
=>
[
'erp_order_check'
],
'ERP订单'
=>
[
'erp_order_check'
],
...
...
config/website.php
View file @
1dff8f27
...
@@ -22,5 +22,5 @@ return [
...
@@ -22,5 +22,5 @@ return [
'check_access_api'
=>
'http://perm.liexin.net/api/perms/access'
,
'check_access_api'
=>
'http://perm.liexin.net/api/perms/access'
,
// 竞调账户配置显示时间
// 竞调账户配置显示时间
'vp_time_set'
=>
'2018-0
4
-01'
,
'vp_time_set'
=>
'2018-0
5
-01'
,
];
];
resources/views/orderlist/content.blade.php
View file @
1dff8f27
...
@@ -273,6 +273,17 @@
...
@@ -273,6 +273,17 @@
@if (in_array('check_order', $userPerms))
@if (in_array('check_order', $userPerms))
<a
class=
"btn btn-success"
href=
"{{URL('change', ['order_id'=>$v['order_id']])}}"
target=
"_blank"
>
人工审单
</a>
<a
class=
"btn btn-success"
href=
"{{URL('change', ['order_id'=>$v['order_id']])}}"
target=
"_blank"
>
人工审单
</a>
@endif
@endif
<?php
$apiUrl
=
Config
(
'website.api_domain'
);
$k1
=
time
();
$k2
=
md5
(
md5
(
$k1
)
.
'fh6y5t4rr351d2c3bryi'
);
$downLoadUrl
=
$apiUrl
.
'contract/pdfinfo?id='
.
$v
[
'order_id'
]
.
'&k1='
.
$k1
.
'&k2='
.
$k2
;
?>
@if (in_array('download_contract', $userPerms))
<a
class=
"btn btn-info"
href=
"{{$downLoadUrl}}"
>
下载合同
</a>
@endif
</div>
</div>
</td>
</td>
</tr>
</tr>
...
...
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