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
9dd66344
authored
Nov 19, 2020
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'master' of
http://119.23.72.7/zhujilai/Order
into zjl_domestic_20201110
parents
c12ccbb8
189ece97
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
app/Http/Controllers/OrderController.php
public/js/list.js
resources/views/orderlist/content.blade.php
app/Http/Controllers/OrderController.php
View file @
9dd66344
...
...
@@ -442,6 +442,7 @@ Class OrderController extends Controller
$map
[
'order_type_extend'
]
=
$request
->
input
(
'order_type_extend'
,
''
);
$map
[
'status_extend'
]
=
$request
->
input
(
'status_extend'
,
''
);
$map
[
'is_manager_audit'
]
=
$request
->
input
(
'is_manager_audit'
,
''
);
$map
[
'order_remark'
]
=
$request
->
input
(
'order_remark'
,
''
);
$perm
=
new
PermController
;
...
...
@@ -924,6 +925,8 @@ Class OrderController extends Controller
'brand_name'
=>
$v
[
'brand_name'
],
);
$v
[
'goods_id'
]
&&
$data
[
'goods_id'
]
=
$v
[
'goods_id'
];
$res
=
$client
->
SelfGoodsInfo
(
json_encode
(
$data
));
if
(
!
$res
)
return
[
'errcode'
=>-
1
,
'errmsg'
=>
'请求基石库存接口失败'
];
...
...
public/js/list.js
View file @
9dd66344
...
...
@@ -97,6 +97,7 @@
order_type_extend
=
$
(
'#order_type_extend'
).
val
()
?
$
(
'#order_type_extend'
).
val
()
:
''
,
status_extend
=
$
(
'#status_extend'
).
val
()
?
$
(
'#status_extend'
).
val
()
:
''
,
is_manager_audit
=
$
(
'#is_manager_audit'
).
val
()
?
$
(
'#is_manager_audit'
).
val
()
:
''
;
order_remark
=
$
(
'#order_remark'
).
val
()
?
$
(
'#order_remark'
).
val
()
:
''
;
if
(
url
==
'/export'
)
{
if
(
type
==
1
)
{
// 联营
...
...
@@ -238,6 +239,10 @@
listUrl
+=
'&test_order='
+
1
;
}
if
(
order_remark
)
{
listUrl
+=
'&order_remark='
+
order_remark
;
}
if
(
url
==
'/export'
)
{
listUrl
+=
'&order_goods_type='
+
type
;
}
...
...
resources/views/orderlist/content.blade.php
View file @
9dd66344
...
...
@@ -80,8 +80,6 @@
</dd>
</dl>
<dl>
<dt>
付款类型:
</dt>
<dd>
...
...
@@ -229,6 +227,14 @@
</select>
</dd>
</dl>
@if ($username == 'vpadmin@ichunt.com')
<dl>
<dt>
公司名称:
</dt>
<dd>
<input
type=
"text"
id=
"order_remark"
name=
"order_remark"
value=
"{{$condition['order_remark']}}"
placeholder=
"请输入公司名称"
>
</dd>
</dl>
@endif
@if (in_array('check_test_order', $userPerms))
<dl>
...
...
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