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
29fe9a35
authored
Feb 26, 2019
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
1. 添加支付优惠;
2. 添加自营订单其他业务; 3. 添加其他业务筛选;
parent
c499b635
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
556 additions
and
35 deletions
app/Http/Controllers/AddOrderController.php
app/Http/Controllers/OrderController.php
app/Http/routes.php
config/params.php
public/js/add_order.js
public/js/order.js
resources/views/addOffline/content.blade.php
resources/views/addOnline/content.blade.php
resources/views/addOrder/content.blade.php
resources/views/addOtherOrder.blade.php
resources/views/addOtherOrder/content.blade.php
resources/views/detail/content.blade.php
resources/views/selfOrder/content.blade.php
resources/views/success/content.blade.php
app/Http/Controllers/AddOrderController.php
View file @
29fe9a35
...
...
@@ -55,7 +55,6 @@ Class AddOrderController extends Controller
$info
=
$this
->
getPageInfo
(
$request
);
$info
[
'title'
]
=
'新增联营订单'
;
$info
[
'sale_id'
]
=
$request
->
user
->
userId
;
return
view
(
'addOrder'
,
$info
);
...
...
@@ -67,12 +66,22 @@ Class AddOrderController extends Controller
$info
=
$this
->
getPageInfo
(
$request
);
$info
[
'title'
]
=
'新增自营线上订单'
;
$info
[
'sale_id'
]
=
$request
->
user
->
userId
;
return
view
(
'addOnline'
,
$info
);
}
// 新增自营其他业务订单
public
function
addOtherOrder
(
Request
$request
)
{
$info
=
$this
->
getPageInfo
(
$request
);
$info
[
'title'
]
=
'新增自营其他业务订单'
;
$info
[
'sale_id'
]
=
$request
->
user
->
userId
;
return
view
(
'addOtherOrder'
,
$info
);
}
// 获取用户信息
public
function
getUserInfo
(
Request
$request
)
{
...
...
@@ -452,6 +461,10 @@ Class AddOrderController extends Controller
}
else
{
// 联营、自营线上订单
$data
[
'tax_id'
]
=
$request
->
input
(
'tax_id'
);
$data
[
'user_coupon_id'
]
=
$request
->
input
(
'user_coupon_id'
);
if
(
$data
[
'type'
]
==
4
)
{
$data
[
'business_type'
]
=
$request
->
input
(
'business_type'
);
}
}
$data
[
'sale_type'
]
=
$request
->
input
(
'sale_type'
,
''
);
// 自营线上选择销售类型
...
...
@@ -479,12 +492,11 @@ Class AddOrderController extends Controller
$order_id
=
$request
->
input
(
'order_id'
);
$type
=
$request
->
input
(
'type'
);
if
(
$type
==
1
)
{
$title
=
'新增联营订单'
;
}
else
if
(
$type
==
2
)
{
$title
=
'新增自营线上订单'
;
}
else
{
$title
=
'新增自营线下订单'
;
switch
(
$type
)
{
case
1
:
$title
=
'新增联营订单'
;
break
;
case
2
:
$title
=
'新增自营线上订单'
;
break
;
case
3
:
$title
=
'新增自营线下订单'
;
break
;
case
4
:
$title
=
'新增自营其他业务订单'
;
break
;
}
$info
[
'title'
]
=
$title
;
...
...
app/Http/Controllers/OrderController.php
View file @
29fe9a35
...
...
@@ -409,6 +409,7 @@ Class OrderController extends Controller
$map
[
'order_invoice_status'
]
=
$request
->
input
(
'order_invoice_status'
,
''
);
$map
[
'is_new'
]
=
$request
->
input
(
'is_new'
,
''
);
$map
[
'is_new_order'
]
=
$request
->
input
(
'is_new_order'
,
''
);
$map
[
'business_type'
]
=
$request
->
input
(
'business_type'
,
''
);
// 订单查看权限---交易员、客服、测试
if
(
in_array
(
$info
[
'role'
],
[
3
,
4
]))
{
...
...
app/Http/routes.php
View file @
29fe9a35
...
...
@@ -104,6 +104,8 @@ Route::group(['middleware' => 'web'], function () {
Route
::
post
(
'/ajax/checkStock'
,
'AddOrderController@checkStock'
);
Route
::
post
(
'/ajax/batchGoodsImport'
,
'AddOrderController@batchGoodsImport'
);
Route
::
get
(
'/add_other_order'
,
'AddOrderController@addOtherOrder'
);
Route
::
match
([
'get'
,
'post'
],
'/web/{key}'
,
'WebController@info'
);
Route
::
match
([
'get'
,
'post'
],
'/api/{key}'
,
'ApiController@Entrance'
);
...
...
config/params.php
View file @
29fe9a35
...
...
@@ -58,4 +58,10 @@
2
=>
'brand_name'
,
3
=>
'num'
,
],
// 特殊业务类型
'business_type'
=>
[
1
=>
'样品销售'
,
2
=>
'仓库损耗'
,
],
];
\ No newline at end of file
public/js/add_order.js
View file @
29fe9a35
...
...
@@ -16,7 +16,18 @@
this
.
lists
(
internal_uid
,
2
,
0
);
},
bind
:
function
(
goods_type
,
is_online
,
internal_uid
=
''
)
{
//goods_type:1-联营,2-自营 is_online:是否线上订单
businessType
:
function
()
{
// 自营其他业务订单
this
.
bind
(
2
,
2
);
},
/**
* goods_type: is_online:是否线上订单
* @param {[type]} goods_type [1-联营,2-自营]
* @param {Boolean} is_online [0-自营线下,1-联营/自营线上,2-自营其他业务]
* @param {String} internal_uid [自营内部采购账号ID]
* @return {[type]} [description]
*/
bind
:
function
(
goods_type
,
is_online
,
internal_uid
=
''
)
{
var
loading
=
this
;
// 获取用户信息
...
...
@@ -25,6 +36,13 @@
if
(
!
mobile
)
return
false
;
// 自营其他订单类型---仓库损耗
if
(
mobile
==
'15022222222'
)
{
$
(
'#business_type'
).
val
(
2
);
}
else
{
$
(
'#business_type'
).
val
(
1
);
}
$
.
ajax
({
url
:
'/ajax/getUserInfo'
,
type
:
'post'
,
...
...
@@ -326,8 +344,11 @@
var
delivery_place
=
1
;
// 1.大陆,2.香港 自营默认是大陆
var
user_id
=
0
;
if
(
is_online
)
{
// 线上订单
if
(
internal_uid
)
{
user_id
=
internal_uid
;
}
else
{
user_id
=
$
(
'.user_id'
).
val
();
}
if
(
!
user_id
)
{
layer
.
msg
(
'请先选择用户'
);
...
...
@@ -367,9 +388,6 @@
return
false
;
}
}
}
user_id
=
internal_uid
?
internal_uid
:
user_id
;
var
datax
=
{
uid
:
user_id
,
...
...
@@ -410,12 +428,12 @@
var
user_id
=
0
;
var
delivery_place
=
1
;
// 1.大陆,2.香港 自营默认是大陆
if
(
is_online
)
{
if
(
internal_uid
)
{
user_id
=
internal_uid
;
}
else
{
user_id
=
$
(
'.user_id'
).
val
();
}
user_id
=
internal_uid
?
internal_uid
:
user_id
;
if
(
num
<
min_buy
)
{
num
=
min_buy
;
layer
.
msg
(
'购买数量低于最小起订量,默认调整为最小起订量'
);
...
...
@@ -450,12 +468,12 @@
var
user_id
=
0
;
var
delivery_place
=
1
;
// 1.大陆,2.香港 自营默认是大陆
if
(
is_online
)
{
if
(
internal_uid
)
{
user_id
=
internal_uid
;
}
else
{
user_id
=
$
(
'.user_id'
).
val
();
}
user_id
=
internal_uid
?
internal_uid
:
user_id
;
if
(
goods_type
==
1
)
{
// 联营需要选择交货地
delivery_place
=
$
(
'input[name=delivery_place]:checked'
).
val
();
}
...
...
@@ -594,17 +612,17 @@
// 提交订单
$
(
'.submit-order'
).
click
(
function
()
{
var
address_id
=
$
(
'input[name=address_id]'
).
val
();
var
type
=
$
(
this
).
data
(
'type'
);
var
type
=
$
(
this
).
data
(
'type'
);
// 1-联营线上,2-自营线上,3-自营线下,4-自营其他业务
var
cart_ids
=
[];
var
user_id
=
0
;
var
remark
=
$
(
'#remark'
).
val
();
var
remark
=
$
(
'#remark'
).
val
();
// 订单备注
if
(
is_online
)
{
if
(
internal_uid
)
{
user_id
=
internal_uid
;
}
else
{
user_id
=
$
(
'.user_id'
).
val
();
}
user_id
=
internal_uid
?
internal_uid
:
user_id
;
$
(
'.shop-table tbody tr'
).
each
(
function
()
{
var
cid
=
$
(
this
).
data
(
'cid'
);
cart_ids
.
push
(
cid
);
...
...
@@ -634,20 +652,23 @@
return
false
;
}
if
(
type
==
4
)
{
// 自营其他业务
var
business_type
=
$
(
'#business_type'
).
val
();
datax
.
business_type
=
business_type
;
}
else
{
if
((
inv_type
&&
!
tax_id
)
||
(
!
tax_id
&&
goods_type
==
2
))
{
layer
.
msg
(
'请选择发票信息'
);
return
false
;
}
}
datax
.
tax_id
=
tax_id
;
datax
.
user_coupon_id
=
user_coupon_id
;
}
// 自营线上
if
(
type
==
2
)
{
if
(
type
==
2
&&
is_online
==
1
)
{
var
sale_type
=
$
(
'#sale_type'
).
val
();
var
cart_info
=
[];
$
(
'.shop-table tbody tr'
).
each
(
function
()
{
...
...
public/js/order.js
View file @
29fe9a35
...
...
@@ -87,6 +87,7 @@
is_new
=
$
(
'#is_new'
).
val
()
?
$
(
'#is_new'
).
val
()
:
''
;
order_payment_mode
=
$
(
'#order_payment_mode'
).
val
()
?
$
(
'#order_payment_mode'
).
val
()
:
''
,
is_new_order
=
$
(
'#is_new_order'
).
val
()
?
$
(
'#is_new_order'
).
val
()
:
''
;
business_type
=
$
(
'#business_type'
).
val
()
?
$
(
'#business_type'
).
val
()
:
''
;
if
(
url
==
'/export'
)
{
if
(
type
==
1
)
{
// 联营
...
...
@@ -103,12 +104,12 @@
}
}
else
{
// 自营
if
(
test_order
.
length
)
{
if
(
!
order_contain
&&
!
time_start
&&
!
time_end
&&
!
order_payment_mode
&&
!
order_status
&&
!
sale_type
&&
!
order_invoice_status
&&
!
order_source_pf
&&
!
order_source_adtag
&&
!
order_source_ptag
&&
!
is_new
&&
!
test_order
.
is
(
':checked'
))
{
if
(
!
order_contain
&&
!
time_start
&&
!
time_end
&&
!
order_payment_mode
&&
!
order_status
&&
!
sale_type
&&
!
order_invoice_status
&&
!
order_source_pf
&&
!
order_source_adtag
&&
!
order_source_ptag
&&
!
is_new
&&
!
business_type
&&
!
test_order
.
is
(
':checked'
))
{
layer
.
msg
(
'请选择筛选条件,再导出!'
);
return
false
;
}
}
else
{
if
(
!
order_contain
&&
!
time_start
&&
!
time_end
&&
!
order_payment_mode
&&
!
order_status
&&
!
sale_type
&&
!
order_invoice_status
&&
!
order_source_pf
&&
!
order_source_adtag
&&
!
order_source_ptag
&&
!
is_new
)
{
if
(
!
order_contain
&&
!
time_start
&&
!
time_end
&&
!
order_payment_mode
&&
!
order_status
&&
!
sale_type
&&
!
order_invoice_status
&&
!
order_source_pf
&&
!
order_source_adtag
&&
!
order_source_ptag
&&
!
is_new
&&
!
business_type
)
{
layer
.
msg
(
'请选择筛选条件,再导出!'
);
return
false
;
}
...
...
@@ -192,6 +193,10 @@
listUrl
+=
'&order_payment_mode='
+
order_payment_mode
;
}
if
(
business_type
)
{
listUrl
+=
'&business_type='
+
business_type
;
}
if
(
test_order
.
is
(
':checked'
))
{
listUrl
+=
'&test_order='
+
1
;
}
...
...
@@ -363,6 +368,7 @@
is_new
:
$
(
'#is_new'
).
val
()
?
$
(
'#is_new'
).
val
()
:
''
,
order_payment_mode
:
$
(
'#order_payment_mode'
).
val
()
?
$
(
'#order_payment_mode'
).
val
()
:
''
,
is_new_order
:
$
(
'#is_new_order'
).
val
()
?
$
(
'#is_new_order'
).
val
()
:
''
,
business_type
:
$
(
'#business_type'
).
val
()
?
$
(
'#business_type'
).
val
()
:
''
,
pid
:
pid
,
};
...
...
resources/views/addOffline/content.blade.php
View file @
29fe9a35
...
...
@@ -78,7 +78,7 @@
<h3>
商品信息
</h3>
</div>
<div
class=
"ibox-content"
>
<div
class=
"ibox-content
create-order
"
>
<div
class=
"row"
>
<style>
.search-sku
{
width
:
240px
!important
;}
...
...
resources/views/addOnline/content.blade.php
View file @
29fe9a35
...
...
@@ -216,7 +216,7 @@
<h3>
商品信息
</h3>
</div>
<div
class=
"ibox-content"
>
<div
class=
"ibox-content
create-order
"
>
<div
class=
"row"
>
<div
class=
"col-sm-12"
>
<input
type=
"text"
class=
"search-sku"
name=
"sku_id"
value=
""
placeholder=
"请输入SKUID"
>
...
...
resources/views/addOrder/content.blade.php
View file @
29fe9a35
...
...
@@ -234,7 +234,7 @@
<h3>
商品信息
</h3>
</div>
<div
class=
"ibox-content"
>
<div
class=
"ibox-content
create-order
"
>
<div
class=
"row"
>
<div
class=
"col-sm-12"
>
<input
type=
"text"
class=
"search-sku"
name=
"sku_id"
value=
""
placeholder=
"请输入SKUID"
>
...
...
resources/views/addOtherOrder.blade.php
0 → 100644
View file @
29fe9a35
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
订单管理后台 | {{ $title }}
</title>
<script>
document
.
domain
=
"{{ Config::get('website.domain') }}"
;
</script>
@include('addOffline.css')
@include('addOffline.js')
</head>
<body
class=
"body-small"
>
<div
id=
"wrapper"
>
<!-- layouts.navigation -->
@include('layouts.navigation')
<div
id=
"page-wrapper"
class=
"gray-bg"
>
<div
class=
"row"
>
<div
class=
"wrapper"
>
@include('layouts.header')
<div
class=
"page-content"
>
<div
class=
"ibox float-e-margins"
>
@include('addOtherOrder.content')
</div>
</div>
</div>
</div>
</div>
</div>
</body>
resources/views/addOtherOrder/content.blade.php
0 → 100644
View file @
29fe9a35
<form>
<div
class=
"ibox-title"
style=
"border-top:0;"
>
<h3>
客户信息
</h3>
</div>
<div
class=
"ibox-content create-order"
>
<div
class=
"row"
style=
"margin-bottom: 30px;"
>
<div
class=
"col-sm-12"
>
<input
type=
"text"
class=
"search-user"
name=
"user-mobile"
value=
""
placeholder=
"请输入会员账号"
>
<a
class=
"btn btn-info get-user"
>
获取用户信息
</a>
<span>
快捷入口:
<a
href=
"{{Config('website.add-user-url')}}"
target=
"_blank"
style=
"margin-right: 10px;"
>
新增用户账号
</a>
<a
href=
"{{Config('website.check-user-url')}}"
target=
"_blank"
>
查询/编辑用户账号
</a>
</span>
</div>
</div>
<div
class=
"user-info"
>
<div
class=
"account-info"
>
<h4>
账户信息
</h4>
<input
type=
"hidden"
name=
"user_id"
class=
"user_id"
value=
""
>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
会员账号:
</span>
<span
class=
"user-mobile"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
密码:
</span>
<span>
******
</span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
测试账号:
</span>
<span
class=
"user-test"
></span>
</div>
</div>
</div>
</div>
<div
class=
"express-info"
>
<h4>
快递信息
<span
class=
"title-tips"
><i
class=
"fa fa-info-circle"
></i>
必须在下单前填写快递信息
</span></h4>
<input
type=
"hidden"
name=
"address_id"
class=
"address_id"
value=
""
>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
收货方式:
</span>
<span>
快递上门
</span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span><i
class=
"text-danger"
>
*
</i>
选择收货地址:
</span>
<select
name=
"address"
id=
"address"
>
</select>
</div>
</div>
</div>
<div
class=
"address-content"
>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
联系人:
</span>
<span
class=
"address-consignee"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
联系电话:
</span>
<span
class=
"address-mobile"
></span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
收货地址:
</span>
<span
class=
"address-detail"
></span>
</div>
</div>
</div>
</div>
</div>
<div
class=
"invoice-info"
>
<h4>
发票信息
<span
class=
"title-tips"
><i
class=
"fa fa-info-circle"
></i>
自营订单没有审核流程,所以一定要完善发票资料。
</span></h4>
<input
type=
"hidden"
name=
"tax_id"
class=
"tax_id"
value=
""
>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
发票类型:
</span>
<label
class=
"radio-inline"
>
<input
type=
"radio"
name=
"inv_type"
class=
"radio-inv-type"
value=
"3"
>
增值税专用发票
</label>
<label
class=
"radio-inline"
>
<input
type=
"radio"
name=
"inv_type"
class=
"radio-inv-type"
value=
"4"
>
增值税普通发票
</label>
<label
class=
"radio-inline"
>
<input
type=
"radio"
name=
"inv_type"
class=
"radio-inv-type"
value=
""
>
不开发票
</label>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span><i
class=
"text-danger"
>
*
</i>
选择发票信息:
</span>
<select
name=
"invoice"
id=
"invoice"
>
</select>
</div>
</div>
</div>
<div
class=
"invoice-content"
>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
发票抬头:
</span>
<span
class=
"tax_title"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
税务登记号:
</span>
<span
class=
"tax_no"
></span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
银行卡号:
</span>
<span
class=
"bank_account"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
开户银行:
</span>
<span
class=
"bank_name"
></span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
公司电话:
</span>
<span
class=
"company_phone"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
公司注册地址:
</span>
<span
class=
"company_address"
></span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
联系人:
</span>
<span
class=
"consignee"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
联系电话:
</span>
<span
class=
"consignee_phone"
></span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
收货地址:
</span>
<span
class=
"consignee_address"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
发票类型:
</span>
<span
class=
"inv_type"
></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"ibox-title"
>
<h3>
商品信息
</h3>
</div>
<div
class=
"ibox-content create-order"
>
<div
class=
"row"
>
<div
class=
"col-sm-12"
>
<input
type=
"text"
class=
"search-sku"
name=
"sku_id"
value=
""
placeholder=
"请输入SKUID"
>
<a
class=
"btn btn-info get-sku"
>
获取SKU信息
</a>
<span>
快捷入口:
<a
href=
"{{Config('website.search-sku-url-2')}}"
target=
"_blank"
>
查询SKU
</a>
</span>
<div
class=
"batch-btn"
>
<a
class=
"btn btn-success goods_import"
data-type=
"2"
>
批量导入物料
</a>
<a
class=
"btn btn-info"
href=
"http://img.ichunt.com/doc/excel/template/%E8%87%AA%E8%90%A5%E8%AE%A2%E5%8D%95%E6%89%B9%E9%87%8F%E6%B7%BB%E5%8A%A0%E6%A8%A1%E6%9D%BF.xlsx"
>
自营物料模板下载
</a>
</div>
</div>
</div>
<!-- SKU信息 -->
<div
class=
"sku-info"
>
<h4>
型号信息
</h4>
<div
class=
"sku-info-left"
>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
SKU型号:
</span>
<span
class=
"goods_name"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
制造商:
</span>
<span
class=
"brand_name"
></span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
供应商:
</span>
<span
class=
"supplier_name"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
库存数量:
</span>
<span
class=
"stock"
></span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
起订量:
</span>
<span
class=
"moq"
></span>
</div>
</div>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
标准包装量:
</span>
<span
class=
"mpq"
></span>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span>
是否能购买:
</span>
<span
class=
"status"
></span>
</div>
</div>
</div>
</div>
<div
class=
"sku-info-right table-responsive"
>
<table
class=
"table table-hover ladder_price_table"
>
<!-- <tr>
<th>阶梯</th>
<th>RMB价格</th>
</tr> -->
</table>
</div>
<input
type=
"hidden"
name=
"goods_id"
class=
"goods_id"
value=
""
>
<input
type=
"hidden"
name=
"goods_type"
class=
"goods_type"
value=
""
>
<div
class=
"clear"
></div>
<a
class=
"btn btn-success add-to-lists"
>
添加至商品列表
</a>
</div>
<!-- 商品列表 -->
<div
class=
"shop-lists table-responsive"
>
<table
class=
"table table-bordered table-hover shop-table"
>
<thead>
<tr>
<th
width=
"5%"
>
序号
</th>
<th
width=
"15%"
>
SKUID
</th>
<th
width=
"20%"
>
商品名称
</th>
<th
width=
"10%"
>
制造商
</th>
<th
width=
"5%"
>
倍数
</th>
<th
width=
"10%"
>
采购数量
</th>
<th
width=
"10%"
>
采购单价
</th>
<th
width=
"10%"
>
小计
</th>
<th
width=
"6%"
>
货期
</th>
<th
width=
"10%"
>
供应商
</th>
<th
width=
"5%"
>
操作
</th>
</tr>
</thead>
<tbody></tbody>
</table>
<textarea
name=
"remark"
id=
"remark"
class=
"form-control"
placeholder=
"填写订单备注信息"
></textarea>
</div>
</div>
<div
class=
"order-info"
>
<div
class=
"ibox-title"
>
<h3>
订单信息
</h3>
</div>
<div
class=
"ibox-content"
>
<div
class=
"row"
>
<p
class=
"con-title"
><span>
商品总额:
</span></p>
<p
class=
"con-val goods_amount_val"
></p>
</div>
<div
class=
"row"
>
<input
type=
"hidden"
class=
"user_coupon_id"
name=
"user_coupon_id"
value=
""
>
<p
class=
"con-title"
><span
style=
"margin-top: 5px;"
>
选择优惠券:
</span></p>
<p
class=
"con-val"
>
<select
name=
"user_coupon"
id=
"user_coupon"
>
<option
value=
""
>
请选择
</option>
</select>
</p>
</div>
<div
class=
"row preferential_price"
>
<p
class=
"con-title"
><span>
优惠金额:
</span></p>
<p
class=
"con-val preferential_price_val"
>
0.00
</p>
</div>
<div
class=
"row extend_fee"
>
<p
class=
"con-title"
><span>
附加费:
</span></p>
<p
class=
"con-val extend_fee_val"
>
0.00
</p>
</div>
<div
class=
"row"
>
<p
class=
"con-title"
><span>
运费:
</span></p>
<p
class=
"con-val express_fee_val"
>
0.00
</p>
</div>
<div
class=
"row"
>
<p
class=
"con-title"
><span>
应付金额:
</span></p>
<p
class=
"con-val text-danger order_amount"
></p>
</div>
</div>
</div>
<div
class=
"ibox-title"
>
<div
class=
"row"
>
<div
class=
"col-md-8"
>
<span><i
class=
"error"
>
*
</i>
业务类型:
</span>
<select
name=
"business_type"
id=
"business_type"
>
@if (Config('params.business_type'))
@foreach (Config('params.business_type') as $k=>$v)
<option
value=
"{{$k}}"
>
{{$v}}
</option>
@endforeach
@endif
</select>
</div>
<div
class=
"col-md-4"
style=
"text-align: right;"
>
<a
class=
"btn btn-success submit-order"
data-type=
"4"
>
提交
</a>
</div>
</div>
</div>
</form>
<script>
var
sale_id
=
"{{$sale_id}}"
;
var
URL_api
=
"{{Config('website.api_domain')}}"
;
$
.
lie
.
add_order
.
businessType
();
</script>
\ No newline at end of file
resources/views/detail/content.blade.php
View file @
29fe9a35
...
...
@@ -536,7 +536,7 @@
<tr>
<td>
优惠金额:
</td>
<td
class=
"edit-parent-td"
>
{{$currency}}
<span
id=
"other_money"
>
{{$order_price_info['discount_amount']}}
</span>
<span
id=
"other_money"
>
{{$order_price_info['discount_amount']}}
</span>
</td>
</tr>
@endif
...
...
@@ -558,6 +558,15 @@
</span>
</td>
</tr>
@if (isset($order_price_info['pay_preferential'])
&&
$order_price_info['pay_preferential'] != 0)
<tr>
<td>
支付优惠:
</td>
<td
class=
"edit-parent-td"
>
<span
id=
"other_money"
>
{{$order_price_info['pay_preferential']}}
</span>
</td>
</tr>
@endif
</table>
</div>
...
...
resources/views/selfOrder/content.blade.php
View file @
29fe9a35
...
...
@@ -138,6 +138,19 @@
</dd>
</dl> -->
<dl>
<dt>
业务类型:
</dt>
<dd>
<select
id=
"business_type"
name=
"business_type"
class=
"form-control business_type selectpicker"
title=
"全部"
multiple
>
@if (Config('params.business_type'))
@foreach (Config('params.business_type') as $k=>$v)
<option
value=
"{{$k}}"
>
{{$v}}
</option>
@endforeach
@endif
</select>
</dd>
</dl>
@if (in_array('self_check_test_order', $userPerms))
<dl>
<dt></dt>
...
...
@@ -354,6 +367,7 @@
var
order_status
=
"{{$condition['order_status']}}"
;
var
sale_type
=
"{{$condition['sale_type']}}"
;
var
order_payment_mode
=
"{{$condition['order_payment_mode']}}"
;
var
business_type
=
"{{$condition['business_type']}}"
;
var
order_source_pf
=
"{{$condition['order_source_pf']}}"
;
var
order_invoice_status
=
"{{$condition['order_invoice_status']}}"
;
var
order_send
=
"{{$condition['order_send']}}"
;
...
...
@@ -365,7 +379,7 @@
$
(
'input[name=test_order]'
).
attr
(
'checked'
,
true
);
}
$
(
".order_status, .order_payment_mode, .order_source_pf"
).
selectpicker
({
$
(
".order_status, .order_payment_mode, .order_source_pf
, .business_type
"
).
selectpicker
({
actionsBox
:
true
,
//在下拉选项添加选中所有和取消选中的按钮
countSelectedText
:
"已选中{0}项"
,
selectedTextFormat
:
"count > 5"
,
...
...
@@ -381,6 +395,7 @@
$
(
'#order_send'
).
selectpicker
(
'val'
,
order_send
);
$
(
'.order_pay_type'
).
selectpicker
(
'val'
,
order_pay_type
.
split
(
','
)).
trigger
(
"change"
);
$
(
'.is_new'
).
selectpicker
(
'val'
,
is_new
.
split
(
','
)).
trigger
(
"change"
);
$
(
'.business_type'
).
selectpicker
(
'val'
,
business_type
.
split
(
','
)).
trigger
(
"change"
);
$
.
lie
.
order
.
index
();
</script>
\ No newline at end of file
resources/views/success/content.blade.php
View file @
29fe9a35
...
...
@@ -41,9 +41,12 @@
@elseif ($type == 2)
<a
class=
"btn btn-success"
href=
"/self_order"
>
查看订单
</a>
<a
class=
"btn btn-default"
href=
"/add_online"
>
继续新增
</a>
@else
@else
if ($type == 3)
<a
class=
"btn btn-success"
href=
"/self_order"
>
查看订单
</a>
<a
class=
"btn btn-default"
href=
"/add_offline"
>
继续新增
</a>
@else
<a
class=
"btn btn-success"
href=
"/self_order"
>
查看订单
</a>
<a
class=
"btn btn-default"
href=
"/add_other_order"
>
继续新增
</a>
@endif
</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