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
e907007b
authored
Aug 27, 2020
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
下单添加发货方式
parent
065858df
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
2 deletions
app/Http/Controllers/AddOrderController.php
public/js/add_order.js
resources/views/addOrder/content.blade.php
resources/views/detail/detail_base_info.blade.php
app/Http/Controllers/AddOrderController.php
View file @
e907007b
...
...
@@ -562,6 +562,7 @@ Class AddOrderController extends Controller
$data
[
'role'
]
=
$request
->
input
(
'role'
,
''
);
$data
[
'tax_id'
]
=
$request
->
input
(
'tax_id'
);
$data
[
'user_coupon_id'
]
=
$request
->
input
(
'user_coupon_id'
);
$data
[
'zy_delivery_type'
]
=
$request
->
input
(
'zy_delivery_type'
);
if
(
$data
[
'type'
]
==
1
)
{
// 联营
$data
[
'customer_cn'
]
=
$request
->
input
(
'customer_cn'
,
''
);
...
...
public/js/add_order.js
View file @
e907007b
...
...
@@ -733,12 +733,18 @@
var
tax_id
=
$
(
'.tax_id'
).
val
();
var
inv_type
=
$
(
'input[name=inv_type]:checked'
).
val
();
var
user_coupon_id
=
$
(
'.user_coupon_id'
).
val
();
var
zy_delivery_type
=
$
(
'.zy_delivery_type'
).
val
();
if
(
!
address_id
)
{
layer
.
msg
(
'请选择快递信息'
);
return
false
;
}
if
(
!
zy_delivery_type
)
{
layer
.
msg
(
'请选择发货方式'
);
return
false
;
}
if
(
type
==
4
)
{
// 自营其他业务
var
business_type
=
$
(
'#business_type'
).
val
();
datax
.
business_type
=
business_type
;
...
...
@@ -801,10 +807,9 @@
datax
.
tax_id
=
tax_id
;
datax
.
user_coupon_id
=
user_coupon_id
;
datax
.
zy_delivery_type
=
zy_delivery_type
;
}
// self.attr('disabled', true).css('pointer-events', 'none'); // 成功生成订单后禁用按钮,防止重复提交
// 自营线上
if
(
type
==
2
&&
is_online
==
1
)
{
var
sale_type
=
$
(
'#sale_type'
).
val
();
...
...
resources/views/addOrder/content.blade.php
View file @
e907007b
...
...
@@ -97,6 +97,23 @@
</div>
</div>
<div
class=
"shipping-info"
>
<h4>
发货方式
<span
class=
"title-tips"
><i
class=
"fa fa-info-circle"
></i>
现货发货创建的自营通知单,账户为原客户账户,公司和原客户地址; 拼单发货创建的自营通知单,账户为15011111111,猎芯公司以及星火仓的地址
</span></h4>
<div
class=
"row"
>
<div
class=
"col-sm-6"
>
<div
class=
"form-group"
>
<span><i
class=
"text-danger"
>
*
</i>
选择发货方式:
</span>
<select
name=
"zy_delivery_type"
class=
"zy_delivery_type"
>
<option
value=
""
>
请选择
</option>
<option
value=
"1"
>
现货发货
</option>
<option
value=
"2"
>
拼单发货
</option>
</select>
</div>
</div>
</div>
</div>
<div
class=
"invoice-info"
>
<h4>
发票信息
<span
class=
"title-tips"
><i
class=
"fa fa-info-circle"
></i>
可在订单中心完善发票信息,需要在订单审核通过前填写发票信息,否则无法同步至ERP
</span></h4>
...
...
resources/views/detail/detail_base_info.blade.php
View file @
e907007b
...
...
@@ -27,6 +27,7 @@
<th>
支付方式
</th>
<th>
支付状态
</th>
<th>
支付类型
</th>
<th>
发货方式
</th>
<th>
发货状态
</th>
<th>
物流单号
</th>
<th>
京东订单编号
</th>
...
...
@@ -100,6 +101,7 @@
}
?>
</td>
<td>
{{ $order_temp_info['zy_delivery_type'] == 1 ? '现货发货' : '拼单发货' }}
</td>
<td>
<?php
if
(
$order_shipping_info
)
{
...
...
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