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
b7e69f75
authored
Jun 28, 2019
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_self_refund_20190605'
parents
fce36bf6
62e0568c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
app/Http/Controllers/OrderController.php
app/Http/Controllers/OrderController.php
View file @
b7e69f75
...
@@ -107,12 +107,11 @@ function getOperatorName($uid, $type)
...
@@ -107,12 +107,11 @@ function getOperatorName($uid, $type)
$name
=
''
;
$name
=
''
;
if
(
$type
==
1
)
{
if
(
$type
==
1
)
{
$user
=
DB
::
connection
(
'order'
)
->
table
(
'lie_user_main'
)
->
where
(
'user_id'
,
$uid
)
->
select
(
'user_name'
)
->
first
();
//
$user = DB::connection('order')->table('lie_user_main')->where('user_id', $uid)->select('user_name')->first();
// $name = !empty($user->user_name) ? $user->user_name : '客户';
$name
=
!
empty
(
$user
->
user_name
)
?
$user
->
user_name
:
'客户'
;
$name
=
'客户'
;
}
else
if
(
$type
==
2
)
{
}
else
if
(
$type
==
2
)
{
$user
=
DB
::
table
(
'user_info'
)
->
where
(
'userId'
,
$uid
)
->
select
(
'name'
)
->
first
();
$user
=
DB
::
table
(
'user_info'
)
->
where
(
'userId'
,
$uid
)
->
select
(
'name'
)
->
first
();
$name
=
isset
(
$user
->
name
)
?
$user
->
name
:
'未知'
;
$name
=
isset
(
$user
->
name
)
?
$user
->
name
:
'未知'
;
}
else
if
(
$type
==
3
)
{
}
else
if
(
$type
==
3
)
{
$name
=
'系统定时任务'
;
$name
=
'系统定时任务'
;
...
...
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